+
{{ f[1] }}
diff --git a/frappe/desk/page/backups/backups.py b/frappe/desk/page/backups/backups.py
index 3e1c1fb20f..c6cf366f07 100644
--- a/frappe/desk/page/backups/backups.py
+++ b/frappe/desk/page/backups/backups.py
@@ -10,7 +10,7 @@ from frappe.utils.data import convert_utc_to_system_timezone
def get_time(path: Path):
return convert_utc_to_system_timezone(
- datetime.datetime.fromtimestamp(path.stat().st_mtime, tz=datetime.UTC)
+ datetime.datetime.fromtimestamp(path.stat().st_mtime, tz=datetime.timezone.utc)
).strftime("%a %b %d %H:%M %Y")
diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py
index 8cd25618a0..e403f9db86 100644
--- a/frappe/desk/query_report.py
+++ b/frappe/desk/query_report.py
@@ -199,10 +199,11 @@ def run(
is_tree=False,
parent_field=None,
are_default_filters=True,
+ js_filters=None,
):
if not user:
user = frappe.session.user
- validate_filters_permissions(report_name, filters, user)
+ validate_filters_permissions(report_name, filters, user, js_filters)
report = get_report_doc(report_name)
if not frappe.has_permission(report.ref_doctype, "report"):
frappe.msgprint(
@@ -339,9 +340,8 @@ def export_query():
)
frappe.msgprint(
_(
- "Your report is being generated in the background. "
- f"You will receive an email on {user_email} with a download link once it is ready."
- )
+ "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+ ).format(user_email)
)
return
@@ -416,7 +416,7 @@ def _export_query(form_params, csv_params, populate_response=True):
if not populate_response:
return report_name, file_extension, content
- provide_binary_file(report_name, file_extension, content)
+ provide_binary_file(_(report_name), file_extension, content)
def valid_report_name(report_name, suffix):
@@ -674,9 +674,20 @@ def get_filtered_data(ref_doctype, columns, data, user):
shared = frappe.share.get_shared(ref_doctype, user)
columns_dict = get_columns_dict(columns)
- role_permissions = get_role_permissions(frappe.get_meta(ref_doctype), user)
+ ref_doctype_meta = frappe.get_meta(ref_doctype)
+
+ role_permissions = get_role_permissions(ref_doctype_meta, user)
if_owner = role_permissions.get("if_owner", {}).get("report")
+ if ref_doctype_meta.get_masked_fields():
+ from frappe.model.db_query import mask_field_value
+
+ # Apply masking to the fields
+ for field in ref_doctype_meta.get_masked_fields():
+ for row in data:
+ val = row.get(field.fieldname)
+ row[field.fieldname] = mask_field_value(field, val)
+
if match_filters_per_doctype:
for row in data:
# Why linked_doctypes.get(ref_doctype)? because if column is empty, linked_doctypes[ref_doctype] is removed
@@ -894,25 +905,34 @@ def get_user_match_filters(doctypes, user):
return match_filters
-def validate_filters_permissions(report_name, filters=None, user=None):
+def validate_filters_permissions(report_name, filters=None, user=None, js_filters=None):
if not filters:
return
+ if js_filters is None:
+ js_filters = []
+
+ if isinstance(js_filters, str):
+ js_filters = json.loads(js_filters)
+
if isinstance(filters, str):
filters = json.loads(filters)
report = frappe.get_doc("Report", report_name)
- for field in report.filters:
- if field.fieldname in filters and field.fieldtype == "Link":
- linked_doctype = field.options
+
+ for field in report.filters + js_filters:
+ if hasattr(field, "as_dict"):
+ field = field.as_dict()
+ if field.get("fieldname") in filters and field.get("fieldtype") == "Link":
+ linked_doctype = field.get("options")
if not has_permission(
- doctype=linked_doctype, ptype="read", doc=filters[field.fieldname], user=user
+ doctype=linked_doctype, ptype="read", doc=filters[field.get("fieldname")], user=user
) and not has_permission(
- doctype=linked_doctype, ptype="select", doc=filters[field.fieldname], user=user
+ doctype=linked_doctype, ptype="select", doc=filters[field.get("fieldname")], user=user
):
frappe.throw(
_("You do not have permission to access {0}: {1}.").format(
- linked_doctype, filters[field.fieldname]
+ linked_doctype, filters[field.get("fieldname")]
)
)
diff --git a/frappe/desk/reportview.py b/frappe/desk/reportview.py
index 49d80c9b60..c56bcdadb1 100644
--- a/frappe/desk/reportview.py
+++ b/frappe/desk/reportview.py
@@ -376,6 +376,7 @@ def export_query():
form_params = get_form_params()
form_params["limit_page_length"] = None
+
form_params["as_list"] = True
csv_params = pop_csv_params(form_params)
export_in_background = int(form_params.pop("export_in_background", 0))
@@ -394,9 +395,8 @@ def export_query():
frappe.msgprint(
_(
- "Your report is being generated in the background. "
- f"You will receive an email on {user_email} with a download link once it is ready."
- )
+ "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+ ).format(user_email)
)
return
@@ -483,7 +483,7 @@ def _export_query(form_params, csv_params, populate_response=True):
if not populate_response:
return title, file_extension, content
- provide_binary_file(title, file_extension, content)
+ provide_binary_file(_(title), file_extension, content)
def append_totals_row(data):
@@ -548,7 +548,7 @@ def get_field_info(fields, doctype):
if parenttype != doctype:
# If the column is from a child table, append the child doctype.
# For example, "Item Code (Sales Invoice Item)".
- label += f" ({ _(parenttype) })"
+ label += f" ({_(parenttype)})"
field_info.append(
{"name": name, "label": label, "fieldtype": fieldtype, "translatable": translatable}
diff --git a/frappe/desk/search.py b/frappe/desk/search.py
index 5879cb0bd3..3bafdcb2bd 100644
--- a/frappe/desk/search.py
+++ b/frappe/desk/search.py
@@ -117,6 +117,12 @@ def search_widget(
meta = frappe.get_meta(doctype)
+ include_disabled = False
+ if filters and "include_disabled" in filters:
+ if filters["include_disabled"] == 1:
+ include_disabled = True
+ filters.pop("include_disabled")
+
if isinstance(filters, dict):
filters = [make_filter_tuple(doctype, key, value) for key, value in filters.items()]
elif filters is None:
@@ -147,10 +153,11 @@ def search_widget(
if not meta.translated_doctype and (f == "name" or (fmeta and fmeta.fieldtype in field_types)):
or_filters.append([doctype, f.strip(), "like", f"%{txt}%"])
- if meta.get("fields", {"fieldname": "enabled", "fieldtype": "Check"}):
- filters.append([doctype, "enabled", "=", 1])
- if meta.get("fields", {"fieldname": "disabled", "fieldtype": "Check"}):
- filters.append([doctype, "disabled", "!=", 1])
+ if not include_disabled:
+ if meta.get("fields", {"fieldname": "enabled", "fieldtype": "Check"}):
+ filters.append([doctype, "enabled", "=", 1])
+ if meta.get("fields", {"fieldname": "disabled", "fieldtype": "Check"}):
+ filters.append([doctype, "disabled", "!=", 1])
# format a list of fields combining search fields and filter fields
fields = get_std_fields_list(meta, searchfield or "name")
diff --git a/frappe/desk/treeview.py b/frappe/desk/treeview.py
index 2f315924b5..3e73db2806 100644
--- a/frappe/desk/treeview.py
+++ b/frappe/desk/treeview.py
@@ -9,8 +9,7 @@ from frappe import _
def get_all_nodes(doctype, label, parent, tree_method, **filters):
"""Recursively gets all data from tree nodes"""
- if "cmd" in filters:
- del filters["cmd"]
+ filters.pop("cmd", None)
filters.pop("data", None)
tree_method = frappe.get_attr(tree_method)
@@ -20,8 +19,7 @@ def get_all_nodes(doctype, label, parent, tree_method, **filters):
data = tree_method(doctype, parent, **filters)
out = [dict(parent=label, data=data)]
- if "is_root" in filters:
- del filters["is_root"]
+ filters.pop("is_root", None)
to_check = [d.get("value") for d in data if d.get("expandable")]
while to_check:
diff --git a/frappe/desk/utils.py b/frappe/desk/utils.py
index dbea6290ce..47aace7b4b 100644
--- a/frappe/desk/utils.py
+++ b/frappe/desk/utils.py
@@ -106,9 +106,9 @@ def send_report_email(
message=frappe._(
"The report you requested has been generated.
"
"Click here to download:
"
- f"
{file_url}"
- f"This link will expire in {file_retention_hours} hours."
- ),
+ "
{0}"
+ "This link will expire in {1} hours."
+ ).format(file_url, file_retention_hours),
now=True,
)
diff --git a/frappe/email/doctype/email_queue/test_email_queue.py b/frappe/email/doctype/email_queue/test_email_queue.py
index 5dc76096f4..bcbf91d249 100644
--- a/frappe/email/doctype/email_queue/test_email_queue.py
+++ b/frappe/email/doctype/email_queue/test_email_queue.py
@@ -54,7 +54,7 @@ class TestEmailQueue(IntegrationTestCase):
Subject: {subject}
From: Test
To:
- Date: {frappe.utils.now_datetime().strftime('%a, %d %b %Y %H:%M:%S %z')}
+ Date: {frappe.utils.now_datetime().strftime("%a, %d %b %Y %H:%M:%S %z")}
Reply-To: test@example.com
X-Frappe-Site: {frappe.local.site}
"""
diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py
index cc9222301e..a094c3f1b5 100644
--- a/frappe/email/doctype/notification/notification.py
+++ b/frappe/email/doctype/notification/notification.py
@@ -352,7 +352,9 @@ def get_context(context):
To queue a notification from a server script:
```python
- notification = frappe.get_doc("Notification", "My Notification", ignore_permissions=True)
+ notification = frappe.get_doc(
+ "Notification", "My Notification", ignore_permissions=True
+ )
notification.queue_send(customer)
```
diff --git a/frappe/email/email_body.py b/frappe/email/email_body.py
index 7a2256fdda..e02ae105b0 100755
--- a/frappe/email/email_body.py
+++ b/frappe/email/email_body.py
@@ -237,7 +237,7 @@ class EMail:
"""Append the message with MIME content to the root node (as attachment)"""
from email.mime.text import MIMEText
- maintype, subtype = mime_type.split("/")
+ _maintype, subtype = mime_type.split("/")
part = MIMEText(message, _subtype=subtype, policy=policy.SMTP)
if as_attachment:
@@ -445,7 +445,7 @@ def add_attachment(fname, fcontent, content_type=None, parent=None, content_id=N
from email.mime.text import MIMEText
if not content_type:
- content_type, encoding = mimetypes.guess_type(fname)
+ content_type, _encoding = mimetypes.guess_type(fname)
if not parent:
return
@@ -597,7 +597,7 @@ def get_header(header=None):
if not title:
title = frappe.get_hooks("app_title")[-1]
- email_header, text = get_email_from_template(
+ email_header, _text = get_email_from_template(
"email_header", {"header_title": title, "indicator": indicator}
)
diff --git a/frappe/email/receive.py b/frappe/email/receive.py
index a0409c7909..6733c2d246 100644
--- a/frappe/email/receive.py
+++ b/frappe/email/receive.py
@@ -205,7 +205,7 @@ class EmailServer:
readonly = self.settings.email_sync_rule != "UNSEEN"
self.imap.select(folder, readonly=readonly)
- response, message = self.imap.uid("search", None, self.settings.email_sync_rule)
+ _response, message = self.imap.uid("search", None, self.settings.email_sync_rule)
if message[0]:
email_list = message[0].split()
else:
@@ -217,7 +217,7 @@ class EmailServer:
# compare the UIDVALIDITY of email account and imap server
uid_validity = self.settings.uid_validity
- response, message = self.imap.status(folder, "(UIDVALIDITY UIDNEXT)")
+ _response, message = self.imap.status(folder, "(UIDVALIDITY UIDNEXT)")
current_uid_validity = self.parse_imap_response("UIDVALIDITY", message[0]) or 0
uidnext = int(self.parse_imap_response("UIDNEXT", message[0]) or "1")
@@ -270,7 +270,7 @@ class EmailServer:
def retrieve_message(self, uid, msg_num, folder):
try:
if cint(self.settings.use_imap):
- status, message = self.imap.uid("fetch", uid, "(BODY.PEEK[] BODY.PEEK[HEADER] FLAGS)")
+ _status, message = self.imap.uid("fetch", uid, "(BODY.PEEK[] BODY.PEEK[HEADER] FLAGS)")
raw = message[0]
self.get_email_seen_status(uid, raw[0])
@@ -446,6 +446,15 @@ class Email:
_from_email = self.decode_email(self.mail.get("X-Original-From") or self.mail["From"])
_reply_to = self.decode_email(self.mail.get("Reply-To"))
+ if not _from_email:
+ # happens in some cases when email server is misconfigured
+ # should not fail the entire syncing process
+ frappe.log_error(
+ f"Email missing `From` header. UID: {getattr(self, 'uid', 'unknown')}", str(self.mail)
+ )
+ self.from_email = None
+ return
+
if _reply_to and not frappe.db.get_value(
"Email Account", {"email_id": _reply_to, "enable_incoming": 1}, "email_id"
):
@@ -453,9 +462,7 @@ class Email:
else:
self.from_email = extract_email_id(_from_email)
- if self.from_email:
- self.from_email = self.from_email.lower()
-
+ self.from_email = self.from_email.lower()
self.from_real_name = parse_addr(_from_email)[0] if "@" in _from_email else _from_email
@staticmethod
diff --git a/frappe/geo/languages.csv b/frappe/geo/languages.csv
index 0a1a3d9dae..be0fdf2be4 100644
--- a/frappe/geo/languages.csv
+++ b/frappe/geo/languages.csv
@@ -52,7 +52,8 @@ ml,മലയാളം,0
mn,Монгол,0
mr,मराठी,0
ms,Melayu,0
-my,မြန်မာ,0
+my,မြန်မာ1
+nb,Norsk Bokmål,1
nl,Nederlands,0
no,Norsk,0
pl,Polski,0
diff --git a/frappe/gettext/extractors/web_form.py b/frappe/gettext/extractors/web_form.py
new file mode 100644
index 0000000000..6fae006d25
--- /dev/null
+++ b/frappe/gettext/extractors/web_form.py
@@ -0,0 +1,73 @@
+import json
+
+
+def extract(fileobj, *args, **kwargs):
+ """
+ Extract messages from Web Form JSON files. To be used to babel extractor
+ :param fileobj: the file-like object the messages should be extracted from
+ :rtype: `iterator`
+ """
+ data = json.load(fileobj)
+
+ if isinstance(data, list):
+ return
+
+ if data.get("doctype") != "Web Form":
+ return
+
+ web_form_name = data.get("name")
+
+ # Extract main web form fields
+ if title := data.get("title"):
+ yield None, "_", title, [f"Title of the {web_form_name} Web Form"]
+
+ if introduction_text := data.get("introduction_text"):
+ yield None, "_", introduction_text, [f"Introduction text of the {web_form_name} Web Form"]
+
+ if success_message := data.get("success_message"):
+ yield None, "_", success_message, [f"Success message of the {web_form_name} Web Form"]
+
+ if success_title := data.get("success_title"):
+ yield None, "_", success_title, [f"Success title of the {web_form_name} Web Form"]
+
+ if list_title := data.get("list_title"):
+ yield None, "_", list_title, [f"List title of the {web_form_name} Web Form"]
+
+ if button_label := data.get("button_label"):
+ yield None, "_", button_label, [f"Button label of the {web_form_name} Web Form"]
+
+ if meta_title := data.get("meta_title"):
+ yield None, "_", meta_title, [f"Meta title of the {web_form_name} Web Form"]
+
+ if meta_description := data.get("meta_description"):
+ yield None, "_", meta_description, [f"Meta description of the {web_form_name} Web Form"]
+
+ # Extract web form fields
+ for field in data.get("web_form_fields", []):
+ if label := field.get("label"):
+ yield None, "_", label, [f"Label of a field in the {web_form_name} Web Form"]
+
+ if description := field.get("description"):
+ yield None, "_", description, [f"Description of a field in the {web_form_name} Web Form"]
+
+ # Extract options for Select fields
+ if field.get("fieldtype") == "Select" and (options := field.get("options")):
+ skip_options = (
+ web_form_name == "edit-profile" and field.get("fieldname") == "time_zone"
+ ) # Dumb workaround for avoiding a flood of strings from this field
+ if isinstance(options, str) and not skip_options:
+ # Handle both single values and newline-separated values
+ option_list = options.split("\n") if "\n" in options else [options]
+ for option in option_list:
+ if option.strip():
+ yield (
+ None,
+ "_",
+ option.strip(),
+ [f"Option in a Select field in the {web_form_name} Web Form"],
+ )
+
+ # Extract list columns
+ for column in data.get("list_columns", []):
+ if isinstance(column, dict) and (label := column.get("label")):
+ yield None, "_", label, [f"Label of a list column in the {web_form_name} Web Form"]
diff --git a/frappe/hooks.py b/frappe/hooks.py
index 89aaf81002..d4de0d0047 100644
--- a/frappe/hooks.py
+++ b/frappe/hooks.py
@@ -209,6 +209,7 @@ scheduler_events = {
"frappe.automation.doctype.reminder.reminder.send_reminders",
"frappe.model.utils.link_count.update_link_count",
"frappe.search.sqlite_search.build_index_if_not_exists",
+ "frappe.pulse.client.send_queued_events",
],
# 10 minutes
"0/10 * * * *": [
diff --git a/frappe/installer.py b/frappe/installer.py
index 8c3934bd2c..fdfae9daf6 100644
--- a/frappe/installer.py
+++ b/frappe/installer.py
@@ -359,6 +359,7 @@ def remove_from_installed_apps(app_name):
"DefaultValue", {"defkey": "installed_apps"}, "defvalue", json.dumps(installed_apps)
)
_clear_cache("__global")
+ frappe.local.doc_events_hooks = None
frappe.get_single("Installed Applications").update_versions()
frappe.db.commit()
if frappe.flags.in_install:
diff --git a/frappe/integrations/doctype/geolocation_settings/providers/here.py b/frappe/integrations/doctype/geolocation_settings/providers/here.py
index 0ecac02d9c..9234d528d7 100644
--- a/frappe/integrations/doctype/geolocation_settings/providers/here.py
+++ b/frappe/integrations/doctype/geolocation_settings/providers/here.py
@@ -34,7 +34,7 @@ class Here:
"label": address["label"],
"value": json.dumps(
{
- "address_line1": f'{address.get("street", "")} {address.get("houseNumber", "")}'.strip(),
+ "address_line1": f"{address.get('street', '')} {address.get('houseNumber', '')}".strip(),
"city": address.get("city", ""),
"state": address.get("state", ""),
"pincode": address.get("postalCode", ""),
diff --git a/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py b/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py
index c02e14ad68..c7d74b9510 100644
--- a/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py
+++ b/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py
@@ -37,7 +37,7 @@ class Nomatim:
"label": result["display_name"],
"value": json.dumps(
{
- "address_line1": f'{address.get("road")} {address.get("house_number", "")}'.strip(),
+ "address_line1": f"{address.get('road')} {address.get('house_number', '')}".strip(),
"city": address.get("city") or address.get("town") or address.get("village"),
"state": address.get("state"),
"pincode": address.get("postcode"),
diff --git a/frappe/integrations/doctype/ldap_settings/ldap_settings.py b/frappe/integrations/doctype/ldap_settings/ldap_settings.py
index fafd155bb8..bb84b7241f 100644
--- a/frappe/integrations/doctype/ldap_settings/ldap_settings.py
+++ b/frappe/integrations/doctype/ldap_settings/ldap_settings.py
@@ -278,13 +278,14 @@ class LDAPSettings(Document):
elif self.ldap_directory_server.lower() == "openldap":
ldap_object_class = "posixgroup"
ldap_group_members_attribute = "memberuid"
- user_search_str = getattr(user, self.ldap_username_field).value
+ user_search_str = escape_filter_chars(getattr(user, self.ldap_username_field).value)
elif self.ldap_directory_server.lower() == "custom":
ldap_object_class = self.ldap_group_objectclass
ldap_group_members_attribute = self.ldap_group_member_attribute
ldap_custom_group_search = self.ldap_custom_group_search or "{0}"
- user_search_str = ldap_custom_group_search.format(getattr(user, self.ldap_username_field).value)
+ user_value = escape_filter_chars(getattr(user, self.ldap_username_field).value)
+ user_search_str = ldap_custom_group_search.format(user_value)
else:
# NOTE: depreciate this else path
@@ -308,6 +309,7 @@ class LDAPSettings(Document):
if not self.enabled:
frappe.throw(_("LDAP is not enabled."))
+ username = escape_filter_chars(username)
user_filter = self.ldap_search_string.format(username)
ldap_attributes = self.get_ldap_attributes()
conn = self.connect_to_ldap(self.base_dn, self.get_password(raise_exception=False))
@@ -335,7 +337,8 @@ class LDAPSettings(Document):
except LDAPInvalidCredentialsResult:
frappe.throw(_("Invalid username or password"))
- def reset_password(self, user, password, logout_sessions=False):
+ def reset_password(self, user: str, password: str, logout_sessions: int = 0):
+ user = escape_filter_chars(user)
search_filter = f"({self.ldap_email_field}={user})"
conn = self.connect_to_ldap(self.base_dn, self.get_password(raise_exception=False), read_only=False)
@@ -420,7 +423,7 @@ def login():
@frappe.whitelist()
-def reset_password(user, password, logout):
+def reset_password(user: str, password: str, logout: int):
ldap: LDAPSettings = frappe.get_doc("LDAP Settings")
if not ldap.enabled:
frappe.throw(_("LDAP is not enabled."))
diff --git a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py
index 85bf3b4af9..ef22e1ff6f 100644
--- a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py
+++ b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py
@@ -240,7 +240,7 @@ class LDAP_TestCase:
function_return = self.test_class.connect_to_ldap(
base_dn=self.base_dn, password=self.base_password
)
- args, kwargs = ldap3_connection_method.call_args
+ _args, kwargs = ldap3_connection_method.call_args
for connection_arg in kwargs:
if (
@@ -305,7 +305,7 @@ class LDAP_TestCase:
base_dn=self.base_dn, password=self.base_password, read_only=False
)
- args, kwargs = ldap3_connection_method.call_args
+ _args, kwargs = ldap3_connection_method.call_args
self.assertFalse(
kwargs["read_only"],
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 96224f4c5a..063bd2a3bc 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -72,7 +72,7 @@ def approve(*args, **kwargs):
frappe.flags.oauth_credentials,
) = get_oauth_server().validate_authorization_request(r.url, r.method, r.get_data(), r.headers)
- headers, body, status = get_oauth_server().create_authorization_response(
+ headers, _body, _status = get_oauth_server().create_authorization_response(
uri=frappe.flags.oauth_credentials["redirect_uri"],
body=r.get_data(),
headers=r.headers,
@@ -144,7 +144,7 @@ def authorize(**kwargs):
def get_token(*args, **kwargs):
try:
r = frappe.request
- headers, body, status = get_oauth_server().create_token_response(
+ _headers, body, _status = get_oauth_server().create_token_response(
r.url, r.method, r.form, r.headers, frappe.flags.oauth_credentials
)
body = frappe._dict(json.loads(body))
@@ -165,7 +165,7 @@ def get_token(*args, **kwargs):
def revoke_token(*args, **kwargs):
try:
r = frappe.request
- headers, body, status = get_oauth_server().create_revocation_response(
+ _headers, _body, status = get_oauth_server().create_revocation_response(
r.url,
headers=r.headers,
body=r.form,
@@ -184,7 +184,7 @@ def revoke_token(*args, **kwargs):
def openid_profile(*args, **kwargs):
try:
r = frappe.request
- headers, body, status = get_oauth_server().create_userinfo_response(
+ _headers, body, _status = get_oauth_server().create_userinfo_response(
r.url,
headers=r.headers,
body=r.form,
diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po
index cc891dad3a..bf59a3e7ce 100644
--- a/frappe/locale/ar.po
+++ b/frappe/locale/ar.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "\"في البحث العام\" غير مسموح للنوع {0} في ا
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'في عرض القائمة' غير مسموح للنوع {0} في الصف {1}"
@@ -86,11 +86,11 @@ msgstr "'في عرض القائمة' غير مسموح للنوع {0} في ال
msgid "'Recipients' not specified"
msgstr "لم يتم تحديد "المستلمين""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr "0 - مسودّة؛ 1 - تأكيد؛ 2 - إلغاء"
msgid "0 is highest"
msgstr "0 أعلى قيمة"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -140,11 +140,11 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr "تمت مزامنة حدث تقويم Google واحد."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr ""
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "منذ 1 ساعة"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "منذ 1 دقيقة"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "قبل شهر"
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 قبل أسبوع"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "منذ سنة"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr ""
@@ -231,7 +231,7 @@ msgstr ""
msgid "5 Records"
msgstr "5 السجلات"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -267,6 +267,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -578,11 +588,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -704,7 +719,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -723,7 +738,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -747,7 +762,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -833,7 +848,7 @@ msgstr "رمز وصول"
msgid "Access Token URL"
msgstr "رابط رمز الدخول"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "الوصول غير مسموح به من عنوان IP هذا"
@@ -949,7 +964,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "الإجراءات"
@@ -1006,7 +1021,7 @@ msgstr "سجل النشاط"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1017,7 +1032,7 @@ msgstr "سجل النشاط"
msgid "Add"
msgstr "إضافة"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1049,7 +1064,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1062,8 +1077,8 @@ msgid "Add Child"
msgstr "إضافة الطفل"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1157,7 +1172,7 @@ msgstr "إضافة المشتركين"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1332,6 +1347,7 @@ msgstr "ضوابط إضافية"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1340,6 +1356,7 @@ msgstr "عنوان"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "العنوان سطر 1"
@@ -1347,6 +1364,7 @@ msgstr "العنوان سطر 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "العنوان سطر 2"
@@ -1508,7 +1526,7 @@ msgstr ""
msgid "After Submit"
msgstr "بعد تقديم"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1535,11 +1553,11 @@ msgstr "إنذار"
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1986,6 +2004,12 @@ msgstr "إضافة حقل تبعية الحالة أيضًا {0}"
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2062,6 +2086,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "حدث خطأ أثناء إعداد الإعدادات الافتراضية للجلسة"
@@ -2244,7 +2273,7 @@ msgstr "تم التطبيق"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "تطبيق قاعدة الواجب"
@@ -2329,7 +2358,7 @@ msgstr "أعمدة من الأرشيف"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2365,7 +2394,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2373,7 +2402,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "هل أنت متأكد من رغبتك في دمج {0} مع {1}؟"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2428,6 +2457,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2437,7 +2472,7 @@ msgstr "تعيين الشرط"
msgid "Assign To"
msgstr "تكليف إلى"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "تكليف إلى"
@@ -2580,7 +2615,7 @@ msgstr "تعيينات"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2660,7 +2695,7 @@ msgstr "مرفق إلى الحقل"
msgid "Attached To Name"
msgstr "أرفقت للأسم"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2676,7 +2711,7 @@ msgstr "مرفق"
msgid "Attachment Limit (MB)"
msgstr "الحد مرفق (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2698,11 +2733,11 @@ msgstr "تم حذف المرفق"
msgid "Attachments"
msgstr "المرفقات"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "محاولة الاتصال بـ QZ Tray ..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "محاولة إطلاق QZ Tray ..."
@@ -3560,15 +3595,15 @@ msgstr "حذف بالجملة"
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "تعديل بالجمله {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3792,7 +3827,7 @@ msgid "Camera"
msgstr "الة تصوير"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3852,7 +3887,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3860,7 +3895,7 @@ msgstr ""
msgid "Cancel"
msgstr "إلغاء"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "إلغاء"
@@ -3878,7 +3913,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "الغاء جميع الوثائق"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "إلغاء {0} وثائق؟"
@@ -3927,11 +3962,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr "لا يمكن إزالة"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3975,11 +4010,11 @@ msgstr "لا يمكن إنشاء {0} ضد مستند طفل: {1}"
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "لا يمكن حذف المجلدات الرئيسية والمرفقات"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4}"
@@ -4042,8 +4077,8 @@ msgstr "لا يمكنك التعديل على وثيقة ملغية"
msgid "Cannot edit filters for standard charts"
msgstr "لا يمكن تحرير عوامل التصفية للمخططات القياسية"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4055,11 +4090,11 @@ msgstr "لا تستطيع تعديل الحقول القياسية"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4067,7 +4102,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "لا يمكن تعيين طابعات متعددة على تنسيق طباعة واحد."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4083,7 +4118,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr "لا يمكن مطابقة العمود {0} بأي حقل"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "لا يمكن نقل الصف"
@@ -4112,11 +4147,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr "لا يمكن تحديث {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4388,11 +4423,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "يتم عرض الجداول الفرعية كشبكة في DocTypes الأخرى"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4421,6 +4456,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "اختر طريقة المصادقة لاستخدامها من قبل جميع المستخدمين"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "مدينة"
@@ -4447,7 +4483,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4524,24 +4560,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "انقر فوق {0} لإنشاء تحديث الرمز المميز."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "انقر الجدول لتعديل"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4719,7 +4755,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "انهيار"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "انهيار جميع"
@@ -4774,7 +4810,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4830,11 +4866,11 @@ msgstr "اسم العمود"
msgid "Column Name cannot be empty"
msgstr "اسم العمود لا يمكن أن يكون فارغا\\n
\\nColumn Name cannot be empty"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4861,7 +4897,7 @@ msgstr "الأعمدة"
msgid "Columns / Fields"
msgstr "الأعمدة / الحقول"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "أعمدة بناء على"
@@ -5076,8 +5112,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5125,7 +5161,7 @@ msgstr ""
msgid "Configure Chart"
msgstr "تكوين المخطط"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5150,7 +5186,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "أكد"
@@ -5169,7 +5205,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "تأكيد كلمة المرور الجديدة"
@@ -5214,8 +5250,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "متصلا علبة QZ!"
@@ -5266,6 +5302,10 @@ msgstr ""
msgid "Contact"
msgstr "اتصال"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5329,7 +5369,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5418,7 +5458,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5427,7 +5467,7 @@ msgstr ""
msgid "Copyright"
msgstr "حق النشر"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "لا يمكن تخصيص DocTypes الأساسية."
@@ -5451,7 +5491,7 @@ msgstr "لا يمكن أن تجد {0}"
msgid "Could not map column {0} to field {1}"
msgstr "تعذر تعيين العمود {0} للحقل {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5504,13 +5544,14 @@ msgstr "عداد"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "الدولة"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5542,13 +5583,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "انشاء"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5562,7 +5603,7 @@ msgid "Create Card"
msgstr "إنشاء بطاقة"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "إنشاء مخطط"
@@ -5596,12 +5637,12 @@ msgstr "إنشاء سجل"
msgid "Create New"
msgstr "انشاء جديد"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "انشاء جديد"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5609,7 +5650,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "انشاء بريد إلكتروني"
@@ -5632,8 +5673,8 @@ msgstr "إنشاء سجل جديد"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "انشاء جديد {0}"
@@ -5649,7 +5690,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "قم بإنشاء أول {0}"
@@ -5659,7 +5700,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "أنشأ"
@@ -5996,7 +6037,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "مخصص"
@@ -6031,7 +6072,7 @@ msgstr "تم تصدير التخصيصات ل {0} إلى:
{1}"
msgid "Customize"
msgstr "تخصيص"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "تخصيص"
@@ -6050,7 +6091,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "تخصيص نموذج"
@@ -6281,7 +6322,7 @@ msgstr ""
msgid "Data Import Template"
msgstr "قالب ادخال البيانات"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "البيانات طويلة جدًا"
@@ -6312,7 +6353,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6682,13 +6723,13 @@ msgstr "مؤجل"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "حذف"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "حذف"
@@ -6721,7 +6762,7 @@ msgstr ""
msgid "Delete Data"
msgstr "حذف البيانات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6735,7 +6776,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6777,12 +6818,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr "احذف هذا السجل للسماح بالإرسال إلى عنوان البريد الإلكتروني هذا"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "حذف {0} العناصر نهائيا؟"
@@ -6818,7 +6859,7 @@ msgstr "المستندات المحذوفة"
msgid "Deleted Name"
msgstr "الاسم المحذوف"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6826,7 +6867,7 @@ msgstr ""
msgid "Deleted!"
msgstr "حذف!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "حذف {0}"
@@ -7279,10 +7320,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7706,13 +7751,13 @@ msgstr "عنوان المستند"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "نوع الوثيقة"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7757,15 +7802,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7907,7 +7952,7 @@ msgstr "الدونات"
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7940,7 +7985,7 @@ msgstr "رابط التحميل"
msgid "Download PDF"
msgstr "تحميل PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "تحميل التقرير"
@@ -8036,7 +8081,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr "تكرار اسم الفلتر"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "اسم مكرر"
@@ -8140,8 +8185,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8153,7 +8198,7 @@ msgstr ""
msgid "Edit"
msgstr "تصحيح"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "تصحيح"
@@ -8163,7 +8208,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "تصحيح"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "تصحيح"
@@ -8192,7 +8237,7 @@ msgstr "تحرير مخصص HTML"
msgid "Edit DocType"
msgstr "تعديل القائمة"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "تعديل القائمة"
@@ -8210,7 +8255,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "تحرير تنسيق"
@@ -8312,7 +8357,7 @@ msgstr "تحرير {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "قابلة للتعديل Grid"
@@ -8357,6 +8402,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8375,6 +8422,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "البريد الإلكتروني"
@@ -8494,6 +8543,7 @@ msgid "Email IDs"
msgstr "البريد الإلكتروني معرفات"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "البريد الإلكتروني"
@@ -8605,7 +8655,7 @@ msgstr "تم وضع علامة على البريد الإلكتروني كغير
msgid "Email has been moved to trash"
msgstr "تم نقل البريد الإلكتروني إلى المهملات"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8648,7 +8698,7 @@ msgstr "سيتم إرسال رسائل البريد الإلكتروني مع إ
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8656,7 +8706,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9084,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr "رسالة خطأ"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "خطأ في الاتصال بـ QZ Tray Application ...
تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.
انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ."
@@ -9112,9 +9162,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "خطأ في الإخطار"
@@ -9134,19 +9184,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "خطأ أثناء تقييم الإشعار {0}. يرجى تصحيح القالب الخاص بك."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "خطأ: قيمة مفقودة ل {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9295,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "وقت التنفيذ: {0} ثانية"
@@ -9321,12 +9371,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "وسعت"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "توسيع الكل"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9384,13 +9434,13 @@ msgstr "وقت انتهاء صلاحية رمز الاستجابة السريع
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "تصدير"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "تصدير"
@@ -9583,7 +9633,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr "فشل الاتصال بالخادم"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "فشل فك الرمز المميز ، يرجى تقديم رمز مميز صالح بترميز base64."
@@ -9591,7 +9641,7 @@ msgstr "فشل فك الرمز المميز ، يرجى تقديم رمز ممي
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9747,7 +9797,7 @@ msgstr "جلب مستندات البحث العالمي الافتراضية."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9830,7 +9880,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr "الحقل {0} غير موجود."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9848,7 +9898,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "اسم الحقل"
@@ -9861,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "اسم الحقل محدد ب 64 حرف
Fieldname is limited to 64 characters ({0})"
@@ -9877,11 +9927,11 @@ msgstr "أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الا
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "أسم الحقل {0} متعارض مع الكلمات الدلائلية"
@@ -9921,7 +9971,7 @@ msgstr "الحقول"
msgid "Fields Multicheck"
msgstr "الحقول متعددة"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9929,7 +9979,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9957,7 +10007,7 @@ msgstr "نوع الحقل"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "لا يمكن تغيير نوع الحقل من {0} إلى {1} في الصف {2}"
@@ -10023,7 +10073,7 @@ msgstr "ملف URL"
msgid "File backup is ready"
msgstr "ملف النسخ الاحتياطي جاهز"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "لا يمكن أن يحتوي اسم الملف على {0}"
@@ -10031,7 +10081,7 @@ msgstr "لا يمكن أن يحتوي اسم الملف على {0}"
msgid "File not attached"
msgstr "الملف غير مرفق"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "تجاوز حجم الملف الحد الأقصى المسموح به لحجم {0} ميغابايت"
@@ -10040,11 +10090,11 @@ msgstr "تجاوز حجم الملف الحد الأقصى المسموح به
msgid "File too big"
msgstr "الملف كبير جدا"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "الملف {0} غير موجود"
@@ -10058,8 +10108,8 @@ msgstr "الملفات"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10098,11 +10148,11 @@ msgstr "اسم الفلتر"
msgid "Filter Values"
msgstr "قيم التصفية"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10179,7 +10229,7 @@ msgstr "قسم المرشحات"
msgid "Filters applied for {0}"
msgstr "المرشحات المطبقة على {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "مرشحات حفظ"
@@ -10227,8 +10277,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "الاسم الأول"
@@ -10309,7 +10363,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr "يجب ألا يتضمن اسم المجلد '/' (شرطة مائلة)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "المجلد {0} غير فارغ"
@@ -10416,7 +10470,7 @@ msgstr ""
msgid "Footer HTML"
msgstr "تذييل HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10511,7 +10565,7 @@ msgstr "للمستخدم"
msgid "For Value"
msgstr "للقيمة"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10)."
@@ -10552,7 +10606,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr "لتحديث، يمكنك تحديث الأعمدة انتقائية فقط."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "ل {0} في {1} مستوى في {2} في {3} الصف"
@@ -10796,7 +10850,7 @@ msgstr "من تاريخ"
msgid "From Date Field"
msgstr "من حقل التاريخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "من نوع المستند"
@@ -10858,13 +10912,13 @@ msgstr "وظيفة على أساس"
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة '"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -10923,7 +10977,7 @@ msgstr "عام"
msgid "Generate Keys"
msgstr "توليد مفاتيح"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "توليد تقرير جديد"
@@ -10938,7 +10992,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11145,10 +11199,6 @@ msgstr ""
msgid "Google Calendar"
msgstr "تقويم جوجل"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "تقويم Google - تعذر إنشاء تقويم لـ {0} ، رمز الخطأ {1}."
@@ -11343,14 +11393,10 @@ msgstr "مجموعة حسب النوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "عقدة المجموعة"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11410,7 +11456,7 @@ msgstr "HH: MM: SS"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11515,7 +11561,7 @@ msgstr "العنوان الرأسي"
msgid "Header HTML"
msgstr "رأس HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "تعيين HTML رأس من المرفق {0}"
@@ -11644,7 +11690,7 @@ msgstr "هلفتيكا"
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11680,7 +11726,7 @@ msgstr "مخفي"
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11792,7 +11838,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr "إخفاء القائمة الرئيسية"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11952,7 +11998,7 @@ msgstr ""
msgid "ID"
msgstr "هوية شخصية"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12049,9 +12095,9 @@ msgstr "إذا تم تحديد تطبيق تصريح المستخدم الصار
msgid "If Checked workflow status will not override status in list view"
msgstr "إذا ووضع العمل تم الفحص لا تجاوز الوضع في عرض القائمة"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "إذا المالك"
@@ -12279,8 +12325,8 @@ msgstr "التطبيقات التي تم تجاهلها"
msgid "Illegal Document Status for {0}"
msgstr "حالة المستند غير القانوني لـ {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "استعلام SQL غير قانوني"
@@ -12367,11 +12413,11 @@ msgstr "صور"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12401,7 +12447,7 @@ msgstr "ضمني"
msgid "Import"
msgstr "استيراد"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "استيراد"
@@ -12629,15 +12675,16 @@ msgstr "تضمين سمة من التطبيقات"
msgid "Include Web View Link in Email"
msgstr "إرسال ارتباط عرض الويب للمستند بالبريد الإلكتروني"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "تشمل المسافة البادئة"
@@ -12684,7 +12731,7 @@ msgstr "حساب البريد الإلكتروني الوارد غير صحيح"
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "تفاصيل تسجيل الدخول غير مكتملة"
@@ -12795,7 +12842,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "إدراج بعد"
@@ -12833,8 +12880,8 @@ msgstr "إدراج نمط"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12868,7 +12915,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "عدم كفاية الإذن {0}"
@@ -12984,7 +13031,7 @@ msgid "Invalid"
msgstr "غير صالحة"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12994,7 +13041,7 @@ msgstr "تعبير "under_on" غير صالح"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "تم تعيين تعبير "يعتمد على" غير صالح في عامل التصفية {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13038,12 +13085,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13097,7 +13144,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr "تنسيق الإخراج غير صالح"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13111,11 +13158,11 @@ msgstr ""
msgid "Invalid Password"
msgstr "رمز مرور خاطئ"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "طلب غير صالح"
@@ -13132,7 +13179,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13155,7 +13202,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13163,19 +13210,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13183,11 +13230,11 @@ msgstr ""
msgid "Invalid column"
msgstr "عمود غير صالح"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13203,23 +13250,23 @@ msgstr "تم تعيين تعبير غير صالح في عامل التصفية
msgid "Invalid expression set in filter {0} ({1})"
msgstr "تم تعيين تعبير غير صالح في عامل التصفية {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "اسم الحقل غير صالح {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13231,11 +13278,11 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي"
msgid "Invalid file path: {0}"
msgstr "مسار الملف غير صالح: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13243,11 +13290,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "مرشح غير صالح: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13284,23 +13331,27 @@ msgstr "محتوى غير صالح أو تالف للاستيراد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13404,7 +13455,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "هو الجدول التابع"
@@ -13457,6 +13508,10 @@ msgstr "هو مجلد"
msgid "Is Global"
msgstr "هو عالمي"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "هل مجموعة"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13483,8 +13538,13 @@ msgstr "هو الدولة اختياري"
msgid "Is Primary"
msgstr "هو الابتدائية"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "هو جهة الاتصال الرئيسية"
@@ -13540,7 +13600,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "مفردة"
@@ -13576,7 +13636,7 @@ msgstr "هو معيار"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "يستطيع الاعتماد"
@@ -13782,11 +13842,11 @@ msgstr "عمود لوح كانبان"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "اسم لوح كانبان"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14076,7 +14136,7 @@ msgstr "التسمية إلزامية"
msgid "Landing Page"
msgstr "الصفحة المقصودة"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "المناظر الطبيعيه"
@@ -14084,10 +14144,13 @@ msgstr "المناظر الطبيعيه"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "اللغة"
@@ -14175,8 +14238,12 @@ msgstr "الشهر الماضي"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "اسم العائلة"
@@ -14322,7 +14389,7 @@ msgstr "طول"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "يجب أن يكون طول {0} بين 1 و 1000"
@@ -14372,7 +14439,7 @@ msgstr "رسالة"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14400,7 +14467,7 @@ msgstr "اسم ترئيس الرسالة"
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14417,7 +14484,7 @@ msgstr "ترئيس الرسالة كصيغة HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "المستوى"
@@ -14710,7 +14777,7 @@ msgstr "تصفية القائمة"
msgid "List Settings"
msgstr "إعدادات القائمة"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "إعدادات القائمة"
@@ -14761,7 +14828,7 @@ msgid "Load Balancing"
msgstr "تحميل موازنة"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "تحميل المزيد"
@@ -14781,7 +14848,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "تحميل"
@@ -14924,7 +14991,7 @@ msgstr "تسجيل الدخول رمز التحقق من {}"
msgid "Login and view in Browser"
msgstr "تسجيل الدخول وعرض في المتصفح"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14932,7 +14999,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "تسجيل الدخول غير مسموح في هذا الوقت"
@@ -14985,7 +15052,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -15004,7 +15071,7 @@ msgstr ""
msgid "Logout"
msgstr "خروج"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "تسجيل الخروج من جميع الجلسات"
@@ -15108,7 +15175,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "اجعل \"الاسم\" قابلا للبحث في البحث العالمي"
@@ -15184,7 +15254,7 @@ msgstr "إلزامي يعتمد على"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "معلومات إلزامية مفقود:"
@@ -15196,11 +15266,11 @@ msgstr "الحقل إلزامي :تعيين الدور ل\\n
\\nMandatory fie
msgid "Mandatory field: {0}"
msgstr "حقل إلزامي: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "الحقول الالزامية في جدول {0} صف رقم {1} مطلوبة"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "الحقول الإلزامية المطلوبة في {0}"
@@ -15382,7 +15452,7 @@ msgstr "عرض ماكس لنوع العملة هو 100px في الصف {0}"
msgid "Maximum"
msgstr "أقصى"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15406,7 +15476,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15625,7 +15695,7 @@ msgstr "طريقة"
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15641,6 +15711,11 @@ msgstr ""
msgid "Middle Name"
msgstr "الاسم الأوسط"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15711,7 +15786,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "حقول مفقودة"
@@ -15747,6 +15822,11 @@ msgstr ""
msgid "Mobile No"
msgstr "رقم الجوال"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "رقم الهاتف المحمول"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15772,7 +15852,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15948,10 +16028,12 @@ msgstr "المزيد من المعلومات"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "المزيد من المعلومات"
@@ -15981,7 +16063,7 @@ msgstr ""
msgid "Move"
msgstr "حرك"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "الانتقال إلى"
@@ -16017,7 +16099,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "الانتقال إلى رقم الصف"
@@ -16067,7 +16149,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "يجب أن يكون من نوع "إرفاق صورة""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير."
@@ -16085,7 +16167,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16125,7 +16207,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16227,12 +16309,12 @@ msgstr "قالب نافبار"
msgid "Navbar Template Values"
msgstr "قيم قالب نافبار"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "انتقل القائمة لأسفل"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "انتقل القائمة لأعلى"
@@ -16247,6 +16329,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16255,7 +16341,7 @@ msgstr ""
msgid "Negative Value"
msgstr "قيمة سالبة"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16268,6 +16354,12 @@ msgstr "خطأ مجموعة متداخلة . يرجى الاتصال بمدير
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16276,7 +16368,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16337,7 +16429,7 @@ msgstr "حدث جديد"
msgid "New Folder"
msgstr "ملف جديد"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "مجلس كانبان جديدة"
@@ -16372,7 +16464,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "كلمة مرور جديدة"
@@ -16468,7 +16560,7 @@ msgstr "القيمة الجديدة التي سيتم تحديدها"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "{0} جديد"
@@ -16620,7 +16712,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "لا"
@@ -16725,7 +16817,7 @@ msgstr "لا يوجد اسم محدد لـ {0}"
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "لا الأذونات المحددة"
@@ -16769,7 +16861,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16777,7 +16869,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "لا علامات"
@@ -16853,7 +16945,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16877,7 +16969,7 @@ msgstr "لا توجد سجلات أخرى"
msgid "No matching records. Search something new"
msgstr "أية سجلات مطابقة. بحث شيئا جديدا"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "لا مزيد من العناصر لعرضها"
@@ -16921,7 +17013,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "لا توجد صلاحية ل '{0} ' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "ليس هناك إذن لقراءة {0}"
@@ -16933,7 +17025,7 @@ msgstr "لا يوجد تصريح إلى {0} {1} {2}"
msgid "No records deleted"
msgstr "لا توجد سجلات محذوفة"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "لا توجد سجلات في {0}"
@@ -16969,11 +17061,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16982,7 +17074,7 @@ msgid "No {0} mail"
msgstr "لا {0} الإلكتروني"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17046,7 +17138,7 @@ msgstr "ليس من أحفاد"
msgid "Not Equals"
msgstr "لا تساوي"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "لم يتم العثور على"
@@ -17072,9 +17164,9 @@ msgstr "غير مرتبط بأي سجل"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17093,7 +17185,7 @@ msgstr "لم تنشر"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17144,7 +17236,7 @@ msgstr "غير نشطة"
msgid "Not allowed for {0}: {1}"
msgstr "غير مسموح لـ {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "غير مسموح بإرفاق مستند {0} ، يرجى تمكين السماح بالطباعة لـ {0} في إعدادات الطباعة"
@@ -17176,12 +17268,12 @@ msgstr "ليس في وضع مطور البرامج"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE \"مخصص\"."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غير مسموح به"
@@ -17227,7 +17319,7 @@ msgstr "ملاحظة: للحصول على أفضل النتائج ، يجب أن
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز الموبايل"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17299,15 +17391,15 @@ msgstr "وثيقة الاشتراك المكتوبة"
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17421,7 +17513,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17693,7 +17785,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "بمجرد إرسالها ، لا يمكن تغيير المستندات المقدمة. يمكن إلغاؤها وتعديلها فقط."
@@ -17782,11 +17874,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17882,7 +17974,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "فتح عنصر القائمة"
@@ -17931,7 +18023,7 @@ msgstr "افتتح"
msgid "Operation"
msgstr "عملية"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "يجب أن يكون المشغل واحدا من {0}"
@@ -17977,6 +18069,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17985,6 +18078,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "خيارات"
@@ -18014,7 +18108,7 @@ msgstr "يجب تعيين خيارات {0} قبل تعيين القيمة الا
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "خيارات لم يتم تعيين لحقل الرابط {0}"
@@ -18030,7 +18124,7 @@ msgstr ""
msgid "Order"
msgstr "طلب"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18046,7 +18140,7 @@ msgstr "تاريخ المنظمة"
msgid "Org History Heading"
msgstr "عنوان تاريخ المنظمة"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "توجيه"
@@ -18128,7 +18222,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18161,10 +18255,6 @@ msgstr ""
msgid "PDF Settings"
msgstr "إعدادات PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "فشل توليد قوات الدفاع الشعبي"
@@ -18376,7 +18466,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18480,8 +18570,8 @@ msgstr "غير فعال"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18504,7 +18594,7 @@ msgstr "إعادة تعيين كلمة المرور"
msgid "Password Reset Link Generation Limit"
msgstr "حد إنشاء ارتباط إعادة تعيين كلمة المرور"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18541,7 +18631,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18553,7 +18643,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "كلمة المرور غير مطابقة!"
@@ -18704,7 +18794,7 @@ msgstr "إرسال دائم {0} ؟"
msgid "Permanently delete {0}?"
msgstr "حذف بشكل دائم {0} ؟"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "خطأ في الإذن"
@@ -18764,16 +18854,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "الصلاحيات"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18835,15 +18925,18 @@ msgstr "طلب تنزيل البيانات الشخصية"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18856,11 +18949,11 @@ msgstr "هاتف"
msgid "Phone No."
msgstr "رقم الهاتف"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18942,11 +19035,11 @@ msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك"
msgid "Please attach a file first."
msgstr "يرجى إرفاق ملف الأول."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18958,7 +19051,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "يرجى التحقق من قيم المرشح المحددة لمخطط لوحة المعلومات: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "يرجى التحقق من قيمة مجموعة "الجلب من" للحقل {0}"
@@ -18998,7 +19091,7 @@ msgstr "يرجى تأكيد الإجراء الخاص بك إلى {0} هذا ا
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "الرجاء إنشاء البطاقة أولاً"
@@ -19014,11 +19107,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr "من فضلك لا تغيير عناوين القالب."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "يرجى تكرار هذه إلى إجراء تغييرات"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19027,7 +19120,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "يرجى تمكين النوافذ المنبثقة"
@@ -19142,7 +19235,7 @@ msgstr "يرجى حفظ التقرير الأول"
msgid "Please save to edit the template."
msgstr "يرجى الحفظ لتعديل القالب."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "يرجى تحديد DOCTYPE أولا"
@@ -19150,15 +19243,15 @@ msgstr "يرجى تحديد DOCTYPE أولا"
msgid "Please select Entity Type first"
msgstr "يرجى اختيار نوع الكيان أولا"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19182,7 +19275,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح"
msgid "Please select applicable Doctypes"
msgstr "يرجى اختيار الأساليب المناسبة"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة"
@@ -19212,7 +19305,7 @@ msgstr "يرجى وضع عنوان البريد الإلكتروني"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "يرجى تعيين تعيين طابعة لتنسيق الطباعة هذا في "إعدادات الطابعة""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "يرجى تعيين المرشحات"
@@ -19232,7 +19325,7 @@ msgstr "يرجى تعيين المستندات التالية في لوحة ال
msgid "Please set the series to be used."
msgstr "يرجى ضبط المسلسل ليتم استخدامه."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز"
@@ -19347,7 +19440,7 @@ msgstr "بوابة عنصر القائمة"
msgid "Portal Settings"
msgstr "إعدادات البوابة"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "صورة"
@@ -19375,6 +19468,7 @@ msgstr "بريدي"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "الرمز البريدي"
@@ -19383,7 +19477,7 @@ msgstr "الرمز البريدي"
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19398,6 +19492,10 @@ msgstr ""
msgid "Precision"
msgstr "دقة"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "وينبغي أن تكون الدقة بين 1 و 6"
@@ -19446,7 +19544,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "إعداد تقرير المستخدم"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19581,13 +19679,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "طباعة"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "طباعة"
@@ -19657,7 +19755,7 @@ msgstr "تنسيق الطباعة مساعدة"
msgid "Print Format Type"
msgstr "نوع تنسيق الطباعة"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19696,7 +19794,7 @@ msgstr "طباعة إخفاء إذا لا قيمة"
msgid "Print Language"
msgstr "لغة الطباعة"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "طباعة المرسلة إلى الطابعة!"
@@ -19714,7 +19812,7 @@ msgstr "ملقم الطباعة"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "إعدادات الطباعة"
@@ -19838,11 +19936,11 @@ msgstr "ProTip: إضافة Reference: {{ reference_doctype }} {{ reference
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "المتابعة على أية حال"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "معالجة"
@@ -19859,11 +19957,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "تم تحديث المَلف الشخصي بنجاح."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "تقدم"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "مشروع"
@@ -19907,7 +20015,7 @@ msgstr "نوع الملكية"
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20080,7 +20188,7 @@ msgstr "رمز الاستجابة السريعة"
msgid "QR Code for Login Verification"
msgstr "رمز الاستجابة السريعة لتسجيل الدخول"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20287,7 +20395,7 @@ msgstr "تقييم"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "أوامر الخام"
@@ -20413,11 +20521,11 @@ msgstr ""
msgid "Reason"
msgstr "سبب"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "إعادة بناء"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20798,8 +20906,8 @@ msgstr "المرجع"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20830,13 +20938,13 @@ msgstr ""
msgid "Refresh Token"
msgstr "تحديث رمز"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "يحديث ..."
@@ -21149,8 +21257,8 @@ msgstr "الرد على الجميع"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21221,11 +21329,11 @@ msgstr "مدير التقارير"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "تقرير الاسم"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21259,21 +21367,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "لا يمكن تعيين التقرير لأنواع واحدة"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "لا يحتوي التقرير على بيانات ، يرجى تعديل الفلاتر أو تغيير اسم التقرير"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21293,7 +21401,7 @@ msgstr "تم تحديث التقرير بنجاح"
msgid "Report was not saved (there were errors)"
msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي."
@@ -21329,7 +21437,7 @@ msgstr "تقارير"
msgid "Reports & Masters"
msgstr "التقارير والماجستير"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "التقارير موجودة بالفعل في قائمة الانتظار"
@@ -21348,7 +21456,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "طلب البيانات"
@@ -21400,6 +21511,11 @@ msgstr ""
msgid "Request URL"
msgstr "طلب عنوان ورل"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21455,7 +21571,7 @@ msgstr ""
msgid "Reset Fields"
msgstr "تصفير البيانات في الحقول"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "إعادة تعيين كلمة مرور LDAP"
@@ -21463,11 +21579,11 @@ msgstr "إعادة تعيين كلمة مرور LDAP"
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "إعادة تعيين مكتب المدعي العام سر"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21502,7 +21618,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21642,7 +21758,7 @@ msgstr "ارجع إلى شاشة التحقق وأدخل الرمز المعرو
msgid "Reverse Icon Color"
msgstr "عكس دلالات اللون"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "إعادة الطول إلى {0} لـ "{1}" في "{2}". تعيين الطول كـ {3} سيؤدي إلى اقتطاع البيانات."
@@ -21754,7 +21870,7 @@ msgstr "إذن الدور للصفحة والتقرير"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "اذونات الصلاحيات"
@@ -21764,7 +21880,7 @@ msgstr "اذونات الصلاحيات"
msgid "Role Permissions Manager"
msgstr "مدير ضوابط الصلاحيات"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "مدير ضوابط الصلاحيات"
@@ -21909,7 +22025,7 @@ msgstr "إعادة توجيه الطريق"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "صف"
@@ -21917,12 +22033,12 @@ msgstr "صف"
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "الصف # {0}:"
@@ -21957,11 +22073,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "الصف {0}: غير مسموح بتعطيل إلزامي للحقول القياسية"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "صف {0}: غير مسموح لتمكين السماح إرسال على لحقول القياسية"
@@ -21980,7 +22096,10 @@ msgid "Rows Removed"
msgstr "الصفوف إزالتها"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22188,8 +22307,8 @@ msgstr "السبت"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22212,11 +22331,11 @@ msgstr "حفظ باسم"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "احفظ التقرير"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "حفظ المرشحات"
@@ -22588,7 +22707,7 @@ msgstr "إعدادات الأمان"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "عرض جميع التقارير السابقة"
@@ -22652,7 +22771,7 @@ msgstr "حدد"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22673,7 +22792,7 @@ msgid "Select Column"
msgstr "حدد العمود"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "تحديد الأعمدة"
@@ -22732,7 +22851,7 @@ msgstr "اختر المجال"
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "حدد الحقول"
@@ -22852,14 +22971,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "حدد عقدة المجموعة أولا."
+msgid "Select a group {0} first."
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "حدد حقل مرسل صالحًا لإنشاء المستندات من البريد الإلكتروني"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "حدد حقل موضوع صالحًا لإنشاء المستندات من البريد الإلكتروني"
@@ -22889,13 +23008,13 @@ msgstr "اختر أتلست سجل 1 للطباعة"
msgid "Select atleast 2 actions"
msgstr "حدد على الأقل 2 الإجراءات"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "حدد عنصر القائمة"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "حدد عناصر قائمة متعددة"
@@ -23113,7 +23232,7 @@ msgstr "البريد الإلكتروني المرسل"
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "يجب أن يحتوي حقل المرسل على البريد الإلكتروني في الخيارات"
@@ -23217,7 +23336,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}"
msgid "Server Action"
msgstr "عمل الخادم"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطأ في الخادم"
@@ -23283,7 +23402,7 @@ msgstr "الجلسة الافتراضية"
msgid "Session Defaults Saved"
msgstr "تم حفظ الإعدادات الافتراضية للجلسة"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "انتهت الجلسة"
@@ -23292,14 +23411,14 @@ msgstr "انتهت الجلسة"
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "يجب أن يكون انتهاء الجلسة بالتنسيق {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "مجموعة"
@@ -23325,12 +23444,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "تعيين الخيارات الافتراضية لجميع الرسوم البيانية في لوحة المعلومات هذه (على سبيل المثال: "الألوان": ["# d1d8dd"، "# ff5858"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "تعيين عوامل التصفية الديناميكية"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23341,7 +23460,7 @@ msgstr "ضبط المرشحات"
msgid "Set Filters for {0}"
msgstr "تعيين عوامل التصفية لـ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23395,7 +23514,7 @@ msgstr "ضبط الكمية"
msgid "Set Role For"
msgstr "تعيين صلاحية لل"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "تعيين صلاحيات المستخدم"
@@ -23414,7 +23533,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "تعيين كافتراضي"
@@ -23433,18 +23552,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "تعيين الدقة غير القياسية لحقل تعويم أو العملات"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23554,7 +23676,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "الإعداد التلقائي البريد الإلكتروني"
@@ -23695,6 +23817,12 @@ msgstr "عرض المستند"
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23823,7 +23951,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "أضهر العلامات"
@@ -24030,36 +24158,36 @@ msgstr "تم تعطيل التسجيل"
msgid "Signups have been disabled for this website."
msgstr "تم تعطيل الاشتراكات لهذا الموقع."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "تعبير Python البسيط ، مثال: الحالة في ("مغلق" ، "تم الإلغاء")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "تعبير Python البسيط ، مثال: الحالة في ("غير صالح")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "تعبير Python البسيط ، مثال: status == 'Open' واكتب == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "جلسات متزامنة"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "لا يمكن تخصيص DocTypes مفردة."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "أنواع واحد يكون سجل واحد فقط لا الجداول المرتبطة . يتم تخزين القيم في tabSingles"
@@ -24067,7 +24195,7 @@ msgstr "أنواع واحد يكون سجل واحد فقط لا الجداول
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "حجم"
@@ -24327,7 +24455,7 @@ msgstr "يجب أن يكون حقل نوع {0} لFIELDNAME صحيح"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24394,8 +24522,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "ر.ت"
@@ -24427,7 +24555,7 @@ msgstr ""
msgid "Standard"
msgstr "اساسي"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24443,7 +24571,7 @@ msgstr "المعيار غير محدد"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "لا يمكن تحديث تنسيق الطباعة القياسية"
@@ -24561,6 +24689,7 @@ msgstr "يبدأ يوم"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24696,7 +24825,7 @@ msgstr "خطوات التحقق من تسجيل الدخول"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24726,7 +24855,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24824,7 +24953,7 @@ msgstr "موضوع"
msgid "Subject Field"
msgstr "حقل الموضوع"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "يجب أن يكون نوع حقل الموضوع بيانات ، نص ، نص طويل ، نص صغير ، محرر نص"
@@ -24838,6 +24967,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24846,10 +24976,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "تسجيل"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "تسجيل"
@@ -24859,7 +24990,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "تسجيل"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "تسجيل"
@@ -24907,7 +25038,7 @@ msgstr "أرسل هذا المستند لإكمال هذه الخطوة."
msgid "Submit this document to confirm"
msgstr "إرسال هذه الوثيقة إلى تأكيد"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "إرسال {0} وثائق؟"
@@ -24957,7 +25088,7 @@ msgstr "عنوان فرعي"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25172,7 +25303,7 @@ msgstr "المزامنة"
msgid "Syncing {0} of {1}"
msgstr "مزامنة {0} من {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25483,7 +25614,7 @@ msgstr "الجدول MultiSelect"
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "الجدول محدث"
@@ -25698,7 +25829,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr "تم تعطيل التكرار التلقائي لهذا المستند."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "تنسيق كسف حساس لحالة الأحرف"
@@ -25713,7 +25844,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr "الشرط '{0}' غير صالح"
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25766,7 +25897,7 @@ msgstr "لا يمكن أن يكون التعليق فارغًا"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25796,7 +25927,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25867,7 +25998,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25878,7 +26009,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "المصدر الذي تبحث عنه غير متاح\\n
\\nThe resource you are looking for is not available"
@@ -25890,7 +26021,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25951,12 +26082,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25980,11 +26111,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "هناك بعض المشاكل مع رابط الملف: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25996,7 +26127,7 @@ msgstr "يجب أن يكون هناك على الأقل قاعدة إذن واح
msgid "There was an error building this page"
msgstr "كان هناك خطأ في بناء هذه الصفحة"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "كان هناك خطأ في حفظ المرشحات"
@@ -26053,7 +26184,7 @@ msgstr "إثبات أصالة الطرف الثالث"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "تم تعطيل هذه العملات . تمكين لاستخدامها في المعاملات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "وهذا المجلس كانبان يكون القطاع الخاص"
@@ -26061,6 +26192,10 @@ msgstr "وهذا المجلس كانبان يكون القطاع الخاص"
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26086,6 +26221,11 @@ msgstr "هذا الإجراء مسموح به فقط لـ {}"
msgid "This cannot be undone"
msgstr "هذا لا يمكن التراجع عنها"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26104,7 +26244,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26146,7 +26286,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26181,7 +26321,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "هذا يذهب فوق عرض الشرائح."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة."
@@ -26231,7 +26371,7 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة"
msgid "This month"
msgstr "هذا الشهر"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26239,7 +26379,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "تم إنشاء هذا التقرير في {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "تم إنشاء هذا التقرير {0}."
@@ -26381,9 +26521,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26644,7 +26786,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "للحصول على التقرير المحدّث ، انقر على {0}."
@@ -26719,7 +26861,7 @@ msgstr "تبديل عرض الشبكة"
msgid "Toggle Sidebar"
msgstr "تبديل الشريط الجانبي"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "تبديل الشريط الجانبي"
@@ -26845,7 +26987,7 @@ msgstr "موضوع"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "الاجمالي غير شامل الضريبة"
@@ -26966,7 +27108,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27002,7 +27144,7 @@ msgstr "التحولات"
msgid "Translatable"
msgstr "للترجمة"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27164,7 +27306,7 @@ msgstr "أسلوب اثنان عامل المصادقة"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27257,7 +27399,7 @@ msgstr "رابط الانترنت"
msgid "URL for documentation or help"
msgstr "عنوان URL للتوثيق أو المساعدة"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27360,7 +27502,7 @@ msgstr ""
msgid "Unable to update event"
msgstr "غير قادر على تحديث الحدث"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "تعذر كتابة تنسيق الملف {0}"
@@ -27369,7 +27511,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}"
msgid "Unassign Condition"
msgstr "إلغاء تعيين الشرط"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27385,7 +27527,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27432,7 +27574,7 @@ msgstr "عمود غير معروف: {0}"
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "مستخدم غير معروف"
@@ -27498,8 +27640,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr "إلغاء اشتراكك"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27533,7 +27675,7 @@ msgstr "الأحداث القادمة لهذا اليوم"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "تحديث"
@@ -27567,6 +27709,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27625,7 +27772,7 @@ msgstr "تم التحديث إلى إصدار جديد 🎉"
msgid "Updated successfully"
msgstr "تم التحديث بنجاح"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "يتم التحديث"
@@ -27782,11 +27929,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "استخدام الاستعلام الفرعي أو وظيفة مقيدة"
@@ -28008,12 +28151,12 @@ msgstr "إذن المستخدم"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "ضوابط المستخدم"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "ضوابط المستخدم"
@@ -28157,7 +28300,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr "المستخدم {0} تم تعطيل"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28285,8 +28428,8 @@ msgstr "الصلاحية"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28318,7 +28461,7 @@ msgstr "تم تغير القيمة"
msgid "Value To Be Set"
msgstr "قيمة ليتم تعيينها"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "لا يمكن تغير القيمة ل {0}"
@@ -28334,11 +28477,11 @@ msgstr "لا يمكن أن تكون القيمة سالبة لـ {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "يمكن أن تكون قيمة حقل التحقق إما 0 أو 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "قيمة الحقل {0} طويلة جدًا في {1}. يجب أن يكون الطول أقل من {2} حرف"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "القيمة {0} لا يمكن أن تكون قائمة"
@@ -28363,7 +28506,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "قيمة للتحقق من صحتها"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "قيمة كبيرة جدا"
@@ -28455,7 +28598,7 @@ msgstr "عرض الكل"
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28467,7 +28610,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "عرض القائمة"
@@ -28477,7 +28620,7 @@ msgstr "عرض القائمة"
msgid "View Log"
msgstr "عرض السجل"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "عرض المستندات المسموح بها"
@@ -28593,6 +28736,7 @@ msgid "Warehouse"
msgstr "المستودعات"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "تحذير"
@@ -28687,7 +28831,7 @@ msgstr "صفحة على الإنترنت"
msgid "Web Page Block"
msgstr "كتلة صفحة الويب"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29077,7 +29221,7 @@ msgstr "سيتم عرض فقط إذا تم تمكين عناوين المقطع"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "مع رئيس رسالة"
@@ -29238,7 +29382,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29331,7 +29475,7 @@ msgstr "تغليف"
msgid "Write"
msgstr "الكتابة"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "إحضار خاطئ من القيمة"
@@ -29360,7 +29504,7 @@ msgstr "حقول محور Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y الميدان"
@@ -29422,7 +29566,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "نعم"
@@ -29458,6 +29602,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "أنت متصل بالإنترنت."
@@ -29496,12 +29644,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "غير مسموح لك بتصدير النمط {}"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "لا يسمح لك بطباعة هذا التقرير"
@@ -29509,7 +29657,7 @@ msgstr "لا يسمح لك بطباعة هذا التقرير"
msgid "You are not allowed to send emails related to this document"
msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه"
@@ -29582,11 +29730,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29636,11 +29784,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "لا يمكنك تعيين "خيارات" للحقل {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "لا يمكنك تعيين 'ترانزلاتابل' للحقل {0}"
@@ -29658,7 +29806,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "لا يمكنك إنشاء مخطط لوحة معلومات من أنواع DocTypes الفردية"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "لا يمكنك ضبط \"للقراءة فقط\" للحقل {0}"
@@ -29701,15 +29849,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29721,11 +29869,11 @@ msgstr "ليس لديك أذونات لإلغاء كافة المستندات ا
msgid "You don't have access to Report: {0}"
msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا الملف"
@@ -29745,7 +29893,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr "لقد تم تسجيل بنجاح"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29773,7 +29921,7 @@ msgstr "لديك غير مرئي {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29790,11 +29938,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج"
@@ -29818,7 +29966,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "عليك أن تكون في وضع المطور لتعديل نموذج ويب قياسي"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية."
@@ -29909,6 +30057,10 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند"
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29954,7 +30106,7 @@ msgstr "اختصاراتك"
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "تم قفل حسابك وسيتم استئنافه بعد {0} ثانية"
@@ -30016,11 +30168,11 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة."
@@ -30328,7 +30480,7 @@ msgstr ""
msgid "just now"
msgstr "الآن فقط"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30357,7 +30509,7 @@ msgstr "قائمة"
msgid "logged in"
msgstr "تسجيل الدخول"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30695,7 +30847,7 @@ msgstr "عبر استيراد البيانات"
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "عبر الإخطار"
@@ -30805,7 +30957,7 @@ msgstr "{0} الرسم البياني"
msgid "{0} Dashboard"
msgstr "{0} لوحة المعلومات"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30846,7 +30998,7 @@ msgstr ""
msgid "{0} Name"
msgstr "{0} الاسم"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30856,7 +31008,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} تقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30912,7 +31064,7 @@ msgstr "{0} و {1}"
msgid "{0} are currently {1}"
msgstr "{0} حاليًا {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} مطلوبة"
@@ -30929,7 +31081,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31006,7 +31158,7 @@ msgstr "{0} غير موجود في الصف {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "لا يمكن أن يحتوي اسم الحقل {0} على أحرف خاصة مثل {1}"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31051,7 +31203,7 @@ msgstr "{0} في الصف {1} لا يمكن أن يكون لها عنوان URL
msgid "{0} is a mandatory field"
msgstr "{0} حقل إلزامي"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31100,7 +31252,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} إلزامي"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31120,12 +31272,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ليس نوع DocType صالحًا للارتباط الديناميكي"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Email Address"
@@ -31133,11 +31285,11 @@ msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Emai
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} ليس اسمًا صالحًا"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} ليس رقم هاتف صالحًا"
@@ -31157,7 +31309,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تنسيق التقرير مما يلي {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31181,7 +31333,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} هو الآن تنسيق الطباعة الافتراضي لنوع المستند {1}"
@@ -31191,8 +31343,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} مطلوب"
@@ -31205,7 +31357,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} العناصر المحددة"
@@ -31262,11 +31414,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr "{0} يجب أن يكون واحدا من {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "يجب تعيين {0} أولا"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} يجب أن تكون فريدة من نوعها"
@@ -31291,11 +31443,11 @@ msgid "{0} not found"
msgstr "لم يتم العثور على {0}"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} من {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)"
@@ -31345,7 +31497,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31419,7 +31571,7 @@ msgstr "{0} إلى {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} الغى مشاركة هذه الوثيقة مع {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} تم تحديث"
@@ -31455,11 +31607,11 @@ msgstr "تمت إضافة {0} {1}"
msgid "{0} {1} added to Dashboard {2}"
msgstr "تمت إضافة {0} {1} إلى لوحة التحكم {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} موجود بالفعل"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} لا يمكن أن يكون {{}}. يجب أن تكون واحدة من \"{3}\""
@@ -31479,11 +31631,11 @@ msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: {
msgid "{0} {1} not found"
msgstr "{0} {1} غير موجود"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}، الصف {1}"
@@ -31491,35 +31643,35 @@ msgstr "{0}، الصف {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} مكتمل | يرجى ترك علامة التبويب هذه مفتوحة حتى الانتهاء."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) سيتم اقتطاعه، حيث أن الحد الأقصى المسموح به هو {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: لا يمكن تعيين تعديل بدون إلغاء"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: لا يمكن تعيين معدل إذا لم يتم إرساله"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: لا يمكن تعيين إلغاء بدون إرسال"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0} : لا يمكن تحديد استيراد دون إنشاء"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: لا يمكن تعيين استيراد كما {1} غير قابل للاستيراد"
@@ -31547,11 +31699,11 @@ msgstr "{0}: اسم الحقل {1} يظهر عدة مرات في الصفوف {2
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: لا يمكن أن يكون Fieldtype {1} لـ {2} فريدًا"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0} : لم يتم تحديد صلاحيات أساسية"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1}"
@@ -31571,7 +31723,7 @@ msgstr "{0}: يجب أن تكون الخيارات {1} هي نفس اسم الن
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى"
@@ -31592,7 +31744,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: تم تعيين {1} على الحالة {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} ضد {2}"
@@ -31628,11 +31780,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na
msgid "{} Complete"
msgstr "{} اكتمال"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31658,7 +31810,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr "{} ليست سلسلة تاريخ صالحة."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po
index bf27b0fe1f..5a9280d4df 100644
--- a/frappe/locale/bs.po
+++ b/frappe/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:02\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'U Globalnoj Pretrazi' nije dozvoljeno za tip {0} u redu {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'U Prikazu Liste' nije dozvoljeno za polje {0} tipa {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}"
@@ -86,11 +86,11 @@ msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' nije važeći IBAN broj"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano"
msgid "0 is highest"
msgstr "0 je najviše"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Tačno i 0 = Netačno"
@@ -141,11 +141,11 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinhroniziran je 1 događaj iz Google Kalendara."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Izvještaj"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "prije 1 dan"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "prije 1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "prije 1 minutu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "prije 1 mjesec"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr "1 red do {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "prije 1 sekundu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "prije 1 sedmicu"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "prije 1 godinu"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "prije 2 sata"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "prije 2 mjeseca"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "prije 2 sedmice"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "prije 2 godine"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "prije 3 minute"
@@ -232,7 +232,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 Zapisa"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "prije 5 dana"
@@ -270,6 +270,16 @@ msgstr "{0} nije važeći URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Ne ažuriraj jer to može pokvariti vašu formu. Koristite Prilagodi Prikaz Forme i Prilagođena Polja da postavite svojstva!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr "Zatražite datoteku koja sadrži vaše lične podatke (PII) koji su sačuvani na našem sistemu. Datoteka će biti u JSON formatu i bit će vam poslana putem e-pošte. Ako želite da se vaši PII izbrišu iz našeg sistema, molimo vas da podnesete zahtjev za brisanje podataka.
"
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr "Pošaljite zahtjev za brisanje vašeg računa i ličnih podataka (PII) koji su pohranjeni u našem sistemu. Primit ćete e-poštu za potvrdu vašeg zahtjeva. Nakon što zahtjev bude potvrđen, mi ćemo se pobrinuti za brisanje vaših PII podataka. Ako samo želite provjeriti koje smo PII podatke pohranili, možete zatražiti svoje podatke.
"
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -754,11 +764,16 @@ msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slov
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "Instanca Sistema može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri."
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "Link za preuzimanje s vašim podacima bit će poslan na adresu e-pošte povezanu s vašim računom."
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Polje s imenom {0} već postoji u {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Datoteka s istim imenom {} već postoji"
@@ -882,7 +897,7 @@ msgstr "Argumenti krajnje API tačke trebaju biti važeći JSON"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -901,7 +916,7 @@ msgstr "API Ključ i tajna za interakciju s relejnim serverom. Oni će se automa
msgid "API Key cannot be regenerated"
msgstr "API Ključ se ne može regenerirati"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API Ključevi"
@@ -925,7 +940,7 @@ msgstr "Zapisnik API Zahtjeva"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1011,7 +1026,7 @@ msgstr "Pristupni Token"
msgid "Access Token URL"
msgstr "URL Pristupnog Tokena"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Pristup nije dozvoljen sa ove IP adrese"
@@ -1127,7 +1142,7 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Radnje"
@@ -1184,7 +1199,7 @@ msgstr "Zapisnik Aktivnosti"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1195,7 +1210,7 @@ msgstr "Zapisnik Aktivnosti"
msgid "Add"
msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Dodaj / Ukloni Kolone"
@@ -1227,7 +1242,7 @@ msgstr "Dodaj Ivicu na Dnu"
msgid "Add Border at Top"
msgstr "Dodaj Ivicu na Vrh"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Dodaj Karticu na Nadzornu Tablu"
@@ -1240,8 +1255,8 @@ msgid "Add Child"
msgstr "Dodaj Podređeni"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1335,7 +1350,7 @@ msgstr "Dodaj Pretplatnike"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj Oznake"
@@ -1510,6 +1525,7 @@ msgstr "Dodatne Dozvole"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1518,6 +1534,7 @@ msgstr "Adresa"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresna Linija 1"
@@ -1525,6 +1542,7 @@ msgstr "Adresna Linija 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresna Linija 2"
@@ -1686,7 +1704,7 @@ msgstr "Nakon Podnošenja"
msgid "After Submit"
msgstr "Nakon Podnošenja"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Agregatno Polje je obavezno za kreiranje kartice sa brojevima"
@@ -1713,11 +1731,11 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i Obavještenja"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Alias ne može biti SQL ključna riječ: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Alias mora biti niz"
@@ -2165,6 +2183,12 @@ msgstr "Takođe se dodaje polje statusne zavisnosti {0}"
msgid "Alternative Email ID"
msgstr "Alternativni ID e-pošte"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "Uvijek"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2241,6 +2265,11 @@ msgstr "Izmjena nije Dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila Izmjene Imenovanje ažurirana"
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "E-pošta za potvrdu vašeg zahtjeva poslana je na vašu adresu e-pošte. Molimo vas da potvrdite svoj zahtjev kako biste dovršili proces."
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije"
@@ -2423,7 +2452,7 @@ msgstr "Primijenjeno na"
msgid "Apply"
msgstr "Primjeni"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primijeni Pravilo Dodjele"
@@ -2508,7 +2537,7 @@ msgstr "Arhivirane Kolone"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Jeste li sigurni da želite otkazati pozivnicu?"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "Jeste li sigurni da želite izbrisati zadatke?"
@@ -2544,7 +2573,7 @@ msgstr "Jeste li sigurni da želite izbrisati ovaj zapis?"
msgid "Are you sure you want to discard the changes?"
msgstr "Jeste li sigurni da želite odbaciti promjene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
@@ -2552,7 +2581,7 @@ msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Jeste li sigurni da želite nastaviti?"
@@ -2607,6 +2636,12 @@ msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozv
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "Pitaj"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2616,7 +2651,7 @@ msgstr "Dodijeli Uslov"
msgid "Assign To"
msgstr "Dodijeli"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodijeli"
@@ -2759,7 +2794,7 @@ msgstr "Dodjele"
msgid "Asynchronous"
msgstr "Asinhroni"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži."
@@ -2839,7 +2874,7 @@ msgstr "U Prilogu Polja"
msgid "Attached To Name"
msgstr "Priloženo Imenu"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo Imenu mora biti niz ili cijeli broj"
@@ -2855,7 +2890,7 @@ msgstr "Prilog"
msgid "Attachment Limit (MB)"
msgstr "Ograničenje Priloga (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Dostignuto Ograničenje Priloga"
@@ -2877,11 +2912,11 @@ msgstr "Prilog Uklonjen"
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušaj povezivanja na QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušaj pokretanja QZ Tray..."
@@ -3739,15 +3774,15 @@ msgstr "Grupno Brisanje"
msgid "Bulk Edit"
msgstr "Grupno Uređivanje"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Grupno uređivanje {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Grupna operacija nije uspjela"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Grupna operacija uspješna"
@@ -3971,7 +4006,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4031,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji."
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4039,7 +4074,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji."
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4057,7 +4092,7 @@ msgstr "Otkaži"
msgid "Cancel All Documents"
msgstr "Otkaži Sve Dokumente"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4106,11 +4141,11 @@ msgstr "Nije Moguće Preuzeti Vrijednosti"
msgid "Cannot Remove"
msgstr "Nije Moguće Ukloniti"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Nije Moguće Ažurirati Nakon Podnošenja"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "Nije moguće pristupiti putu datoteke {0}"
@@ -4154,11 +4189,11 @@ msgstr "Nije moguće kreirati {0} naspram podređenog dokumenta: {1}"
msgid "Cannot create private workspace of other users"
msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće izbrisati mape Početna i Prilozi"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}"
@@ -4221,8 +4256,8 @@ msgstr "Nije moguće uređivati otkazani dokument"
msgid "Cannot edit filters for standard charts"
msgstr "Nije moguće uređivati filtere za standardne grafikone"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Nije moguće uređivati filtere za standardne numeričke kartice"
@@ -4234,11 +4269,11 @@ msgstr "Nije moguće uređivati standardna polja"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "Nije moguće pronaći datoteku {} na disku"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "Nije moguće dobiti sadržaj mape"
@@ -4246,7 +4281,7 @@ msgstr "Nije moguće dobiti sadržaj mape"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvesti tabelu sa više od 5000 redova."
@@ -4262,7 +4297,7 @@ msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:"
msgid "Cannot match column {0} with any field"
msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Nije moguće pomjeriti red"
@@ -4291,11 +4326,11 @@ msgstr "Nije moguće podnijeti {0}."
msgid "Cannot update {0}"
msgstr "Nije moguće ažurirati {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "Ovdje se ne može koristiti podupit."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po"
@@ -4568,11 +4603,11 @@ msgstr "Podređena tabela {0} za polje {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Podređena polja upita za '{0}' moraju biti lista ili torka."
@@ -4601,6 +4636,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Odaberi način autentifikacije koji će koristiti svi korisnici"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Grad"
@@ -4627,7 +4663,7 @@ msgstr "Očisti & Dodaj Šablon"
msgid "Clear All"
msgstr "Obriši Sve"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Obriši Dodjelu"
@@ -4704,24 +4740,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Klikni na {0} za generisanje tokena osvježavanja."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klikni na tabelu za uređivanje"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Klikni da Postavite Dinamičke Filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Klikni da Postavite Filtere"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Klikni da sortirate po {0}"
@@ -4899,7 +4935,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -4954,7 +4990,7 @@ msgstr "Sklopivo Zavisi Od (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5010,11 +5046,11 @@ msgstr "Naziv Kolone"
msgid "Column Name cannot be empty"
msgstr "Naziv Kolone ne može biti prazan"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Širina Kolone"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Širina kolone ne može biti nula."
@@ -5041,7 +5077,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5256,8 +5292,8 @@ msgstr "Komprimirano"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5305,7 +5341,7 @@ msgstr "Konfiguracija"
msgid "Configure Chart"
msgstr "Konfiguriši Grafikon"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Konfiguriši Kolone"
@@ -5332,7 +5368,7 @@ msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n"
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Potvrdi"
@@ -5351,7 +5387,7 @@ msgstr "Potvrdi Pristup"
msgid "Confirm Deletion of Account"
msgstr "Potvrdi Brisanje Računa"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Potvrdi Novu Lozinku"
@@ -5396,8 +5432,8 @@ msgstr "Povezana Aplikacija"
msgid "Connected User"
msgstr "Povezani Korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Povezano na QZ Tray!"
@@ -5448,6 +5484,10 @@ msgstr "Ograničenja"
msgid "Contact"
msgstr "Kontakt"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "Kontakt/e-pošta nije pronađena. Nije dodan učesnik za -
{0}"
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5511,7 +5551,7 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5600,7 +5640,7 @@ msgstr "Greška pri kopiranju u međuspremnik"
msgid "Copy to Clipboard"
msgstr "Kopiraj u Međuspremnik"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "Kopiraj token u međuspremnik"
@@ -5609,7 +5649,7 @@ msgstr "Kopiraj token u međuspremnik"
msgid "Copyright"
msgstr "Autorska prava"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Osnovni DocTypes se ne mogu prilagoditi."
@@ -5633,7 +5673,7 @@ msgstr "Nije moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije moguće mapirati kolonu {0} na polje {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "Nije moguće parsirati polje: {0}"
@@ -5686,13 +5726,14 @@ msgstr "Brojač"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Zemlja"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Kod Zemlje Obavezan"
@@ -5724,13 +5765,13 @@ msgstr "Potražuje"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Kreiraj"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Kreiraj & Nastavi"
@@ -5744,7 +5785,7 @@ msgid "Create Card"
msgstr "Kreiraj Karticu"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Kreiraj Grafikon"
@@ -5778,12 +5819,12 @@ msgstr "Kreiraj Zapisnik"
msgid "Create New"
msgstr "Kreiraj"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Kreiraj"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Kreiraj Novi DocType"
@@ -5791,7 +5832,7 @@ msgstr "Kreiraj Novi DocType"
msgid "Create New Kanban Board"
msgstr "Kreiraj Novu Natpisnu Tablu"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Kreiraj Korisničku e-poštu"
@@ -5814,8 +5855,8 @@ msgstr "Kreiraj novi zapis"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "+ {0}"
@@ -5831,7 +5872,7 @@ msgstr "Kreiraj ili Uredi Format Ispisa"
msgid "Create or Edit Workflow"
msgstr "Kreiraj ili Uredi Radni Tok"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "+ {0}"
@@ -5841,7 +5882,7 @@ msgstr "Kreiraj Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Kreirano"
@@ -6178,7 +6219,7 @@ msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Prilagođeno?"
@@ -6213,7 +6254,7 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}"
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6232,7 +6273,7 @@ msgstr "Prilagodi nadzornu ploču"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Prilagodi Formu"
@@ -6463,7 +6504,7 @@ msgstr "Zapisnik Uvoza Podataka"
msgid "Data Import Template"
msgstr "Šablon Uvoza Podataka"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Predugi Podaci"
@@ -6494,7 +6535,7 @@ msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka"
msgid "Database Storage Usage By Tables"
msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Ograničenje Veličine Reda Tabele Baze Podataka"
@@ -6864,13 +6905,13 @@ msgstr "Odgođeno"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Izbriši"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Izbriši"
@@ -6903,7 +6944,7 @@ msgstr "Izbriši Kolonu"
msgid "Delete Data"
msgstr "Izbriši Podatke"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Izbriši Natpisnu Tablu"
@@ -6917,7 +6958,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Izbriši Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Izbriši i Generiši Novi"
@@ -6959,12 +7000,12 @@ msgstr "Izbriši karticu"
msgid "Delete this record to allow sending to this email address"
msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno izbriši stavku {0}?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno izbriši {0} stavke?"
@@ -7000,7 +7041,7 @@ msgstr "Izbrisani Dokumenti"
msgid "Deleted Name"
msgstr "Izbrisano Ime"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Svi dokumenti su uspješno izbrisani"
@@ -7008,7 +7049,7 @@ msgstr "Svi dokumenti su uspješno izbrisani"
msgid "Deleted!"
msgstr "Izbrisano!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Brisanje {0} u toku"
@@ -7461,10 +7502,14 @@ msgstr "Ne Kreiraj Novog Korisnika"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "Ne upozoravaj me više o {0}"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Želiš li i dalje nastaviti?"
@@ -7891,13 +7936,13 @@ msgstr "Naziv Dokumenta"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Tip Dokumenta"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "Tip i Funkcija Dokumenta su obavezni za kreiranje numeričke kartice"
@@ -7942,15 +7987,15 @@ msgstr "Dokument Otključan"
msgid "Document follow is not enabled for this user."
msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Dokument je otkazan"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Dokument je podnesen"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Dokument je u stanju nacrta"
@@ -8092,7 +8137,7 @@ msgstr "Donut"
msgid "Double click to edit label"
msgstr "Dvaput klikni za uređivanje oznake"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8125,7 +8170,7 @@ msgstr "Link Preuzimanja"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Preuzmi izvještaj"
@@ -8221,7 +8266,7 @@ msgstr "Dvostruki Unos"
msgid "Duplicate Filter Name"
msgstr "Duplicirani Naziv Filtera"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Duplicirano Ime"
@@ -8325,8 +8370,8 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8338,7 +8383,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8348,7 +8393,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Uredi"
@@ -8377,7 +8422,7 @@ msgstr "Uredi Prilagođeni HTML"
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8395,7 +8440,7 @@ msgstr "Uredi Filtere"
msgid "Edit Footer"
msgstr "Uredi Podnožje"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Uredi Format"
@@ -8497,7 +8542,7 @@ msgstr "Uredi {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Uređivanje Mreže"
@@ -8542,6 +8587,8 @@ msgstr "Birač Elementa"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8560,6 +8607,8 @@ msgstr "Birač Elementa"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-pošta"
@@ -8679,6 +8728,7 @@ msgid "Email IDs"
msgstr "E-pošta"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "E-pošta"
@@ -8790,7 +8840,7 @@ msgstr "E-pošta je označena kao neželjena pošta"
msgid "Email has been moved to trash"
msgstr "E-pošta je premještena u smeće"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte"
@@ -8833,7 +8883,7 @@ msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka"
msgid "Embed code copied"
msgstr "Kod Ugradnje kopiran"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Prazan pseudonim nije dozvoljen"
@@ -8841,7 +8891,7 @@ msgstr "Prazan pseudonim nije dozvoljen"
msgid "Empty column"
msgstr "Prazna kolona"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Prazni niz argumenti nisu dozvoljeni"
@@ -9270,7 +9320,7 @@ msgstr "Zapisnik Grešaka"
msgid "Error Message"
msgstr "Poruka Greške"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...
Morate imati instaliranu i pokrenutu aplikaciju QZ Tray da biste koristili funkciju Direktni Ispis.
Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju."
@@ -9298,9 +9348,9 @@ msgstr "Greška u Klijent Skripti."
msgid "Error in Header/Footer Script"
msgstr "Greška Skripte Zaglavlja/Podnožja"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Greška u Obavještenju"
@@ -9320,19 +9370,19 @@ msgstr "Greška pri parsiranju ugniježđenih filtera: {0}"
msgid "Error while connecting to email account {0}"
msgstr "Greška prilikom povezivanja na račun e-pošte {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Greška: Podaci nedostaju u tabeli {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Greška: Nedostaje vrijednost za {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Greška: {0} Red #{1}: Nedostaje vrijednost za: {2}"
@@ -9481,7 +9531,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9507,12 +9557,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}"
@@ -9570,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvezi"
@@ -9769,7 +9819,7 @@ msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}"
msgid "Failed to connect to server"
msgstr "Povezivanje sa serverom nije uspjelo"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64."
@@ -9777,7 +9827,7 @@ msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base
msgid "Failed to decrypt key {0}"
msgstr "Dešifriranje ključa {0} nije uspjelo"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Brisanje {0} dokumenata nije uspjelo: {1}"
@@ -9933,7 +9983,7 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10016,7 +10066,7 @@ msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}."
msgid "Field {0} not found."
msgstr "Polje {0} nije pronađeno."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika"
@@ -10034,7 +10084,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Ime Polja"
@@ -10047,7 +10097,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
@@ -10063,11 +10113,11 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze."
msgid "Fieldname {0} appears multiple times"
msgstr "Ime polja {0} pojavljuje se više puta"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Ime polja {0} je u konfliktu sa meta objektom"
@@ -10107,7 +10157,7 @@ msgstr "Polja"
msgid "Fields Multicheck"
msgstr "Polja Višestrukog Odabira"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
@@ -10115,7 +10165,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija"
@@ -10143,7 +10193,7 @@ msgstr "Tip Polja"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Tip polja se ne može promijeniti iz {0} u {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}"
@@ -10209,7 +10259,7 @@ msgstr "URL Datoteke"
msgid "File backup is ready"
msgstr "Sigurnosna Kopija Datoteke je spremna"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Ime datoteke ne može imati {0}"
@@ -10217,7 +10267,7 @@ msgstr "Ime datoteke ne može imati {0}"
msgid "File not attached"
msgstr "Datoteka nije priložena"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB"
@@ -10226,11 +10276,11 @@ msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0}
msgid "File too big"
msgstr "Datoteka je prevelika"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Tip datoteke {0} nije dozvoljen"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Datoteka {0} ne postoji"
@@ -10244,8 +10294,8 @@ msgstr "Datoteke"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10284,11 +10334,11 @@ msgstr "Filter Naziv"
msgid "Filter Values"
msgstr "Filter Vrijednosti"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "Nedostaje uslov filtera nakon operatora: {0}"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "Polja filtera ne mogu sadržavati povratne crte (`)."
@@ -10365,7 +10415,7 @@ msgstr "Sekcija Filtera"
msgid "Filters applied for {0}"
msgstr "Primijenjeni filteri za {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filteri spremljeni"
@@ -10413,8 +10463,12 @@ msgstr "Prvi Radni Dan Sedmice"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Ime"
@@ -10495,7 +10549,7 @@ msgstr "Naziv Mape"
msgid "Folder name should not include '/' (slash)"
msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Mapa {0} nije prazna"
@@ -10602,7 +10656,7 @@ msgstr "Detalji Podnožja"
msgid "Footer HTML"
msgstr "Podnožje HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "HTML Podnožja postavljen iz priloga {0}"
@@ -10698,7 +10752,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -10739,7 +10793,7 @@ msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ tes
msgid "For updating, you can update only selective columns."
msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Za {0} na nivou {1} u {2} u redu {3}"
@@ -10983,7 +11037,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11045,13 +11099,13 @@ msgstr "Funkcija zasnovana na"
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije dat"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Podređeni članovi se mogu kreirati samo pod članovima tipa 'Grupa'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "Daljnje podgrupe mogu se kreirati samo pod zapisima označenim kao 'Grupa'"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11110,7 +11164,7 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
@@ -11125,7 +11179,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "Generiši odvojene dokumente za svakog Dodijeljenog"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11332,10 +11386,6 @@ msgstr "Google Analytics anonymise IP"
msgid "Google Calendar"
msgstr "Google Kalendar"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Kalendar - Kontakt/e-mail nije pronađen. Nije dodan učesnik za -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalendar - Nije moguće kreirati Kalendar za {0}, kod greške {1}."
@@ -11530,14 +11580,10 @@ msgstr "Grupiši Po Tipu"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "Grupiraj Po mora biti niz"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Grupa"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11597,7 +11643,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11702,7 +11748,7 @@ msgstr "Zaglavlje"
msgid "Header HTML"
msgstr "HTML Zaglavlja"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "HTML Zaglavlja postavljen iz priloga {0}"
@@ -11831,7 +11877,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Ovdje je vaš URL-a za praćenje"
@@ -11867,7 +11913,7 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena Polja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Skrivene kolone uključuju: {0}"
@@ -11979,7 +12025,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare"
msgid "Hide Standard Menu"
msgstr "Sakrij Standardni Meni"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Sakrij Oznake"
@@ -12139,7 +12185,7 @@ msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12236,9 +12282,9 @@ msgstr "Ako je označeno Primijeni Striktno Korisničko dopuštenje i definirano
msgid "If Checked workflow status will not override status in list view"
msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu liste"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ako je Vlasnik"
@@ -12466,8 +12512,8 @@ msgstr "Ignorisane Aplikacije"
msgid "Illegal Document Status for {0}"
msgstr "Ilegalan Status Dokumenta za {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Ilegalan SQL Upit"
@@ -12554,11 +12600,11 @@ msgstr "Slike"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Oponašaj"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Oponašaj {0}"
@@ -12588,7 +12634,7 @@ msgstr "Implicitno"
msgid "Import"
msgstr "Uvezi"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvezi"
@@ -12816,15 +12862,16 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Uključi skrivene kolone"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -12871,7 +12918,7 @@ msgstr "Račun dolazne e-pošte nije ispravan"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Nepotpuna implementacija virtualnog tipa dokumenta"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Nepotpuni podaci prijave"
@@ -12982,7 +13029,7 @@ msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13020,8 +13067,8 @@ msgstr "Umetni Stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Instaliraj {0} sa Marketplace"
@@ -13055,7 +13102,7 @@ msgstr "Instrukcije Poslane e-poštom"
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan Nivo Dozvola za {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljne Dozvole za {0}"
@@ -13171,7 +13218,7 @@ msgid "Invalid"
msgstr "Nevažeći"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13181,7 +13228,7 @@ msgstr "Nevažeći izraz \"depends_on\""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Nevažeći izraz \"mandatory_depends_on\""
@@ -13225,12 +13272,12 @@ msgstr "Nevažeći Doctype"
msgid "Invalid Fieldname"
msgstr "Nevažeći Naziv Polja"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Nevažeći URL Datoteke"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Nevažeći Filter"
@@ -13284,7 +13331,7 @@ msgstr "Nevažeći Server Odlazne Pošte ili port: {0}"
msgid "Invalid Output Format"
msgstr "Nevažeći Izlazni Format"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Nevažeće Nadjačavanje"
@@ -13298,11 +13345,11 @@ msgstr "Nevažeći Parametri."
msgid "Invalid Password"
msgstr "Nevažeća Lozinka"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Nevažeći Broj Telefona"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Nevažeći Zahtjev"
@@ -13319,7 +13366,7 @@ msgstr "Nevažeći Naziv Polja Tabele"
msgid "Invalid Transition"
msgstr "Nevažeća Tranzicija"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13342,7 +13389,7 @@ msgstr "Nevažeća Tajna Webhooka"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator."
@@ -13350,19 +13397,19 @@ msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator
msgid "Invalid app"
msgstr "Nevažeća aplikacija"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodni niz literali ili jednostavna imena polja."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Nevažeći tip argumenta: {0}. Dozvoljeni su samo nizovi, brojevi i None."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Nevažeći znakovi u nazivu polja: {0}. Dozvoljeni su samo slova, brojevi i podvlake."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Nevažeći znakovi u nazivu tabele: {0}"
@@ -13370,11 +13417,11 @@ msgstr "Nevažeći znakovi u nazivu tabele: {0}"
msgid "Invalid column"
msgstr "Nevažeća kolona"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
@@ -13390,23 +13437,23 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, sa povratnim ukrštanjem, kvalifikovani tabelom, aliasirani ili sa '*'."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja."
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "Nevažeći tip polja: {0}"
@@ -13418,11 +13465,11 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
msgid "Invalid file path: {0}"
msgstr "Nevažeći put datoteke: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka."
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'."
@@ -13430,11 +13477,11 @@ msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fiel
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None."
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr "Nevažeći format rječnika funkcija"
@@ -13471,23 +13518,27 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "Nevažeći Zahtjev"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr "Nevažeća uloga"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "Nevažeći format jednostavnog filtera: {0}"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka."
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr "Nevažeći format niza literala: {0}"
@@ -13591,7 +13642,7 @@ msgstr "Je Kalendar i Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Je Podređena Tabela"
@@ -13644,6 +13695,10 @@ msgstr "Je Mapa"
msgid "Is Global"
msgstr "Je Globalno"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Grupa"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13670,8 +13725,13 @@ msgstr "Je Opciono Stanje"
msgid "Is Primary"
msgstr "Je Primarno"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "Primarna Adresa"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Je Primarni Kontakt"
@@ -13727,7 +13787,7 @@ msgstr "Je li Podešavanje Završeno?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Je Sam"
@@ -13763,7 +13823,7 @@ msgstr "Je Standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Je Podnošljiv"
@@ -13969,11 +14029,11 @@ msgstr "Kolona Oglasne Table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Naziv Oglasne Table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Postavke Oglasne Table"
@@ -14263,7 +14323,7 @@ msgstr "Oznaka je obavezna"
msgid "Landing Page"
msgstr "Početna Stranica"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Pejzaž"
@@ -14271,10 +14331,13 @@ msgstr "Pejzaž"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Jezik"
@@ -14362,8 +14425,12 @@ msgstr "Prošli Mjesec"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Prezime"
@@ -14509,7 +14576,7 @@ msgstr "Dužina"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Dužina proslijeđenog niza podataka veća je od vrijednosti maksimalno dopuštenih bodova oznake!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Dužina {0} bi trebala biti između 1 i 1000"
@@ -14559,7 +14626,7 @@ msgstr "Pismo"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14587,7 +14654,7 @@ msgstr "Naziv Zaglavlja"
msgid "Letter Head Scripts"
msgstr "Skripte Zaglavlja"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Zaglavlje ne može biti istovremeno onemogućeno i standard"
@@ -14604,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Nivo"
@@ -14897,7 +14964,7 @@ msgstr "Filter Liste"
msgid "List Settings"
msgstr "Postavke Liste"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Postavke Liste"
@@ -14948,7 +15015,7 @@ msgid "Load Balancing"
msgstr "Load Balancing"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Učitaj Još"
@@ -14968,7 +15035,7 @@ msgstr "Učitaj više"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Učitava se"
@@ -15111,7 +15178,7 @@ msgstr "Kod Potvrdu Prijave od {}"
msgid "Login and view in Browser"
msgstr "Prijavi se i pregledaj u Pretraživaču"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste"
@@ -15119,7 +15186,7 @@ msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {
msgid "Login link sent to your email"
msgstr "Veza za prijavu poslana je na vašu e-poštu"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Prijava trenutno nije dozvoljena"
@@ -15172,7 +15239,7 @@ msgstr "Prijavi se putem veze e-pošte"
msgid "Login with email link expiry (in minutes)"
msgstr "Prijava se sa istekom veze e-pošte (u minutama)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena."
@@ -15191,7 +15258,7 @@ msgstr "URI Logotipa"
msgid "Logout"
msgstr "Odjava"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Odjava sa Svih Sesija"
@@ -15295,7 +15362,10 @@ msgid "Major"
msgstr "Velika"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Neka \"ime\" bude pretraživo u Globalnoj Pretrazi"
@@ -15371,7 +15441,7 @@ msgstr "Obavezno Zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno Zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezne informacije:"
@@ -15383,11 +15453,11 @@ msgstr "Obavezno polje: postavi ulogu za"
msgid "Mandatory field: {0}"
msgstr "Obavezno polje: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Obavezna polja u tabeli {0}, red {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Obavezna polja nedostaju u {0}"
@@ -15569,7 +15639,7 @@ msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}"
msgid "Maximum"
msgstr "Maksimum"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Maksimalna Granica Priloga {0} je dostignuta za {1} {2}."
@@ -15593,7 +15663,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15812,7 +15882,7 @@ msgstr "Metoda"
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Metoda je potrebna za kreiranje numeričke kartice"
@@ -15828,6 +15898,11 @@ msgstr "Sredina Centar"
msgid "Middle Name"
msgstr "Srednje Ime"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "Srednje Ime (Opciono)"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15898,7 +15973,7 @@ msgstr "Nedostaje DocType"
msgid "Missing Field"
msgstr "Nedostaje Polje"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Nedostajuća Polja"
@@ -15934,6 +16009,11 @@ msgstr "Mobilni Broj"
msgid "Mobile No"
msgstr "Mobilni Broj"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Mobilni Broj"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15959,7 +16039,7 @@ msgstr "Modalni Okidač"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16135,10 +16215,12 @@ msgstr "Više Informacija"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Više Informacija"
@@ -16168,7 +16250,7 @@ msgstr "Najvjerovatnije je vaša lozinka predugačka."
msgid "Move"
msgstr "Premjesti"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Premjesti u"
@@ -16204,7 +16286,7 @@ msgstr "Premjesti sekciju na novu karticu"
msgid "Move the current field and the following fields to a new column"
msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Pomjeri na Red Broj"
@@ -16254,7 +16336,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti tipa \"Priloži Sliku\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za pristup ovom izvještaju."
@@ -16272,7 +16354,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16312,7 +16394,7 @@ msgstr "NAPOMENA: Ovo polje je zbog starih postavki. Ponovo podesite LDAP za rad
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16416,12 +16498,12 @@ msgstr "Šablon Navigacijske Trake"
msgid "Navbar Template Values"
msgstr "Vrijednosti Šablona Navigacijske Trake"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Kreći se po listi prema dolje"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Kreći se po listi prema gore"
@@ -16436,6 +16518,10 @@ msgstr "Idi na glavni sadržaj"
msgid "Navigation Settings"
msgstr "Postavke Navigacije"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "Trebate pomoć?"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika"
@@ -16444,7 +16530,7 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r
msgid "Negative Value"
msgstr "Negativna Vrijednost"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Ugniježđeni filteri moraju biti dati kao lista ili torka."
@@ -16457,6 +16543,12 @@ msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora."
msgid "Network Printer Settings"
msgstr "Postavke Mrežnog Pisača"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "Nikad"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16465,7 +16557,7 @@ msgstr "Postavke Mrežnog Pisača"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16526,7 +16618,7 @@ msgstr "Novi Događaj"
msgid "New Folder"
msgstr "Nova Mapa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Nova Oglasna Tabla"
@@ -16561,7 +16653,7 @@ msgstr "Nova Numerička Kartica"
msgid "New Onboarding"
msgstr "Nova Introdukcija"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nova Lozinka"
@@ -16659,7 +16751,7 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Novi {0}"
@@ -16811,7 +16903,7 @@ msgstr "Sljedeća na Klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16916,7 +17008,7 @@ msgstr "Nije Navedeno Ime za {0}"
msgid "No New notifications"
msgstr "Nema Novih obavještenja"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Nema Navedenih Dozvola"
@@ -16960,7 +17052,7 @@ msgstr "Nema Rezultata"
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Nije Pronađeno Odabirno Polje"
@@ -16968,7 +17060,7 @@ msgstr "Nije Pronađeno Odabirno Polje"
msgid "No Suggestions"
msgstr "Nema Prijedloga"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Nema Oznaka"
@@ -17044,7 +17136,7 @@ msgstr "Nema adresa e-pošte za pozivnicu"
msgid "No failed logs"
msgstr "Nema neuspjelih zapisa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"."
@@ -17068,7 +17160,7 @@ msgstr "Nema daljnjih zapisa"
msgid "No matching records. Search something new"
msgstr "Nema podudarnih zapisa. Traži nešto novo"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Nema više artikala za prikaz"
@@ -17112,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Nema dozvole za '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Nema dozvole za čitanje {0}"
@@ -17124,7 +17216,7 @@ msgstr "Nema dozvole za {0} {1} {2}"
msgid "No records deleted"
msgstr "Nema izbrisanih zapisa"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Nema zapisa u {0}"
@@ -17160,11 +17252,11 @@ msgstr "Bez {0}"
msgid "No {0} Found"
msgstr "Nije pronađeno {0}"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Nije pronađeno {0}"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obriši filtere da vidite sve {0}."
@@ -17173,7 +17265,7 @@ msgid "No {0} mail"
msgstr "Nema {0} pošte"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Broj."
@@ -17237,7 +17329,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17263,9 +17355,9 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17284,7 +17376,7 @@ msgstr "Nije Objavljeno"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17335,7 +17427,7 @@ msgstr "Nije aktivno"
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa"
@@ -17367,12 +17459,12 @@ msgstr "Nije u načinu rada za programere"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili napravi 'Prilagođen' DocType."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17418,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a ši
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Napomena: Ovo će biti podijeljeno s korisnikom."
@@ -17490,15 +17582,15 @@ msgstr "Obavijest Pretplaćeni Dokument"
msgid "Notification sent to"
msgstr "Obavještenje je poslano za"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona"
@@ -17612,7 +17704,7 @@ msgstr "Broj Upita"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Broj Sigurnosnih Kopija mora biti veći od nule."
@@ -17884,7 +17976,7 @@ msgstr "Introdukcija Završena"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti."
@@ -17973,11 +18065,11 @@ msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja"
msgid "Only reports of type Report Builder can be edited"
msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "Samo Administrator može izbrisati standardni DocType."
@@ -18073,7 +18165,7 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorite stavku liste"
@@ -18122,7 +18214,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
@@ -18168,6 +18260,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18176,6 +18269,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Opcije"
@@ -18205,7 +18299,7 @@ msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednost
msgid "Options is required for field {0} of type {1}"
msgstr "Opcije su potrebne za polje {0} tipa {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za polje veze {0}"
@@ -18221,7 +18315,7 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Red"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "Sortiraj Po mora biti niz"
@@ -18237,7 +18331,7 @@ msgstr "Istorija"
msgid "Org History Heading"
msgstr "Naslov Istorije Organizacije"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orijentacija"
@@ -18319,7 +18413,7 @@ msgstr "ZAKRPA"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18352,10 +18446,6 @@ msgstr "PDF Širina Stranice (u mm)"
msgid "PDF Settings"
msgstr "PDF Postavke"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr "PDF se ne može učitati, sadrži nesiguran sadržaj"
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "PDF Generisanje nije uspjelo"
@@ -18567,7 +18657,7 @@ msgstr "Nadređeni DocType"
msgid "Parent Document Type"
msgstr "Nadređeni Tip Dokumenta"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Nadređeni Dokument Tip je obavezan za kreiranje numeričke kartice"
@@ -18671,8 +18761,8 @@ msgstr "Pasivno"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18695,7 +18785,7 @@ msgstr "Poništavanje Lozinke"
msgid "Password Reset Link Generation Limit"
msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Lozinka se ne može filtrirati"
@@ -18732,7 +18822,7 @@ msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
msgid "Password set"
msgstr "Lozinka postavljena"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
@@ -18744,7 +18834,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
msgid "Passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
@@ -18895,7 +18985,7 @@ msgstr "Trajno Podnesi {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Greška Dozvole"
@@ -18955,16 +19045,16 @@ msgstr "Tip Dozvole"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Greška Dozvola"
@@ -19026,15 +19116,18 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19047,11 +19140,11 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Broj Telefona."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19133,11 +19226,11 @@ msgstr "Zamoli administratora da potvrdi vašu registraciju"
msgid "Please attach a file first."
msgstr "Priloži datoteku."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Priloži datoteku slike da postavite HTML za Podnožje."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje."
@@ -19149,7 +19242,7 @@ msgstr "Priloži Applikaciju"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}"
@@ -19189,7 +19282,7 @@ msgstr "Potvrdi akciju {0} ovog dokumenta."
msgid "Please contact your system manager to install correct version."
msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Kreiraj Numeričku Karticu"
@@ -19205,11 +19298,11 @@ msgstr "Izbriši polje iz {0} ili dodaj traženi dokument."
msgid "Please do not change the template headings."
msgstr "Ne mijenjaj Naslove Šablona."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Kopiraj ovo da izvršite promjene"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP ili se prijavite putem veze e-pošte prije nego što onemogućite prijavu zasnovanu na korisničkom imenu/lozinki."
@@ -19218,7 +19311,7 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Omogući iskačuće prozore"
@@ -19333,7 +19426,7 @@ msgstr "Prvo spremi izvještaj"
msgid "Please save to edit the template."
msgstr "Spremi da uredite šablon."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Odaberi DocType"
@@ -19341,15 +19434,15 @@ msgstr "Odaberi DocType"
msgid "Please select Entity Type first"
msgstr "Odaberi Tip Entiteta"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Odaberi pozivni broj zemlje za polje {1}."
@@ -19373,7 +19466,7 @@ msgstr "Odaberi važeći filter datuma"
msgid "Please select applicable Doctypes"
msgstr "Odaberi primjenjive Dokumente"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje"
@@ -19403,7 +19496,7 @@ msgstr "Postavi adresu e-pošte"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19423,7 +19516,7 @@ msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne."
msgid "Please set the series to be used."
msgstr "Postavi seriju imenovanja koja će se koristiti."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki"
@@ -19538,7 +19631,7 @@ msgstr "Stavka Menija Portala"
msgid "Portal Settings"
msgstr "Postavke Portala"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Portret"
@@ -19566,6 +19659,7 @@ msgstr "Pošte"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Broj Pošte"
@@ -19574,7 +19668,7 @@ msgstr "Broj Pošte"
msgid "Posting Timestamp"
msgstr "Vremenska Oznaka"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "Potencijalno opasan sadržaj u niz literalu: {0}"
@@ -19589,6 +19683,10 @@ msgstr "Potencijalno opasan sadržaj u niz literalu: {0}"
msgid "Precision"
msgstr "Preciznost"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "Preciznost ({0}) za {1} ne može biti duža od njegove dužine ({2})."
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Preciznost bi trebala biti između 1 i 6"
@@ -19637,7 +19735,7 @@ msgstr "Analitika Pripremljenog Izvještaja"
msgid "Prepared Report User"
msgstr "Korisnik Pripremljenog Izvještaja"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
@@ -19772,13 +19870,13 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Ispiši"
@@ -19848,7 +19946,7 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "Format Ispisa nije pronađen"
@@ -19887,7 +19985,7 @@ msgstr "Sakrij ispis ako nema vrijednost"
msgid "Print Language"
msgstr "Jezik Ispisa"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Ispis Poslan na pisač!"
@@ -19905,7 +20003,7 @@ msgstr "Ispisni Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Postavke Ispisa"
@@ -20029,11 +20127,11 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Obrađuje se"
@@ -20050,11 +20148,21 @@ msgstr "Prof"
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "Slika Profila"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil uspješno ažuriran."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projekat"
@@ -20098,7 +20206,7 @@ msgstr "Tip Svojstva"
msgid "Protect Attached Files"
msgstr "Zaštiti Priložene Datoteke"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Zaštićena Datoteka"
@@ -20271,7 +20379,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR Kod za Provjeru Prijave"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Tray neuspješan:"
@@ -20478,7 +20586,7 @@ msgstr "Ocjena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Direktne Naredbe"
@@ -20604,11 +20712,11 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Obnovi"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Obnovi Stablo"
@@ -20989,8 +21097,8 @@ msgstr "Preporučitelj"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21021,13 +21129,13 @@ msgstr "Osvježi Pregled Ispisa"
msgid "Refresh Token"
msgstr "Osvježi Token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Osvježava se"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
@@ -21340,8 +21448,8 @@ msgstr "Odgovori Svima"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21412,11 +21520,11 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Naziv Izvještaja"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Naziv Izvještaja, Polje Izvještaja i Funkcija su obevezni za kreiranje numeričke kartice"
@@ -21450,21 +21558,21 @@ msgstr "Pregled iIvještaja"
msgid "Report bug"
msgstr "Prijavi Grešku"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Izvještaj se ne može postaviti za Singl tipove"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvještaja"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21484,7 +21592,7 @@ msgstr "Izvještaj je uspješno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izvještaj nije spremljen (bilo je grešaka)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
@@ -21520,7 +21628,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -21539,7 +21647,10 @@ msgid "Request Body"
msgstr "Zahtjev od"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Zatraži Podatke"
@@ -21591,6 +21702,11 @@ msgstr "Zahtjev Istekao"
msgid "Request URL"
msgstr "URL Zahtjeva"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "Zahtjev za Brisanje Računa"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21646,7 +21762,7 @@ msgstr "Poništi Prilagođavanja Nadzorne Table"
msgid "Reset Fields"
msgstr "Poništi Polja"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Poništi LDAP Lozinku"
@@ -21654,11 +21770,11 @@ msgstr "Poništi LDAP Lozinku"
msgid "Reset Layout"
msgstr "Poništi Izgled"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Poništi OTP Tajnu"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21693,7 +21809,7 @@ msgstr "Vrati na Standard"
msgid "Reset sorting"
msgstr "Poništi Sortiranje"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Vrati na Standard"
@@ -21833,7 +21949,7 @@ msgstr "Vratite se na ekran za provjeru i unesite kod koji prikazuje vaša aplik
msgid "Reverse Icon Color"
msgstr "Obrnute Boje Ikone"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine kao {3} će uzrokovati skraćivanje podataka."
@@ -21945,7 +22061,7 @@ msgstr "Dozvola Uloge za Stranicu i Izvještaj"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Dozvole Uloge"
@@ -21955,7 +22071,7 @@ msgstr "Dozvole Uloge"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
@@ -22100,7 +22216,7 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Red"
@@ -22108,12 +22224,12 @@ msgstr "Red"
msgid "Row #"
msgstr "Red #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22148,11 +22264,11 @@ msgstr "Vrijednosti Reda Promijenjene"
msgid "Row {0}"
msgstr "Red {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja"
@@ -22171,7 +22287,10 @@ msgid "Rows Removed"
msgstr "Ukonjeni Redovi"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "Prag redaka za Mrežu Pretraživanje"
@@ -22379,8 +22498,8 @@ msgstr "Subota"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22403,11 +22522,11 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Spremi Izvještaj"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Spremi Filtere"
@@ -22779,7 +22898,7 @@ msgstr "Sigurnosne Postavke"
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
@@ -22843,7 +22962,7 @@ msgstr "Odaberi"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Odaberi sve"
@@ -22864,7 +22983,7 @@ msgid "Select Column"
msgstr "Odaberi Kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Odaberi Kolone"
@@ -22923,7 +23042,7 @@ msgstr "Odaberi Polje"
msgid "Select Field..."
msgstr "Odaberi Polje..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Odaberi Polja"
@@ -23043,14 +23162,14 @@ msgid "Select a field to edit its properties."
msgstr "Odaberi polje da biste uredili njegova svojstva."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Odaberi Grupu."
+msgid "Select a group {0} first."
+msgstr "Odaberi grupu {0}."
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte"
@@ -23080,13 +23199,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis"
msgid "Select atleast 2 actions"
msgstr "Odaberi najmanje dvije radnje"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Odaberi Artikal Liste"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Odaberi artikle više listi"
@@ -23304,7 +23423,7 @@ msgstr "E-pošta Pošiljatelja"
msgid "Sender Email Field"
msgstr "Polje e-pošte Pošiljatelja"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
@@ -23408,7 +23527,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23474,7 +23593,7 @@ msgstr "Standard Sesije"
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23483,14 +23602,14 @@ msgstr "Sesija Istekla"
msgid "Session Expiry (idle timeout)"
msgstr "Istek Sesije (vremensko ograničenje mirovanja)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Istek Sesije mora biti u formatu {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Postavi"
@@ -23516,12 +23635,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Postavi zadane opcije za sve grafikone na ovoj Nadzornoj Tabli (npr. \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Postavi Dinamičke Filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23532,7 +23651,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23586,7 +23705,7 @@ msgstr "Postavi Količinu"
msgid "Set Role For"
msgstr "Postavi Ulogu za"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Postavi Korisničke Dozvole"
@@ -23605,7 +23724,7 @@ msgstr "Postavi sve privatno"
msgid "Set all public"
msgstr "Postavi sve javno"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Postavi kao Standard"
@@ -23624,18 +23743,21 @@ msgstr "Postavio Korisnik"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Postavi vrijednosti dinamičkog filtera u JavaScriptu za obavezna polja ovdje."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Postavi nestandardnu preciznost za Decimalu ili Valuta polje"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "Postavljanje nestandardne preciznosti za polje tipa Decimala, Valuta ili Postotak"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23769,7 +23891,7 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -23910,6 +24032,12 @@ msgstr "Prikaži Dokument"
msgid "Show Error"
msgstr "Prikaži Grešku"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "Prikaži upozorenje o eksternim linkovima"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)"
@@ -24038,7 +24166,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Prikaži ključ za prijavu na socijalnu mrežu kao server za autorizaciju"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Prikaži Oznake"
@@ -24245,36 +24373,36 @@ msgstr "Prijava Onemogućena"
msgid "Signups have been disabled for this website."
msgstr "Prijave su onemogućene za ovu web stranicu."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Jednostavan Python izraz, primjer: Status u (\"Closed\", \"Cancelled\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Jednostavan Python izraz, primjer: Status u (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "Jednostavan Python Izraz, Primjer: status == \"Invalid\""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Jednostavan Python Izraz, primjer: status == 'Open' i tip == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "Jednostavan Python Izraz, Primjer: status == 'Open' i issue_type == 'Bug'"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "Jednostavan Python Izraz, Primjer: status u (\"Closed\", \"Cancelled\")"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Simultane Sesije"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Pojedinačni DocTypes se ne mogu prilagoditi."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles"
@@ -24282,7 +24410,7 @@ msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vri
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 "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Veličina"
@@ -24542,7 +24670,7 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24609,8 +24737,8 @@ msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac.
msgid "Splash Image"
msgstr "Uvodna Slika"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Red"
@@ -24642,7 +24770,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "Standardni DocType se ne može izbrisati."
@@ -24658,7 +24786,7 @@ msgstr "Standard nije Postavljeno"
msgid "Standard Permissions"
msgstr "Standard Dozvole"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Standard Ispis Format ne može se ažurirati"
@@ -24776,6 +24904,7 @@ msgstr "Počinje"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24911,7 +25040,7 @@ msgstr "Koraci za provjeru vaše prijave"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "Sticky"
@@ -24941,7 +25070,7 @@ msgstr "Korištenje Pohrane po Tabelama"
msgid "Store Attached PDF Document"
msgstr "Pohrani priloženi PDF Dokument"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "Sačuvajte API tajnu na sigurnom mjestu. Neće biti više prikazivana."
@@ -25039,7 +25168,7 @@ msgstr "Predmet"
msgid "Subject Field"
msgstr "Polje Predmeta"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta"
@@ -25053,6 +25182,7 @@ msgstr "Red Podnošenja"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25061,10 +25191,11 @@ msgstr "Red Podnošenja"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Rezerviši"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Rezerviši"
@@ -25074,7 +25205,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Pošalji"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Pošalji"
@@ -25122,7 +25253,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
msgid "Submit this document to confirm"
msgstr "Pošalji ovaj dokument da potvrdite"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Pošalji {0} dokumenata?"
@@ -25172,7 +25303,7 @@ msgstr "Podnaziv"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25387,7 +25518,7 @@ msgstr "Sinhronizacija u toku"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizira se {0} od {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Greška Sintakse"
@@ -25698,7 +25829,7 @@ msgstr "Višestruki Odabir Tabele"
msgid "Table Trimmed"
msgstr "Tabela Optimizirana"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabela Ažurirana"
@@ -25915,7 +26046,7 @@ msgstr "Hvala"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -25932,7 +26063,7 @@ msgstr "ID klijenta dobijen sa Google Cloud Console pod "
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
-msgstr "Izvještaj koji ste tražili je generiran.
Kliknite ovdje za preuzimanje:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "Izvještaj koji ste tražili je generiran.
Kliknite ovdje za preuzimanje:
{0}
Ovaj link će isteći za {1} sati."
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
@@ -26101,7 +26232,7 @@ msgstr "Veza za poništavanje lozinke je istekla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26113,7 +26244,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Odabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26174,12 +26305,12 @@ msgstr "Nema predstojećih događaja za vas."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice"
@@ -26203,11 +26334,11 @@ msgstr "Ne postoji zadatak pod nazivom \"{}\""
msgid "There is nothing new to show you right now."
msgstr "Trenutno nema ništa novo za pokazati."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Postoji neki problem sa urlom datoteke: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26219,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole."
msgid "There was an error building this page"
msgstr "Došlo je do greške pri izradi ove stranice"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Došlo je do greške prilikom spremanja filtera"
@@ -26276,7 +26407,7 @@ msgstr "Autentifikacija Trećeih Strane"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Ova Oglasna Tabla će biti privatna"
@@ -26284,6 +26415,10 @@ msgstr "Ova Oglasna Tabla će biti privatna"
msgid "This Month"
msgstr "Ovaj Mjesec"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "Ovaj PDF se ne može prenijeti jer sadrži nesiguran sadržaj."
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Ovaj Kvartal"
@@ -26309,6 +26444,11 @@ msgstr "Ova radnja je dozvoljena samo za {}"
msgid "This cannot be undone"
msgstr "Ovo se ne može poništiti"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "Ova kartica je prema standard postavkama vidljiva samo administratoru i odgovornim sistema. Postavite DocType za dijeljenje s korisnicima koji imaju pristup za čitanje."
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26327,7 +26467,7 @@ msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26373,7 +26513,7 @@ msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrij
"eval:doc.myfield=='Moja Vrijednost'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati."
@@ -26408,7 +26548,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo ide iznad projekcije slajdova."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26458,7 +26598,7 @@ msgstr "Ovo se može ispisati na više stranica"
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26466,7 +26606,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa
msgid "This report was generated on {0}"
msgstr "Ovaj izvještaj je generisan {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -26608,9 +26748,11 @@ msgstr "Vremenski Prozor (Sekunde)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26877,7 +27019,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok
msgid "To generate password click {0}"
msgstr "Za generiranje lozinke kliknite na {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -26952,7 +27094,7 @@ msgstr "Uključi Prikaz Mreže"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
@@ -27078,7 +27220,7 @@ msgstr "Tema"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Ukupno"
@@ -27201,7 +27343,7 @@ msgstr "Prati prekretnice za bilo koji dokument"
msgid "Tracking"
msgstr "Praćenje"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL praćenja generisan i kopiran u međuspremnik"
@@ -27237,7 +27379,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27399,7 +27541,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27493,7 +27635,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL za dokumentaciju ili pomoć"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL mora početi s http:// ili https://"
@@ -27596,7 +27738,7 @@ msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zad
msgid "Unable to update event"
msgstr "Nije moguće ažurirati događaj"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Nije moguće napisati format datoteke za {0}"
@@ -27605,7 +27747,7 @@ msgstr "Nije moguće napisati format datoteke za {0}"
msgid "Unassign Condition"
msgstr "Poništi Dodjelu Uslova"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
@@ -27621,7 +27763,7 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr "Neizbjegnuti navodnici u niz literalu: {0}"
@@ -27670,7 +27812,7 @@ msgstr "Nepoznata Kolona: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznata Metoda Zaokruživanja: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Nepoznati Korisnik"
@@ -27736,8 +27878,8 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr "Otkazano"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}"
@@ -27771,7 +27913,7 @@ msgstr "Nadolazeći Događaji za Danas"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Ažuriraj"
@@ -27805,6 +27947,11 @@ msgstr "Redoslijed ažuriranja"
msgid "Update Password"
msgstr "Ažuriraj Lozinku"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "Ažuriraj Profil"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27863,7 +28010,7 @@ msgstr "Ažurirano na Novu Verziju 🎉"
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Ažuriranje"
@@ -28020,11 +28167,7 @@ msgstr "Koristi drugu e-poštu"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "Korištenje funkcije {0} u polju je ograničena"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Korištenje podupita ili funkcije je ograničena"
@@ -28246,12 +28389,12 @@ msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28395,7 +28538,7 @@ msgstr "Korisnik {0} predstavljen kao {1}"
msgid "User {0} is disabled"
msgstr "Korisnik {0} je onemogućen"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema."
@@ -28523,8 +28666,8 @@ msgstr "Validnost"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28556,7 +28699,7 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
@@ -28572,11 +28715,11 @@ msgstr "Vrijednost ne može biti negativna za {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Vrijednost polja za provjeru može biti 0 ili 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Vrijednost za {0} ne može biti lista"
@@ -28601,7 +28744,7 @@ msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, ta
msgid "Value to Validate"
msgstr "Vrijednost za Provjeru"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Vrijednost je Prevelika"
@@ -28693,7 +28836,7 @@ msgstr "Prikaži Sve"
msgid "View Audit Trail"
msgstr "Prikaži Trag"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Prikaz Doctype Dozvola"
@@ -28705,7 +28848,7 @@ msgstr "Prikaži datoteku"
msgid "View Full Log"
msgstr "Prikaži Cijeli Zapisnik"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Prikaži Listu"
@@ -28715,7 +28858,7 @@ msgstr "Prikaži Listu"
msgid "View Log"
msgstr "Prikaži Zapisnik"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Prikaži Dozvoljene Dokumente"
@@ -28831,6 +28974,7 @@ msgid "Warehouse"
msgstr "Skladište"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Upozorenje"
@@ -28925,7 +29069,7 @@ msgstr "Web Stranica"
msgid "Web Page Block"
msgstr "Blok Web Stranice"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL Web Stranice"
@@ -29315,7 +29459,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Pokrenut će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Sa Zaglavljem"
@@ -29476,7 +29620,7 @@ msgstr "Radni Tok je uspješno ažuriran"
msgid "Workspace"
msgstr "Radni Prostor"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "Radni Prostor {0} ne postoji"
@@ -29569,7 +29713,7 @@ msgstr "Završava se.."
msgid "Write"
msgstr "Piši"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Pogrešno Peuzimanje iz vrijednosti"
@@ -29598,7 +29742,7 @@ msgstr "Polja Ose Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y Polje"
@@ -29660,7 +29804,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29696,6 +29840,10 @@ msgstr "Dodali ste 1 red u {0}"
msgid "You added {0} rows to {1}"
msgstr "Dodali ste {0} redova u {1}"
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "Upravo ćete otvoriti eksterni link. Za potvrdu, ponovo kliknite na link."
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Povezani ste na internet."
@@ -29734,12 +29882,12 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
@@ -29747,7 +29895,7 @@ msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
msgid "You are not allowed to send emails related to this document"
msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -29820,11 +29968,11 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Ograničenje možete povećati u Postavkama Sistema."
@@ -29874,11 +30022,11 @@ msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima."
msgid "You can use wildcard %"
msgstr "Možete koristiti zamjenski znak %"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Ne možete postaviti 'Opcije' za polje {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Ne možete postaviti 'Prevodivo' za polje {0}"
@@ -29896,7 +30044,7 @@ msgstr "Otkazali ste ovaj dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}"
@@ -29939,15 +30087,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dozvolu za pristup polju: {0}"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29959,11 +30107,11 @@ msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup Izvještaju: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovoj datoteci"
@@ -29983,7 +30131,7 @@ msgstr "Imate novu poruku od:"
msgid "You have been successfully logged out"
msgstr "Uspješno ste odjavljeni"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}"
@@ -30011,7 +30159,7 @@ msgstr "Niste vidjeli {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "{0} nema u sistemu"
@@ -30028,11 +30176,11 @@ msgstr "Zadnji put ste uređivali ovo"
msgid "You must add atleast one link."
msgstr "Morate dodati barem jednu vezu."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
@@ -30056,7 +30204,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama."
@@ -30147,6 +30295,10 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "Bit ćete preusmjereni na:"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr "Pozvani ste da se pridružite {0}"
@@ -30192,7 +30344,7 @@ msgstr "Vaše Prečice"
msgid "Your account has been deleted"
msgstr "Vaš Račun je izbrisan"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi"
@@ -30254,11 +30406,11 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr "Vaš izvještaj se generira u pozadini. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "Vaš izvještaj se generira u pozadini. Primit ćete e-poruku na {0} s linkom za preuzimanje kada bude spreman."
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -30566,7 +30718,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "oznaka"
@@ -30595,7 +30747,7 @@ msgstr "lista"
msgid "logged in"
msgstr "prijavljen"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "prijava_potrebna"
@@ -30933,7 +31085,7 @@ msgstr "putem Uvoza Podataka"
msgid "via Google Meet"
msgstr "putem Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "putem Obavijesti"
@@ -31043,7 +31195,7 @@ msgstr "{0} Grafikon"
msgid "{0} Dashboard"
msgstr "{0} Nadzorna Tabla"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31084,7 +31236,7 @@ msgstr "{0} Karta"
msgid "{0} Name"
msgstr "{0} Naziv"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
@@ -31094,7 +31246,7 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
msgid "{0} Report"
msgstr "{0} Izvještaj"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} Izvještaja"
@@ -31150,7 +31302,7 @@ msgstr "{0} i {1}"
msgid "{0} are currently {1}"
msgstr "{0} su trenutno {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} su obavezni"
@@ -31167,7 +31319,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} priloženo {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} ne može biti više od {1}"
@@ -31244,7 +31396,7 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}"
@@ -31289,7 +31441,7 @@ msgstr "{0} u redu {1} ne može imati i URL i podređene artikle"
msgid "{0} is a mandatory field"
msgstr "{0} je obavezno polje"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} nije važeća zip datoteka"
@@ -31338,7 +31490,7 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezan"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr "{0} nije podređena tabela od {1}"
@@ -31358,12 +31510,12 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar."
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća adresa e-pošte"
@@ -31371,11 +31523,11 @@ msgstr "{0} nije važeća adresa e-pošte"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} nije važeće Ime"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije ispravan broj telefona"
@@ -31395,7 +31547,7 @@ msgstr "{0} nije važeće nadređeno polje za {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} nije zip datoteka"
@@ -31419,7 +31571,7 @@ msgstr "{0} nije jedno od {1}"
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
@@ -31429,8 +31581,8 @@ msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je obavezan"
@@ -31443,7 +31595,7 @@ msgstr "{0} je postavljeno"
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
@@ -31500,11 +31652,11 @@ msgstr "{0} ne smije biti ni jedna od {1}"
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} se mora prvo postaviti"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
@@ -31529,11 +31681,11 @@ msgid "{0} not found"
msgstr "{0} nije pronađen"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} od {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
@@ -31583,7 +31735,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} removed {1} rows from {2}"
msgstr "{0} je uklonilo {1} redova iz {2}"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
@@ -31657,7 +31809,7 @@ msgstr "{0} do {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} ažurirano"
@@ -31693,11 +31845,11 @@ msgstr "{0} {1} dodano"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} dodan na Nadzornu Ploču {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\""
@@ -31717,11 +31869,11 @@ msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Red {1}"
@@ -31729,35 +31881,35 @@ msgstr "{0}, Red {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv"
@@ -31785,11 +31937,11 @@ msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Nisu postavljene osnovne dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}"
@@ -31809,7 +31961,7 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa"
@@ -31830,7 +31982,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je postavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
@@ -31866,11 +32018,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam
msgid "{} Complete"
msgstr "{} Završeno"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Možda nevažeći python kod.
{}"
@@ -31896,7 +32048,7 @@ msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}."
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datumski niz."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli."
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index 7ea58095cd..4b318d5c4f 100644
--- a/frappe/locale/cs.po
+++ b/frappe/locale/cs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -86,11 +86,11 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -140,11 +140,11 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr ""
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr ""
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr ""
@@ -231,7 +231,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -267,6 +267,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,11 +578,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -694,7 +709,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -713,7 +728,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -737,7 +752,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -823,7 +838,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -939,7 +954,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr ""
@@ -996,7 +1011,7 @@ msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1007,7 +1022,7 @@ msgstr ""
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1039,7 +1054,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1052,8 +1067,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1147,7 +1162,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1322,6 +1337,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1330,6 +1346,7 @@ msgstr ""
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr ""
@@ -1337,6 +1354,7 @@ msgstr ""
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1498,7 +1516,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1525,11 +1543,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1976,6 +1994,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2052,6 +2076,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2234,7 +2263,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2319,7 +2348,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2355,7 +2384,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2363,7 +2392,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2418,6 +2447,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2427,7 +2462,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2570,7 +2605,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2650,7 +2685,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2666,7 +2701,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2688,11 +2723,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3550,15 +3585,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3782,7 +3817,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3842,7 +3877,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3850,7 +3885,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3868,7 +3903,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3917,11 +3952,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3965,11 +4000,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4032,8 +4067,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4045,11 +4080,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4057,7 +4092,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4073,7 +4108,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4102,11 +4137,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4378,11 +4413,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4411,6 +4446,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4437,7 +4473,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4514,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4709,7 +4745,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4764,7 +4800,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4820,11 +4856,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4851,7 +4887,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5066,8 +5102,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5115,7 +5151,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5140,7 +5176,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5159,7 +5195,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5204,8 +5240,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5256,6 +5292,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5319,7 +5359,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5408,7 +5448,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5417,7 +5457,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5441,7 +5481,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5494,13 +5534,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5532,13 +5573,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5552,7 +5593,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5586,12 +5627,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5599,7 +5640,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5622,8 +5663,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5639,7 +5680,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5649,7 +5690,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5986,7 +6027,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6021,7 +6062,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6040,7 +6081,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6271,7 +6312,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6302,7 +6343,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6672,13 +6713,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6711,7 +6752,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6725,7 +6766,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6767,12 +6808,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6808,7 +6849,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6816,7 +6857,7 @@ msgstr ""
msgid "Deleted!"
msgstr ""
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7269,10 +7310,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7696,13 +7741,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7747,15 +7792,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7897,7 +7942,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7930,7 +7975,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8026,7 +8071,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8130,8 +8175,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8143,7 +8188,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8153,7 +8198,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8182,7 +8227,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8200,7 +8245,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8302,7 +8347,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8347,6 +8392,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8365,6 +8412,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8484,6 +8533,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8595,7 +8645,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8638,7 +8688,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8646,7 +8696,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9074,7 +9124,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9102,9 +9152,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9124,19 +9174,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9285,7 +9335,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9311,12 +9361,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9374,13 +9424,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9573,7 +9623,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9581,7 +9631,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9737,7 +9787,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9820,7 +9870,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9838,7 +9888,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9851,7 +9901,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9867,11 +9917,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9911,7 +9961,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9919,7 +9969,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9947,7 +9997,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10013,7 +10063,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10021,7 +10071,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10030,11 +10080,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10048,8 +10098,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10088,11 +10138,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10169,7 +10219,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10217,8 +10267,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10299,7 +10353,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10406,7 +10460,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10501,7 +10555,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10542,7 +10596,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10786,7 +10840,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10848,12 +10902,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10913,7 +10967,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10928,7 +10982,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11135,10 +11189,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11333,14 +11383,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11400,7 +11446,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11505,7 +11551,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11634,7 +11680,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11670,7 +11716,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11782,7 +11828,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11942,7 +11988,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12039,9 +12085,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12269,8 +12315,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12357,11 +12403,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12391,7 +12437,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12619,15 +12665,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12674,7 +12721,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12785,7 +12832,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12823,8 +12870,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12858,7 +12905,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12974,7 +13021,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12984,7 +13031,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13028,12 +13075,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13087,7 +13134,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13101,11 +13148,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13122,7 +13169,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13145,7 +13192,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13153,19 +13200,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13173,11 +13220,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13193,23 +13240,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13221,11 +13268,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13233,11 +13280,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13274,23 +13321,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13394,7 +13445,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13447,6 +13498,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Je skupina"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13473,8 +13528,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13530,7 +13590,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13566,7 +13626,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13772,11 +13832,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14066,7 +14126,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14074,10 +14134,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14165,8 +14228,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14312,7 +14379,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14362,7 +14429,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14390,7 +14457,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14407,7 +14474,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14700,7 +14767,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14751,7 +14818,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14771,7 +14838,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14914,7 +14981,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14922,7 +14989,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14975,7 +15042,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14994,7 +15061,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15098,7 +15165,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15174,7 +15244,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15186,11 +15256,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15372,7 +15442,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15396,7 +15466,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15615,7 +15685,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15631,6 +15701,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15701,7 +15776,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15737,6 +15812,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Mobilní číslo"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15762,7 +15842,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15938,10 +16018,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -15971,7 +16053,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16007,7 +16089,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16057,7 +16139,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16075,7 +16157,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16115,7 +16197,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16217,12 +16299,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16237,6 +16319,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16245,7 +16331,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16258,6 +16344,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16266,7 +16358,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16327,7 +16419,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16362,7 +16454,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16458,7 +16550,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16610,7 +16702,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16715,7 +16807,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16759,7 +16851,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16767,7 +16859,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16843,7 +16935,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16867,7 +16959,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16911,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16923,7 +17015,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16959,11 +17051,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16972,7 +17064,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17036,7 +17128,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17062,9 +17154,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17083,7 +17175,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17134,7 +17226,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17166,12 +17258,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17217,7 +17309,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17289,15 +17381,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17411,7 +17503,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17683,7 +17775,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17772,11 +17864,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17872,7 +17964,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17921,7 +18013,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17967,6 +18059,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17975,6 +18068,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18004,7 +18098,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18020,7 +18114,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18036,7 +18130,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18118,7 +18212,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18151,10 +18245,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18366,7 +18456,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18470,8 +18560,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18494,7 +18584,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18531,7 +18621,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18543,7 +18633,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18694,7 +18784,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18754,16 +18844,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18825,15 +18915,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18846,11 +18939,11 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18932,11 +19025,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18948,7 +19041,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -18988,7 +19081,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19004,11 +19097,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19017,7 +19110,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19132,7 +19225,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19140,15 +19233,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19172,7 +19265,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19202,7 +19295,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19222,7 +19315,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19337,7 +19430,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19365,6 +19458,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19373,7 +19467,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19388,6 +19482,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19436,7 +19534,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19571,13 +19669,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19647,7 +19745,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19686,7 +19784,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19704,7 +19802,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19828,11 +19926,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19849,11 +19947,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil byl úspěšně aktualizován."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19897,7 +20005,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20070,7 +20178,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20277,7 +20385,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20403,11 +20511,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20788,8 +20896,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20820,13 +20928,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21139,8 +21247,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21211,11 +21319,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21249,21 +21357,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21283,7 +21391,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21319,7 +21427,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21338,7 +21446,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21390,6 +21501,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21445,7 +21561,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21453,11 +21569,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21492,7 +21608,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21632,7 +21748,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21744,7 +21860,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21754,7 +21870,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21899,7 +22015,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21907,12 +22023,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21947,11 +22063,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21970,7 +22086,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22178,8 +22297,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22202,11 +22321,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22578,7 +22697,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22642,7 +22761,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22663,7 +22782,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22722,7 +22841,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22842,14 +22961,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22879,13 +22998,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23103,7 +23222,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23207,7 +23326,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23273,7 +23392,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23282,14 +23401,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23315,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23331,7 +23450,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23385,7 +23504,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23404,7 +23523,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23423,18 +23542,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23544,7 +23666,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23685,6 +23807,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23813,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24020,22 +24148,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24043,13 +24171,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24057,7 +24185,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24317,7 +24445,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24384,8 +24512,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24417,7 +24545,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24433,7 +24561,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24551,6 +24679,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24686,7 +24815,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24716,7 +24845,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24814,7 +24943,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24828,6 +24957,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24836,10 +24966,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24849,7 +24980,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24897,7 +25028,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24947,7 +25078,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25162,7 +25293,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25473,7 +25604,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25688,7 +25819,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25703,7 +25834,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25756,7 +25887,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25786,7 +25917,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25857,7 +25988,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25868,7 +25999,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25880,7 +26011,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25941,12 +26072,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25970,11 +26101,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25986,7 +26117,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26043,7 +26174,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26051,6 +26182,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26076,6 +26211,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26094,7 +26234,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26136,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26171,7 +26311,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26221,7 +26361,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26229,7 +26369,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26371,9 +26511,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26634,7 +26776,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26709,7 +26851,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26835,7 +26977,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26956,7 +27098,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26992,7 +27134,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27154,7 +27296,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27247,7 +27389,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27350,7 +27492,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27359,7 +27501,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27375,7 +27517,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27422,7 +27564,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27488,8 +27630,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27523,7 +27665,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27557,6 +27699,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27615,7 +27762,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27772,11 +27919,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -27998,12 +28141,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28147,7 +28290,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28275,8 +28418,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28308,7 +28451,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28324,11 +28467,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28353,7 +28496,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28445,7 +28588,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28457,7 +28600,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28467,7 +28610,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28583,6 +28726,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28677,7 +28821,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29067,7 +29211,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29228,7 +29372,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29321,7 +29465,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29350,7 +29494,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29412,7 +29556,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29448,6 +29592,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29486,12 +29634,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29499,7 +29647,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29572,11 +29720,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29626,11 +29774,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29648,7 +29796,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29691,15 +29839,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29711,11 +29859,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29735,7 +29883,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29763,7 +29911,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29780,11 +29928,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29808,7 +29956,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29899,6 +30047,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29944,7 +30096,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30006,11 +30158,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30318,7 +30470,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30347,7 +30499,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30685,7 +30837,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30795,7 +30947,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30836,7 +30988,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30846,7 +30998,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30902,7 +31054,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30919,7 +31071,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30996,7 +31148,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31041,7 +31193,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31090,7 +31242,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31110,12 +31262,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31123,11 +31275,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31147,7 +31299,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31171,7 +31323,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31181,8 +31333,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31195,7 +31347,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31252,11 +31404,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31281,11 +31433,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31335,7 +31487,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31409,7 +31561,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31445,11 +31597,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31469,11 +31621,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31481,35 +31633,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31537,11 +31689,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31561,7 +31713,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31582,7 +31734,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31618,11 +31770,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31648,7 +31800,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/da.po b/frappe/locale/da.po
index c1adce8574..3dcd25c897 100644
--- a/frappe/locale/da.po
+++ b/frappe/locale/da.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -86,11 +86,11 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' er ikke gyldig URL"
@@ -122,7 +122,7 @@ msgstr "0 - Udkast; 1 - Godkendt; 2 - Annulleret"
msgid "0 is highest"
msgstr "0 er højest"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Sandt & 0 = Falsk"
@@ -141,11 +141,11 @@ msgstr "1 Dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender Begivenhed synkroniseret."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Rapport"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 dag siden"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 time"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 time siden"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 minut siden"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 måned siden"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "1 sekund siden"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 uge siden"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 år siden"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "2 timer siden"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "2 måneder siden"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "2 uger siden"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "2 år siden"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 minutter siden"
@@ -232,7 +232,7 @@ msgstr "4 timer"
msgid "5 Records"
msgstr "5 Poster"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 dage siden"
@@ -270,6 +270,16 @@ msgstr "{0} er ikke gyldig URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -571,11 +581,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Et felt med navnet {0} findes allerede i {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "En fil med samme navn {} findes allerede"
@@ -697,7 +712,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -716,7 +731,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API Nøgler"
@@ -740,7 +755,7 @@ msgstr "API Anmodningslog"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -826,7 +841,7 @@ msgstr "Adgang Token"
msgid "Access Token URL"
msgstr "Adgang Token URL"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Adgang ikke tilladt fra denne IP Adresse"
@@ -942,7 +957,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Handlinger"
@@ -999,7 +1014,7 @@ msgstr "Aktivitet Log"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1010,7 +1025,7 @@ msgstr "Aktivitet Log"
msgid "Add"
msgstr "Tilføj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Tilføj / Fjern Kolonner"
@@ -1042,7 +1057,7 @@ msgstr "Tilføj Kant Nederst"
msgid "Add Border at Top"
msgstr "Tilføj Kant Øverst"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Tilføj kort til Oversigtspanel"
@@ -1055,8 +1070,8 @@ msgid "Add Child"
msgstr "Tilføj Underordnet"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1150,7 +1165,7 @@ msgstr "Tilføj Abonnenter"
msgid "Add Tags"
msgstr "Tilføj Tags"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Tilføj Tags"
@@ -1325,6 +1340,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1333,6 +1349,7 @@ msgstr "Adresse"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresselinje 1"
@@ -1340,6 +1357,7 @@ msgstr "Adresselinje 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresselinje 2"
@@ -1501,7 +1519,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1528,11 +1546,11 @@ msgstr "Advarsel"
msgid "Alerts and Notifications"
msgstr "Advarsler og Meddelelser"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1979,6 +1997,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2055,6 +2079,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2237,7 +2266,7 @@ msgstr ""
msgid "Apply"
msgstr "Anvend"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Anvend Tildelingsregel"
@@ -2322,7 +2351,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2358,7 +2387,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2366,7 +2395,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2421,6 +2450,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2430,7 +2465,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2573,7 +2608,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2653,7 +2688,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2669,7 +2704,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2691,11 +2726,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3553,15 +3588,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3785,7 +3820,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3845,7 +3880,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3853,7 +3888,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3871,7 +3906,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3920,11 +3955,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3968,11 +4003,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4035,8 +4070,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4048,11 +4083,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4060,7 +4095,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4076,7 +4111,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4105,11 +4140,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4381,11 +4416,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4414,6 +4449,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "By"
@@ -4440,7 +4476,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4517,24 +4553,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4712,7 +4748,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4767,7 +4803,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4823,11 +4859,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4854,7 +4890,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5069,8 +5105,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5118,7 +5154,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5143,7 +5179,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5162,7 +5198,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5207,8 +5243,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5259,6 +5295,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5322,7 +5362,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5411,7 +5451,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5420,7 +5460,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5444,7 +5484,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5497,13 +5537,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5535,13 +5576,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Skabe"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5555,7 +5596,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5589,12 +5630,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5602,7 +5643,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5625,8 +5666,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5642,7 +5683,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5652,7 +5693,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5989,7 +6030,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6024,7 +6065,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6043,7 +6084,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6274,7 +6315,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6305,7 +6346,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6675,13 +6716,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6714,7 +6755,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6728,7 +6769,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6770,12 +6811,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6811,7 +6852,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6819,7 +6860,7 @@ msgstr ""
msgid "Deleted!"
msgstr ""
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7272,10 +7313,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7699,13 +7744,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7750,15 +7795,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7900,7 +7945,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7933,7 +7978,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8029,7 +8074,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8133,8 +8178,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8146,7 +8191,7 @@ msgstr ""
msgid "Edit"
msgstr "Redigere"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Redigere"
@@ -8156,7 +8201,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Redigere"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Redigere"
@@ -8185,7 +8230,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8203,7 +8248,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8305,7 +8350,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8350,6 +8395,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8368,6 +8415,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-mail"
@@ -8487,6 +8536,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "E-mail"
@@ -8598,7 +8648,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8641,7 +8691,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8649,7 +8699,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9077,7 +9127,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9105,9 +9155,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9127,19 +9177,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9288,7 +9338,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9314,12 +9364,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9377,13 +9427,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9576,7 +9626,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9584,7 +9634,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9740,7 +9790,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9823,7 +9873,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9841,7 +9891,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9854,7 +9904,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9870,11 +9920,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9914,7 +9964,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9922,7 +9972,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9950,7 +10000,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10016,7 +10066,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10024,7 +10074,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10033,11 +10083,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10051,8 +10101,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10091,11 +10141,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10172,7 +10222,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10220,8 +10270,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10302,7 +10356,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10409,7 +10463,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10504,7 +10558,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10545,7 +10599,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10789,7 +10843,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10851,12 +10905,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10916,7 +10970,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10931,7 +10985,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11138,10 +11192,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11336,14 +11386,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11403,7 +11449,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11508,7 +11554,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11637,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11673,7 +11719,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11785,7 +11831,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11945,7 +11991,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12042,9 +12088,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12272,8 +12318,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12360,11 +12406,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12394,7 +12440,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12622,15 +12668,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12677,7 +12724,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12788,7 +12835,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12826,8 +12873,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12861,7 +12908,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12977,7 +13024,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12987,7 +13034,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13031,12 +13078,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13090,7 +13137,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13104,11 +13151,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13125,7 +13172,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13148,7 +13195,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13156,19 +13203,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13176,11 +13223,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13196,23 +13243,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13224,11 +13271,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13236,11 +13283,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13277,23 +13324,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13397,7 +13448,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13450,6 +13501,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Er Gruppe"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13476,8 +13531,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13533,7 +13593,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13569,7 +13629,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13775,11 +13835,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14069,7 +14129,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14077,10 +14137,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14168,8 +14231,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14315,7 +14382,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14365,7 +14432,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14393,7 +14460,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14410,7 +14477,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14703,7 +14770,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14754,7 +14821,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14774,7 +14841,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14917,7 +14984,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14925,7 +14992,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14978,7 +15045,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14997,7 +15064,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15101,7 +15168,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15177,7 +15247,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15189,11 +15259,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15375,7 +15445,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15399,7 +15469,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15618,7 +15688,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15634,6 +15704,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15704,7 +15779,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15740,6 +15815,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15765,7 +15845,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15941,10 +16021,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -15974,7 +16056,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16010,7 +16092,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16060,7 +16142,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16078,7 +16160,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16118,7 +16200,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16220,12 +16302,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16240,6 +16322,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16248,7 +16334,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16261,6 +16347,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16269,7 +16361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16330,7 +16422,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16365,7 +16457,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16461,7 +16553,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16613,7 +16705,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16718,7 +16810,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16762,7 +16854,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16770,7 +16862,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16846,7 +16938,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16870,7 +16962,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16914,7 +17006,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16926,7 +17018,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16962,11 +17054,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16975,7 +17067,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17039,7 +17131,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17065,9 +17157,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17086,7 +17178,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17137,7 +17229,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17169,12 +17261,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17220,7 +17312,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17292,15 +17384,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17414,7 +17506,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17686,7 +17778,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17775,11 +17867,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17875,7 +17967,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17924,7 +18016,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17970,6 +18062,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17978,6 +18071,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18007,7 +18101,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18023,7 +18117,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18039,7 +18133,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18121,7 +18215,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18154,10 +18248,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18369,7 +18459,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18473,8 +18563,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18497,7 +18587,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18534,7 +18624,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18546,7 +18636,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18697,7 +18787,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18757,16 +18847,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18828,15 +18918,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18849,11 +18942,11 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18935,11 +19028,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18951,7 +19044,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -18991,7 +19084,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19007,11 +19100,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19020,7 +19113,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19135,7 +19228,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19143,15 +19236,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19175,7 +19268,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19205,7 +19298,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19225,7 +19318,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19340,7 +19433,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19368,6 +19461,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19376,7 +19470,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19391,6 +19485,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19439,7 +19537,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19574,13 +19672,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19650,7 +19748,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19689,7 +19787,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19707,7 +19805,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19831,11 +19929,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19852,11 +19950,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr ""
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19900,7 +20008,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20073,7 +20181,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20280,7 +20388,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20406,11 +20514,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20791,8 +20899,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20823,13 +20931,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21142,8 +21250,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21214,11 +21322,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21252,21 +21360,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21286,7 +21394,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21322,7 +21430,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21341,7 +21449,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21393,6 +21504,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21448,7 +21564,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21456,11 +21572,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21495,7 +21611,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21635,7 +21751,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21747,7 +21863,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21757,7 +21873,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21902,7 +22018,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21910,12 +22026,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21950,11 +22066,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21973,7 +22089,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22181,8 +22300,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22205,11 +22324,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22581,7 +22700,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22645,7 +22764,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22666,7 +22785,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22725,7 +22844,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22845,14 +22964,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22882,13 +23001,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23106,7 +23225,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23210,7 +23329,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23276,7 +23395,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23285,14 +23404,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23318,12 +23437,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23334,7 +23453,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23388,7 +23507,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23407,7 +23526,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23426,18 +23545,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23547,7 +23669,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23688,6 +23810,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23816,7 +23944,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24023,22 +24151,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24046,13 +24174,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24060,7 +24188,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24320,7 +24448,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24387,8 +24515,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24420,7 +24548,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24436,7 +24564,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24554,6 +24682,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24689,7 +24818,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24719,7 +24848,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24817,7 +24946,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24831,6 +24960,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24839,10 +24969,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24852,7 +24983,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24900,7 +25031,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24950,7 +25081,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25165,7 +25296,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25476,7 +25607,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25691,7 +25822,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25706,7 +25837,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25759,7 +25890,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25789,7 +25920,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25860,7 +25991,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25871,7 +26002,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25883,7 +26014,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25944,12 +26075,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25973,11 +26104,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25989,7 +26120,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26046,7 +26177,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26054,6 +26185,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26079,6 +26214,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26097,7 +26237,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26139,7 +26279,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26174,7 +26314,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26224,7 +26364,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26232,7 +26372,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26374,9 +26514,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26637,7 +26779,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26712,7 +26854,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26838,7 +26980,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26959,7 +27101,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26995,7 +27137,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27157,7 +27299,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27250,7 +27392,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27353,7 +27495,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27362,7 +27504,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27378,7 +27520,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27425,7 +27567,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27491,8 +27633,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27526,7 +27668,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27560,6 +27702,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27618,7 +27765,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27775,11 +27922,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28001,12 +28144,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28150,7 +28293,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28278,8 +28421,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28311,7 +28454,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28327,11 +28470,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28356,7 +28499,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28448,7 +28591,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28460,7 +28603,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28470,7 +28613,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28586,6 +28729,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28680,7 +28824,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29070,7 +29214,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29231,7 +29375,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29324,7 +29468,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29353,7 +29497,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29415,7 +29559,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29451,6 +29595,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29489,12 +29637,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29502,7 +29650,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29575,11 +29723,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29629,11 +29777,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29651,7 +29799,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29694,15 +29842,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29714,11 +29862,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29738,7 +29886,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29766,7 +29914,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29783,11 +29931,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29811,7 +29959,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29902,6 +30050,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29947,7 +30099,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30009,11 +30161,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30321,7 +30473,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30350,7 +30502,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30688,7 +30840,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30798,7 +30950,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30839,7 +30991,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30849,7 +31001,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30905,7 +31057,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30922,7 +31074,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30999,7 +31151,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31044,7 +31196,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31093,7 +31245,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31113,12 +31265,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31126,11 +31278,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31150,7 +31302,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31174,7 +31326,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31184,8 +31336,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31198,7 +31350,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31255,11 +31407,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31284,11 +31436,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31338,7 +31490,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31412,7 +31564,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31448,11 +31600,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31472,11 +31624,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31484,35 +31636,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31540,11 +31692,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31564,7 +31716,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31585,7 +31737,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31621,11 +31773,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31651,7 +31803,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index d93c2e8eee..1511bfbf3b 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'In Listenansicht' ist für Feld {0} des Typs {1} nicht erlaubt"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}"
@@ -86,11 +86,11 @@ msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}"
msgid "'Recipients' not specified"
msgstr "Keine \"Empfänger\" angegeben"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0} ist keine gültige URL"
@@ -122,7 +122,7 @@ msgstr "0 - Entwurf; 1 - Gebucht; 2 - Storniert"
msgid "0 is highest"
msgstr "0 ist am höchsten"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Wahr & 0 = Falsch"
@@ -141,11 +141,11 @@ msgstr "1 Tag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender-Ereignis synchronisiert"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Bericht"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "vor 1 Tag"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 Stunde"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "vor einer Stunde"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "vor einer Minute"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "vor 1 Monat"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "vor 1 Sekunde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "vor einer Woche"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "vor einem Jahr"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "vor 2 Stunden"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "vor 2 Monaten"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "vor 2 Wochen"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "vor 2 Jahren"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "vor 3 Minuten"
@@ -232,7 +232,7 @@ msgstr "4 Stunden"
msgid "5 Records"
msgstr "5 Datensätze"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "vor 5 Tagen"
@@ -268,6 +268,16 @@ msgstr "{0} ist keine gültige URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Bitte nicht direkt bearbeiten, da es Ihr Formular durcheinander bringen kann. Benutzen Sie die Formularansicht und benutzerdefinierte Felder, um Eigenschaften zu setzen!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -752,11 +762,16 @@ msgstr "Der Name eines DocTypes sollte mit einem Buchstaben beginnen und darf nu
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Ein Feld mit dem Namen {0} existiert bereits in {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Eine Datei mit dem gleichen Namen {} existiert bereits"
@@ -878,7 +893,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -897,7 +912,7 @@ msgstr "API-Schlüssel und Geheimnis für die Interaktion mit dem Relay-Server.
msgid "API Key cannot be regenerated"
msgstr "API-Schlüssel kann nicht neu generiert werden"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -921,7 +936,7 @@ msgstr "API-Anfrage-Protokoll"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1007,7 +1022,7 @@ msgstr "Zugriffstoken"
msgid "Access Token URL"
msgstr "Zugriffstoken-URL"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Der Zugriff von dieser IP-Adresse aus ist nicht zulässig"
@@ -1123,7 +1138,7 @@ msgstr "Aktion {0} fehlgeschlagen auf {1} {2}. {3} ansehen."
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Aktionen"
@@ -1180,7 +1195,7 @@ msgstr "Aktivitätsprotokoll"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1191,7 +1206,7 @@ msgstr "Aktivitätsprotokoll"
msgid "Add"
msgstr "Hinzufügen"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Spalten hinzufügen / entfernen"
@@ -1223,7 +1238,7 @@ msgstr "Rand unten hinzufügen"
msgid "Add Border at Top"
msgstr "Rand oben hinzufügen"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Karte zum Dashboard hinzufügen"
@@ -1236,8 +1251,8 @@ msgid "Add Child"
msgstr "Unterpunkt hinzufügen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1331,7 +1346,7 @@ msgstr "Abonnenten hinzufügen"
msgid "Add Tags"
msgstr "Schlagworte hinzufügen"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Schlagworte hinzufügen"
@@ -1506,6 +1521,7 @@ msgstr "Zusätzliche Berechtigungen"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1514,6 +1530,7 @@ msgstr "Adresse"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresse Zeile 1"
@@ -1521,6 +1538,7 @@ msgstr "Adresse Zeile 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresse Zeile 2"
@@ -1682,7 +1700,7 @@ msgstr "Nach der Einreichung"
msgid "After Submit"
msgstr "Nach Buchen"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Das Feld Aggregatfunktion wird benötigt, um eine Nummernkarte zu erstellen"
@@ -1709,11 +1727,11 @@ msgstr "Hinweis"
msgid "Alerts and Notifications"
msgstr "Warnungen und Benachrichtigungen"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Alias darf kein SQL-Schlüsselwort sein: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Alias muss ein String sein"
@@ -2161,6 +2179,12 @@ msgstr "Hinzufügen des Statusabhängigkeitsfelds {0}"
msgid "Alternative Email ID"
msgstr "Alternative E-Mail-ID"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2237,6 +2261,11 @@ msgstr "Berichtigung nicht erlaubt"
msgid "Amendment naming rules updated."
msgstr "Benennungsregeln für Berichtigungen aktualisiert."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten"
@@ -2419,7 +2448,7 @@ msgstr "Angewandt auf"
msgid "Apply"
msgstr "Anwenden"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Zuweisungsregel anwenden"
@@ -2504,7 +2533,7 @@ msgstr "Archivierte Spalten"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?"
@@ -2540,7 +2569,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "Sind Sie sicher, dass Sie die Änderungen verwerfen möchten?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?"
@@ -2548,7 +2577,7 @@ msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Möchten Sie {0} wirklich mit {1} zusammenführen?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Sind Sie sicher, dass Sie fortfahren möchten?"
@@ -2603,6 +2632,12 @@ msgstr "Da die Freigabe von Dokumenten deaktiviert ist, erteilen Sie ihnen vor d
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "Wie von Ihnen gewünscht, wurden Ihr Konto und die Daten auf {0}, die mit der E-Mail {1} verbunden sind, endgültig gelöscht"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2612,7 +2647,7 @@ msgstr "Zuweisungsbedingung"
msgid "Assign To"
msgstr "Zuweisen an"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Zuweisen an"
@@ -2755,7 +2790,7 @@ msgstr "Zuordnungen"
msgid "Asynchronous"
msgstr "Asynchron"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Mindestens eine Spalte muss im Raster angezeigt werden."
@@ -2835,7 +2870,7 @@ msgstr "Angehängt an Feld"
msgid "Attached To Name"
msgstr "Angehängt an Dokument"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Angehängt an Name muss eine Zeichenfolge oder eine Ganzzahl sein"
@@ -2851,7 +2886,7 @@ msgstr "Anhang"
msgid "Attachment Limit (MB)"
msgstr "Anhangslimit (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Limit für Anhänge erreicht"
@@ -2873,11 +2908,11 @@ msgstr "Anlage entfernt"
msgid "Attachments"
msgstr "Anhänge"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Es wird versucht, eine Verbindung zum QZ-Fach herzustellen ..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Es wird versucht, QZ Tray zu starten ..."
@@ -3736,15 +3771,15 @@ msgstr "Stapel löschen"
msgid "Bulk Edit"
msgstr "Stapel bearbeiten"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Stapel-Bearbeitung {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Stapelverarbeitung fehlgeschlagen"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Stapelverarbeitung erfolgreich"
@@ -3968,7 +4003,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4028,7 +4063,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert."
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4036,7 +4071,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert."
msgid "Cancel"
msgstr "Abbrechen"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Stornieren"
@@ -4054,7 +4089,7 @@ msgstr "Alle stornieren"
msgid "Cancel All Documents"
msgstr "Alle Dokumente abbrechen"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Abbrechen von {0} Dokumenten?"
@@ -4103,11 +4138,11 @@ msgstr "Werte können nicht abgerufen werden"
msgid "Cannot Remove"
msgstr "Kann nicht entfernt werden."
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Kann nach dem Buchen nicht mehr geändert werden"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "Zugriff auf Dateipfad {0} nicht möglich"
@@ -4151,11 +4186,11 @@ msgstr "Kann {0} nicht gegen ein Kind Dokument erstellen: {1}"
msgid "Cannot create private workspace of other users"
msgstr "Privater Arbeitsbereich für andere Benutzer kann nicht erstellt werden"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Die Ordner \"Startseite\" und \"Anlagen\" können nicht gelöscht werden"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Kann nicht gelöscht oder abgebrochen werden, weil {0} {1} mit {2} {3} {4} verknüpft ist"
@@ -4218,8 +4253,8 @@ msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden"
msgid "Cannot edit filters for standard charts"
msgstr "Filter für Standarddiagramme können nicht bearbeitet werden"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Filter für Standardnummernkarten können nicht bearbeitet werden"
@@ -4231,11 +4266,11 @@ msgstr "Standardfelder können nicht bearbeitet werden"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "{0} kann nicht für einen nicht buchbaren Doctype aktiviert werden"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "Kann Datei {} auf der Festplatte nicht finden"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden"
@@ -4243,7 +4278,7 @@ msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden."
@@ -4259,7 +4294,7 @@ msgstr "Zuordnung nicht möglich, da folgende Bedingung nicht erfüllt ist:"
msgid "Cannot match column {0} with any field"
msgstr "Die Spalte {0} kann keinem Feld zugeordnet werden"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Zeile kann nicht verschoben werden"
@@ -4288,11 +4323,11 @@ msgstr "Kann {0} nicht buchen."
msgid "Cannot update {0}"
msgstr "Kann {0} nicht aktualisieren"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden"
@@ -4565,11 +4600,11 @@ msgstr "Untertabelle {0} für Feld {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4598,6 +4633,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Wählen Sie die Authentifizierungsmethode, die von allen Benutzern verwendet werden soll"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Ort"
@@ -4624,7 +4660,7 @@ msgstr "Leeren und Vorlage einfügen"
msgid "Clear All"
msgstr "Alles leeren"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Zuweisung löschen"
@@ -4701,24 +4737,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Klicken Sie auf {0}, um das Refresh Token zu generieren."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klicken Sie auf Tabelle bearbeiten"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Klicken Sie hier, um dynamische Filter einzustellen"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Klicken Sie, um Filter einzustellen"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Klicken, um nach {0} zu sortieren"
@@ -4896,7 +4932,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Zuklappen"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Alle zuklappen"
@@ -4951,7 +4987,7 @@ msgstr "Zusammenklappbar hängt ab von (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5007,11 +5043,11 @@ msgstr "Spaltenname"
msgid "Column Name cannot be empty"
msgstr "Spaltenname darf nicht leer sein"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Spaltenbreite"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Spaltenbreite darf nicht null sein."
@@ -5038,7 +5074,7 @@ msgstr "Spalten"
msgid "Columns / Fields"
msgstr "Spalten / Felder"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Spalten basierend auf"
@@ -5253,8 +5289,8 @@ msgstr "Komprimiert"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5302,7 +5338,7 @@ msgstr "Konfiguration"
msgid "Configure Chart"
msgstr "Diagramm konfigurieren"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Spalten konfigurieren"
@@ -5329,7 +5365,7 @@ msgstr "Legen Sie fest, wie berichtigte Dokumente benannt werden sollen.
\n\n
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Konfigurieren Sie verschiedene Aspekte der Funktionsweise der Dokumentbenennung, z. B. die Nummernkreise und den aktuellen Zähler."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Bestätigen"
@@ -5348,7 +5384,7 @@ msgstr "Zugang bestätigen"
msgid "Confirm Deletion of Account"
msgstr "Löschen des Kontos bestätigen"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Bestätige neues Passwort"
@@ -5393,8 +5429,8 @@ msgstr "Verbundene Anwendung"
msgid "Connected User"
msgstr "Verbundener Benutzer"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Verbunden mit QZ Tray!"
@@ -5445,6 +5481,10 @@ msgstr "Einschränkungen"
msgid "Contact"
msgstr "Kontakt"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5508,7 +5548,7 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5597,7 +5637,7 @@ msgstr "Fehler in die Zwischenablage kopieren"
msgid "Copy to Clipboard"
msgstr "In die Zwischenablage kopieren"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5606,7 +5646,7 @@ msgstr ""
msgid "Copyright"
msgstr "Copyright"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Core DocTypes können nicht angepasst werden."
@@ -5630,7 +5670,7 @@ msgstr "{0} konnte nicht gefunden werden"
msgid "Could not map column {0} to field {1}"
msgstr "Die Spalte {0} konnte dem Feld {1} nicht zugeordnet werden."
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "Feld konnte nicht geparst werden: {0}"
@@ -5683,13 +5723,14 @@ msgstr "Zähler"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Landesvorwahl erforderlich"
@@ -5721,13 +5762,13 @@ msgstr "H"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Erstellen"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Erstellen & Fortfahren"
@@ -5741,7 +5782,7 @@ msgid "Create Card"
msgstr "Karte erstellen"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Diagramm erstellen"
@@ -5775,12 +5816,12 @@ msgstr "Protokoll erstellen"
msgid "Create New"
msgstr "Neuen Eintrag erstellen"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Neuen Eintrag erstellen"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Neuen DocType erstellen"
@@ -5788,7 +5829,7 @@ msgstr "Neuen DocType erstellen"
msgid "Create New Kanban Board"
msgstr "Neue Kanban-Tafel erstellen"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Benutzer E-Mail erstellen"
@@ -5811,8 +5852,8 @@ msgstr "Erstellen Sie einen neuen Datensatz"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Neu erstellen: {0}"
@@ -5828,7 +5869,7 @@ msgstr "Druckformat erstellen oder bearbeiten"
msgid "Create or Edit Workflow"
msgstr "Workflow erstellen oder bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Erstelle deine erste {0}"
@@ -5838,7 +5879,7 @@ msgstr "Erstellen Sie Ihren Workflow visuell mit Hilfe des Workflow-Builders."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Erstellt"
@@ -6175,7 +6216,7 @@ msgstr "Benutzerdefinierte get_list-Methode für {0} muss ein QueryBuilder-Objek
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Benutzerdefiniert?"
@@ -6210,7 +6251,7 @@ msgstr "Anpassungen für {0} exportiert nach:
{1}"
msgid "Customize"
msgstr "Anpassen"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Anpassen"
@@ -6229,7 +6270,7 @@ msgstr "Dashboard anpassen"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Formular anpassen"
@@ -6460,7 +6501,7 @@ msgstr "Datenimportprotokoll"
msgid "Data Import Template"
msgstr "Vorlage für Datenimport"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Daten zu lang"
@@ -6491,7 +6532,7 @@ msgstr "Auslastung der Datenbankzeilengröße"
msgid "Database Storage Usage By Tables"
msgstr "Datenbankspeichernutzung nach Tabellen"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Begrenzung der Zeilengröße von Datenbanktabellen"
@@ -6861,13 +6902,13 @@ msgstr "Verzögert"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Löschen"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Löschen"
@@ -6900,7 +6941,7 @@ msgstr "Spalte löschen"
msgid "Delete Data"
msgstr "Daten löschen"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Kanban-Board löschen"
@@ -6914,7 +6955,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Registerkarte löschen"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Löschen und neu generieren"
@@ -6956,12 +6997,12 @@ msgstr "Registerkarte löschen"
msgid "Delete this record to allow sending to this email address"
msgstr "Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Element {0} endgültig löschen?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} Elemente dauerhaft löschen?"
@@ -6997,7 +7038,7 @@ msgstr "Gelöschte Dokumente"
msgid "Deleted Name"
msgstr "Gelöschte Namen"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Alle Dokumente erfolgreich gelöscht"
@@ -7005,7 +7046,7 @@ msgstr "Alle Dokumente erfolgreich gelöscht"
msgid "Deleted!"
msgstr "Gelöscht!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Löscht {0}"
@@ -7458,10 +7499,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Keinen neuen Benutzer anlegen, wenn der Benutzer mit E-Mail nicht im System vorhanden ist"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Wollen Sie trotzdem fortfahren?"
@@ -7887,13 +7932,13 @@ msgstr "Dokumenttitel"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Dokumententyp"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "Dokumententyp und Funktion werden benötigt, um eine Nummernkarte zu erstellen"
@@ -7938,15 +7983,15 @@ msgstr "Dokument entsperrt"
msgid "Document follow is not enabled for this user."
msgstr "Folgen von Dokumenten ist für diesen Benutzer nicht aktiviert."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Dokument wurde storniert"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Dokument wurde gebucht"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Das Dokument befindet sich im Entwurfsstatus"
@@ -8088,7 +8133,7 @@ msgstr "Donut"
msgid "Double click to edit label"
msgstr "Doppelklick zum Bearbeiten der Beschriftung"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8121,7 +8166,7 @@ msgstr "Download-Link"
msgid "Download PDF"
msgstr "PDF Herunterladen"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Bericht herunterladen"
@@ -8217,7 +8262,7 @@ msgstr "Duplizierter Eintrag"
msgid "Duplicate Filter Name"
msgstr "Doppelter Filtername"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Doppelter Name"
@@ -8321,8 +8366,8 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8334,7 +8379,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Bearbeiten"
@@ -8344,7 +8389,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Bearbeiten"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Bearbeiten"
@@ -8373,7 +8418,7 @@ msgstr "Benutzerdefiniertes HTML bearbeiten"
msgid "Edit DocType"
msgstr "DocType bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "DocType bearbeiten"
@@ -8391,7 +8436,7 @@ msgstr "Filter bearbeiten"
msgid "Edit Footer"
msgstr "Fußzeile bearbeiten"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Format bearbeiten"
@@ -8493,7 +8538,7 @@ msgstr "Bearbeiten {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Editierbares Raster"
@@ -8538,6 +8583,8 @@ msgstr "Element Selektor"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8556,6 +8603,8 @@ msgstr "Element Selektor"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-Mail"
@@ -8675,6 +8724,7 @@ msgid "Email IDs"
msgstr "E-Mail-Adressen"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "E-Mail-Adresse"
@@ -8786,7 +8836,7 @@ msgstr "E-Mail wurde als Spam markiert"
msgid "Email has been moved to trash"
msgstr "E-Mail wurde in den Papierkorb geworfen"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "E-Mail ist obligatorisch, um Benutzer-E-Mails zu erstellen"
@@ -8829,7 +8879,7 @@ msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet"
msgid "Embed code copied"
msgstr "Einbettungscode kopiert"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Leerer Alias ist nicht erlaubt"
@@ -8837,7 +8887,7 @@ msgstr "Leerer Alias ist nicht erlaubt"
msgid "Empty column"
msgstr "Leere Spalte"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Leere String-Argumente sind nicht zulässig"
@@ -9266,7 +9316,7 @@ msgstr "Fehlerprotokolle"
msgid "Error Message"
msgstr "Fehlermeldung"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Fehler beim Verbinden mit der QZ-Tray-Anwendung ...
Sie müssen die QZ Tray-Anwendung installiert haben und ausführen, um die Raw Print-Funktion verwenden zu können.
Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über den Rohdruck zu erfahren ."
@@ -9294,9 +9344,9 @@ msgstr "Fehler im Client-Skript."
msgid "Error in Header/Footer Script"
msgstr "Fehler im Kopf-/Fußzeilenskript"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Fehler in der Benachrichtigung"
@@ -9316,19 +9366,19 @@ msgstr "Fehler beim Parsen verschachtelter Filter: {0}"
msgid "Error while connecting to email account {0}"
msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Fehler beim Auswerten der Benachrichtigung {0}. Bitte reparieren Sie Ihre Vorlage."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Fehler: Daten fehlen in Tabelle {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Fehler: Wert fehlt für {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Fehler: {0} Zeile {1}: Wert fehlt für: {2}"
@@ -9477,7 +9527,7 @@ msgstr "Code wird ausgeführt"
msgid "Executing..."
msgstr "Wird ausgeführt..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Ausführungszeit: {0} Sek"
@@ -9503,12 +9553,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Erweitern"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Alle ausklappen"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Erwartet 'and' oder 'or' Operator, gefunden: {0}"
@@ -9566,13 +9616,13 @@ msgstr "Ablaufzeit der QR-Code-Bildseite"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportieren"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportieren"
@@ -9612,7 +9662,7 @@ msgstr "Import-Log exportieren"
#: frappe/public/js/frappe/views/reports/report_utils.js:245
msgctxt "Export report"
msgid "Export Report: {0}"
-msgstr "Exportbericht: {0}"
+msgstr "Bericht exportieren: {0}"
#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
@@ -9765,7 +9815,7 @@ msgstr "Fehler beim Berechnen des Anfragekörpers: {}"
msgid "Failed to connect to server"
msgstr "Verbindung zum Server fehlgeschlagen"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Fehler beim Dekodieren des Tokens. Bitte geben Sie ein gültiges Base64-codiertes Token an."
@@ -9773,7 +9823,7 @@ msgstr "Fehler beim Dekodieren des Tokens. Bitte geben Sie ein gültiges Base64-
msgid "Failed to decrypt key {0}"
msgstr "Schlüssel {0} konnte nicht entschlüsselt werden"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Löschen von {0} Dokumenten fehlgeschlagen: {1}"
@@ -9929,7 +9979,7 @@ msgstr "Abrufen von Standarddokumenten der globalen Suche."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10012,7 +10062,7 @@ msgstr "Das Feld {0} bezieht sich auf einen nicht existierenden Doctype {1}."
msgid "Field {0} not found."
msgstr "Feld {0} nicht gefunden"
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch ein Kunden- oder Benutzerverknüpfung"
@@ -10030,7 +10080,7 @@ msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch e
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Feldname"
@@ -10043,7 +10093,7 @@ msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Feldname ist auf 64 Zeichen ({0})"
@@ -10059,11 +10109,11 @@ msgstr "Feldname, der der DocType für dieses Verknüpfungsfeld sein wird."
msgid "Fieldname {0} appears multiple times"
msgstr "Feldname {0} erscheint mehrfach"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Feldname {0} im Konflikt mit Meta-Objekt"
@@ -10103,7 +10153,7 @@ msgstr "Felder"
msgid "Fields Multicheck"
msgstr "Felder Multicheck"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein"
@@ -10111,7 +10161,7 @@ msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Felder müssen eine Liste oder ein Tupel sein, wenn as_list aktiviert ist"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10139,7 +10189,7 @@ msgstr "Feldtyp"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Feldtyp kann nicht von {0} auf {1} geändert werden"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden"
@@ -10205,7 +10255,7 @@ msgstr "Datei-URL"
msgid "File backup is ready"
msgstr "Dateisicherung ist bereit"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Der Dateiname darf nicht {0} haben"
@@ -10213,7 +10263,7 @@ msgstr "Der Dateiname darf nicht {0} haben"
msgid "File not attached"
msgstr "Datei nicht angehängt"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Dateigröße hat die maximal zulässige Größe von {0} MB überschritten"
@@ -10222,11 +10272,11 @@ msgstr "Dateigröße hat die maximal zulässige Größe von {0} MB überschritte
msgid "File too big"
msgstr "Datei zu groß"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Der Dateityp {0} ist nicht zulässig"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Datei {0} ist nicht vorhanden"
@@ -10240,8 +10290,8 @@ msgstr "Dateien"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10280,11 +10330,11 @@ msgstr "Name des Filters"
msgid "Filter Values"
msgstr "Werte filtern"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10361,7 +10411,7 @@ msgstr "Filterbereich"
msgid "Filters applied for {0}"
msgstr "Filter angewendet für {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filter gespeichert"
@@ -10409,8 +10459,12 @@ msgstr "Erster Wochentag"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Vorname"
@@ -10491,7 +10545,7 @@ msgstr "Ordnername"
msgid "Folder name should not include '/' (slash)"
msgstr "Ordnername sollte nicht '/' (Schrägstrich) enthalten"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Ordner {0} ist nicht leer"
@@ -10598,7 +10652,7 @@ msgstr "Fußzeile Details"
msgid "Footer HTML"
msgstr "Fußzeile HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "Fußzeilen-HTML aus Anhang {0} festgelegt"
@@ -10694,7 +10748,7 @@ msgstr "Für Benutzer"
msgid "For Value"
msgstr "Für Wert"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)."
@@ -10735,7 +10789,7 @@ msgstr "Bei mehreren Adressen geben Sie bitte jede Adresse in einer neuen Zeile
msgid "For updating, you can update only selective columns."
msgstr "Nur ausgewählte Spalten können aktualisiert werden"
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Für {0} auf der Ebene {1} in {2} in Zeile {3}"
@@ -10979,7 +11033,7 @@ msgstr "Von-Datum"
msgid "From Date Field"
msgstr "Von-Datum-Feld"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Vom Dokumenttyp"
@@ -11041,13 +11095,13 @@ msgstr "Funktion basiert auf"
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} ist nicht freigegeben."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Weitere Knoten können nur unter Knoten vom Typ \"Gruppe\" erstellt werden"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11106,7 +11160,7 @@ msgstr "Allgemein"
msgid "Generate Keys"
msgstr "Schlüssel generieren"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Neuen Bericht erstellen"
@@ -11121,7 +11175,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Tracking-URL generieren"
@@ -11328,10 +11382,6 @@ msgstr "Anonymisiere IP-Adressen für Google Analytics"
msgid "Google Calendar"
msgstr "Google-Kalender"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Kalender - Kontakt / E-Mail nicht gefunden. Teilnehmer wurde nicht hinzugefügt für -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalender - Kalender für {0}, Fehlercode {1} konnte nicht erstellt werden."
@@ -11526,14 +11576,10 @@ msgstr "Nach Typ gruppieren"
msgid "Group By field is required to create a dashboard chart"
msgstr "Das Feld Gruppieren nach ist erforderlich, um ein Dashboard-Diagramm zu erstellen"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Gruppen-Knoten"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11593,7 +11639,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11698,7 +11744,7 @@ msgstr "Kopfzeile"
msgid "Header HTML"
msgstr "HTML-Header"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "Header-HTML-Satz aus Anhang {0}"
@@ -11827,7 +11873,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Hier ist Ihre Tracking-URL"
@@ -11863,7 +11909,7 @@ msgstr "Versteckt"
msgid "Hidden Fields"
msgstr "Versteckte Felder"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Versteckte Spalten enthalten: {0}"
@@ -11975,7 +12021,7 @@ msgstr "Seitenleiste, Menü und Kommentare ausblenden"
msgid "Hide Standard Menu"
msgstr "Standardmenü ausblenden"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Schlagworte ausblenden"
@@ -12135,7 +12181,7 @@ msgstr "Vermutlich haben Sie noch keinen Zugang zu einem Arbeitsbereich, aber Si
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12232,9 +12278,9 @@ msgstr "Wenn eine strikte Benutzerberechtigung aktiviert ist und die Benutzerber
msgid "If Checked workflow status will not override status in list view"
msgstr "Falls diese Option aktiviert ist, wird der Workflow-Status nicht den Status in der Listenansicht überschreiben"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Wenn Inhaber"
@@ -12462,8 +12508,8 @@ msgstr "Ignorierte Apps"
msgid "Illegal Document Status for {0}"
msgstr "Illegaler Dokumentstatus für {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Ungültige SQL-Abfrage"
@@ -12550,11 +12596,11 @@ msgstr "Bilder"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Imitieren"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "{0} imitieren"
@@ -12584,7 +12630,7 @@ msgstr "Implizit"
msgid "Import"
msgstr "Importieren"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importieren"
@@ -12812,15 +12858,16 @@ msgstr "Thema aus Apps einschließen"
msgid "Include Web View Link in Email"
msgstr "Dokument Web View Link per E-Mail senden"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Filter einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Versteckte Spalten einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Einrückung einschließen"
@@ -12867,7 +12914,7 @@ msgstr "Falsches Konto für eingehende E-Mails"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Unvollständige Implementierung des virtuellen DocTypes"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Unvollständige Anmeldedaten"
@@ -12978,7 +13025,7 @@ msgstr "Darüber einfügen"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Einfügen nach"
@@ -13016,8 +13063,8 @@ msgstr "Stil einfügen"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "{0} aus Marketplace installieren"
@@ -13051,7 +13098,7 @@ msgstr "Anweisungen per E-Mail gesendet"
msgid "Insufficient Permission Level for {0}"
msgstr "Unzureichende Berechtigungsstufe für {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Unzureichende Berechtigung für {0}"
@@ -13167,7 +13214,7 @@ msgid "Invalid"
msgstr "Ungültig"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13177,7 +13224,7 @@ msgstr "Ungültiger \"depends_on\" Ausdruck"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ungültiger "abhängiger_on" -Ausdruck im Filter {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Ungültiger Ausdruck in Bedingung für Pflichtfeld"
@@ -13221,12 +13268,12 @@ msgstr "Ungültiger DocType"
msgid "Invalid Fieldname"
msgstr "Ungültiger Feldname"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Ungültige Datei-URL"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Ungültiger Filter"
@@ -13280,7 +13327,7 @@ msgstr "Ungültiger Postausgang Server oder Port: {0}"
msgid "Invalid Output Format"
msgstr "Ungültige Ausgabeformat"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Ungültige Überschreibung"
@@ -13294,11 +13341,11 @@ msgstr "Ungültige Parameter."
msgid "Invalid Password"
msgstr "Ungültiges Passwort"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Ungültige Telefonnummer"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "ungültige Anfrage"
@@ -13315,7 +13362,7 @@ msgstr "Ungültiger Tabellenfeldname"
msgid "Invalid Transition"
msgstr "Ungültiger Übergang"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13338,7 +13385,7 @@ msgstr "Ungültiges Webhook Geheimnis"
msgid "Invalid aggregate function"
msgstr "Ungültige Aggregatfunktion"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein."
@@ -13346,19 +13393,19 @@ msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein.
msgid "Invalid app"
msgstr "Ungültige App"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Ungültiges Argumentformat: {0}. Nur in Anführungszeichen gesetzte Zeichenfolgenliterale oder einfache Feldnamen sind zulässig."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Ungültiger Argumenttyp: {0}. Nur Zeichenfolgen, Zahlen und None sind zulässig."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Ungültige Zeichen im Feldnamen: {0}. Nur Buchstaben, Zahlen und Unterstriche sind zulässig."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Ungültige Zeichen im Tabellenname: {0}"
@@ -13366,11 +13413,11 @@ msgstr "Ungültige Zeichen im Tabellenname: {0}"
msgid "Invalid column"
msgstr "Ungültige Spalte"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Ungültiger Bedingungstyp in verschachtelten Filtern: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Ungültige Richtung in „Sortieren nach“: {0}. Muss „ASC“ oder „DESC“ sein."
@@ -13386,23 +13433,23 @@ msgstr "Ungültiger Ausdruck in Filter {0} festgelegt"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ungültiger Ausdruck im Filter {0} ({1}) gesetzt"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Ungültiges Feldformat für SELECT: {0}. Feldnamen müssen einfach, mit ` (backtick), tabellenqualifiziert, mit Alias oder '*' sein."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Ungültiges Feldformat in {0}: {1}. Verwenden Sie 'field', 'link_field.field', oder 'child_table.field'."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Ungültiger Feldname {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "Ungültiger Feldtyp: {0}"
@@ -13414,11 +13461,11 @@ msgstr "Ungültige Feldname '{0}' in auton"
msgid "Invalid file path: {0}"
msgstr "Ungültiger Dateipfad: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13426,11 +13473,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Ungültiger Filter: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13467,23 +13514,27 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Ungültige Anfrageargumente"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13587,7 +13638,7 @@ msgstr "Hat Kalender und Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Ist Untertabelle"
@@ -13640,6 +13691,10 @@ msgstr "Ist Ordner"
msgid "Is Global"
msgstr "Ist global"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Ist Gruppe"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13666,8 +13721,13 @@ msgstr "Ist optionaler Status"
msgid "Is Primary"
msgstr "Ist primär"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Ist Hauptkontakt"
@@ -13723,7 +13783,7 @@ msgstr "Ist die Einrichtung abgeschlossen?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Ist einzeln"
@@ -13759,7 +13819,7 @@ msgstr "Ist Standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Ist übertragbar"
@@ -13965,11 +14025,11 @@ msgstr "Kanban-Tafel Spalte"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Kanban-Tafel Name"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban-Einstellungen"
@@ -14259,7 +14319,7 @@ msgstr "Bezeichnung ist zwingend erforderlich"
msgid "Landing Page"
msgstr "Landing Page"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Querformat"
@@ -14267,10 +14327,13 @@ msgstr "Querformat"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Sprache"
@@ -14358,8 +14421,12 @@ msgstr "Letzter Monat"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Nachname"
@@ -14505,7 +14572,7 @@ msgstr "Länge"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Die Länge des übergebenen Datenarrays ist größer als der Wert der maximal erlaubten Beschriftungspunkte!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Länge von {0} sollte zwischen 1 und 1000 sein"
@@ -14555,7 +14622,7 @@ msgstr "Letter"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14583,7 +14650,7 @@ msgstr "Briefkopf Name"
msgid "Letter Head Scripts"
msgstr "Briefkopf-Skripte"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Briefkopf kann nicht gleichzeitig deaktiviert und Standard sein"
@@ -14600,7 +14667,7 @@ msgstr "Briefkopf in HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Ebene"
@@ -14893,7 +14960,7 @@ msgstr "Listenfilter"
msgid "List Settings"
msgstr "Listeneinstellungen"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Listeneinstellungen"
@@ -14944,7 +15011,7 @@ msgid "Load Balancing"
msgstr "Lastverteilung"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Mehr laden"
@@ -14964,7 +15031,7 @@ msgstr "Mehr laden"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Laden"
@@ -15107,7 +15174,7 @@ msgstr "Login-Bestätigungscode von {}"
msgid "Login and view in Browser"
msgstr "Anmelden und im Browser anzeigen"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erforderlich. Aktivieren Sie {0}, um die Listeneinstellungen zu sehen"
@@ -15115,7 +15182,7 @@ msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erfor
msgid "Login link sent to your email"
msgstr "Ein Anmeldelink wurde an Ihre E-Mail-Adresse gesendet"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Anmelden zurzeit nicht erlaubt"
@@ -15168,7 +15235,7 @@ msgstr "Mit E-Mail-Link anmelden"
msgid "Login with email link expiry (in minutes)"
msgstr "Gültigkeitsdauer des E-Mail-Links (in Minuten)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Login mit Benutzername und Passwort ist nicht erlaubt."
@@ -15187,7 +15254,7 @@ msgstr ""
msgid "Logout"
msgstr "Abmelden"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Alle Sitzungen abmelden"
@@ -15291,7 +15358,10 @@ msgid "Major"
msgstr "Major"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Name in der globalen Suche durchsuchbar machen"
@@ -15367,7 +15437,7 @@ msgstr "Bedingung für Pflichtfeld"
msgid "Mandatory Depends On (JS)"
msgstr "Bedingung für Pflichtfeld (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Pflichtangaben fehlen:"
@@ -15379,11 +15449,11 @@ msgstr "Pflichtfeld: Rolle anwenden auf"
msgid "Mandatory field: {0}"
msgstr "Pflichtfeld: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Pflichtfelder in der Tabelle erforderlich {0}, Reihe {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Für {0} benötigte Pflichtfelder:"
@@ -15565,7 +15635,7 @@ msgstr "Max Breite für Typ Währung ist 100px in Zeile {0}"
msgid "Maximum"
msgstr "Maximal"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Die Höchstgrenze für Anhänge von {0} wurde für {1} {2} erreicht."
@@ -15589,7 +15659,7 @@ msgstr "Bedeutung von Buchen, Stornieren, Berichtigen"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15808,7 +15878,7 @@ msgstr "Methode"
msgid "Method Not Allowed"
msgstr "Methode nicht erlaubt"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Methode wird benötigt, um eine Nummernkarte zu erstellen"
@@ -15824,6 +15894,11 @@ msgstr "Mittig"
msgid "Middle Name"
msgstr "Zweiter Vorname"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15894,7 +15969,7 @@ msgstr "Fehlender DocType"
msgid "Missing Field"
msgstr "Fehlendes Feld"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Nicht ausgefüllte Felder"
@@ -15930,6 +16005,11 @@ msgstr "Mobiltelefon"
msgid "Mobile No"
msgstr "Mobilfunknummer"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Mobilfunknummer"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15955,7 +16035,7 @@ msgstr "Modal-Auslöser"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16131,10 +16211,12 @@ msgstr "Weitere Info"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Mehr Informationen"
@@ -16164,7 +16246,7 @@ msgstr "Wahrscheinlich ist Ihr Passwort zu lang."
msgid "Move"
msgstr "Verschieben"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Bewegen nach"
@@ -16200,7 +16282,7 @@ msgstr "Abschnitte in neue Registerkarte verschieben"
msgid "Move the current field and the following fields to a new column"
msgstr "Aktuelles und folgende Felder in eine neue Spalte verschieben"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Gehe zu Zeilennummer"
@@ -16250,7 +16332,7 @@ msgstr "Muss in '()' eingeschlossen sein und '{0}' enthalten, was ein Platzhalte
msgid "Must be of type \"Attach Image\""
msgstr "Muss vom Typ „Bild anhängen“ sein"
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen."
@@ -16268,7 +16350,7 @@ msgid "Mx"
msgstr "Divers"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16308,7 +16390,7 @@ msgstr "HINWEIS: Dieses Feld ist veraltet. Bitte richten Sie LDAP neu ein, um mi
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16412,12 +16494,12 @@ msgstr "Vorlage für Navigationsleiste"
msgid "Navbar Template Values"
msgstr "Navigationsleiste-Vorlagenwerte"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Liste nach unten navigieren"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Liste nach oben navigieren"
@@ -16432,6 +16514,10 @@ msgstr "Zum Hauptinhalt navigieren"
msgid "Navigation Settings"
msgstr "Navigationseinstellungen"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeitsbereich anderer Benutzer zu bearbeiten"
@@ -16440,7 +16526,7 @@ msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeits
msgid "Negative Value"
msgstr "Negativer Wert"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Verschachtelte Filter müssen als Liste oder Tupel angegeben werden."
@@ -16453,6 +16539,12 @@ msgstr "Schachtelfehler. Bitte den Administrator kontaktieren."
msgid "Network Printer Settings"
msgstr "Netzwerkdrucker-Einstellungen"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16461,7 +16553,7 @@ msgstr "Netzwerkdrucker-Einstellungen"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16522,7 +16614,7 @@ msgstr "Neues Ereignis"
msgid "New Folder"
msgstr "Neuer Ordner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Neue Kanban-Tafel"
@@ -16557,7 +16649,7 @@ msgstr "Neue Zahlenkarte"
msgid "New Onboarding"
msgstr "Neues Onboarding"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Neues Passwort"
@@ -16653,7 +16745,7 @@ msgstr "Neuer Wert muss gesetzt werden"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Neu {0}"
@@ -16805,7 +16897,7 @@ msgstr "Weiter bei Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nein"
@@ -16910,7 +17002,7 @@ msgstr "Kein Name für {0} angegeben"
msgid "No New notifications"
msgstr "Keine neuen Benachrichtigungen"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Keine Berechtigungen angegeben"
@@ -16954,7 +17046,7 @@ msgstr "Keine Ergebnisse gefunden"
msgid "No Roles Specified"
msgstr "Keine Rollen festgelegt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Kein Auswahlfeld gefunden"
@@ -16962,7 +17054,7 @@ msgstr "Kein Auswahlfeld gefunden"
msgid "No Suggestions"
msgstr "Keine Vorschläge"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Keine Schlagworte"
@@ -17038,7 +17130,7 @@ msgstr ""
msgid "No failed logs"
msgstr "Keine fehlgeschlagenen Protokolle"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Keine Felder gefunden, die als Kanban-Spalte verwendet werden können. Verwenden Sie „Formular anpassen“, um ein benutzerdefiniertes Feld vom Typ \"Auswählen\" hinzuzufügen."
@@ -17062,7 +17154,7 @@ msgstr "Keine weiteren Datensätze"
msgid "No matching records. Search something new"
msgstr "Keine Bilder gefunden. Suchen Sie etwas Neues"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Keine weiteren Elemente zum Anzeigen"
@@ -17106,7 +17198,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Keine Berechtigung um '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Keine Berechtigung zum Lesen {0}"
@@ -17118,7 +17210,7 @@ msgstr "Keine Berechtigung um {0} {1} {2}"
msgid "No records deleted"
msgstr "Keine Datensätze gelöscht"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Keine Datensätze in {0} vorhanden"
@@ -17154,11 +17246,11 @@ msgstr "Keine {0}"
msgid "No {0} Found"
msgstr "Kein {0} gefunden"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Kein {0} gefunden"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Keine {0} mit passenden Filtern gefunden. Löschen Sie Filter, um alle {0} -Einträge zu sehen."
@@ -17167,7 +17259,7 @@ msgid "No {0} mail"
msgstr "Nein {0} mail"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Nr."
@@ -17231,7 +17323,7 @@ msgstr "Nicht Nachkommen von"
msgid "Not Equals"
msgstr "Ungleich"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -17257,9 +17349,9 @@ msgstr "Nicht mit jedem Datensatz verknüpft"
msgid "Not Nullable"
msgstr "Nicht nullbar"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17278,7 +17370,7 @@ msgstr "Nicht veröffentlicht"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17329,7 +17421,7 @@ msgstr "Nicht aktiv"
msgid "Not allowed for {0}: {1}"
msgstr "Nicht zulässig für {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Das {0} -Dokument darf nicht angehängt werden. Aktivieren Sie in den Druckeinstellungen die Option "Druck für {0} zulassen""
@@ -17361,12 +17453,12 @@ msgstr "Nicht im Entwicklungsmodus"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutzerdefiniertes\" DocType erstellen."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nicht gestattet"
@@ -17412,7 +17504,7 @@ msgstr "Hinweis: Um optimale Ergebnisse zu erzielen, müssen die Bilder dieselbe
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Hinweis: Mehrere Sitzungen wird im Falle einer mobilen Gerät erlaubt sein"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Hinweis: Dies wird dem Benutzer mitgeteilt."
@@ -17484,15 +17576,15 @@ msgstr "Benachrichtigungsdokument abonniert"
msgid "Notification sent to"
msgstr "Benachrichtigung gesendet an"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Benachrichtigung: Kunde {0} hat keine Mobiltelefonnummer festgelegt"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Benachrichtigung: Dokument {0} hat keine {1} Nummer gesetzt (Feld: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Benachrichtigung: Benutzer {0} hat keine Mobiltelefonnummer festgelegt"
@@ -17606,7 +17698,7 @@ msgstr "Anzahl der Abfragen"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Anzahl der Anhangsfelder ist größer als {}, Limit auf {} aktualisiert."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Anzahl der Backups muss größer als Null sein."
@@ -17878,7 +17970,7 @@ msgstr "Onboarding abgeschlossen"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Einmal eingereichte Dokumente können nicht mehr geändert werden. Sie können nur storniert und geändert werden."
@@ -17967,11 +18059,11 @@ msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können gelöscht werden
msgid "Only reports of type Report Builder can be edited"
msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können bearbeitet werden"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "Nur der Administrator kann einen Standard-DocType löschen."
@@ -18067,7 +18159,7 @@ msgstr "Konsole öffnen"
msgid "Open in a new tab"
msgstr "In einer neuen Registerkarte öffnen"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Listenelement öffnen"
@@ -18116,7 +18208,7 @@ msgstr "Geöffnet"
msgid "Operation"
msgstr "Arbeitsgang"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Betreiber muss einer von {0}"
@@ -18162,6 +18254,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18170,6 +18263,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Optionen"
@@ -18199,7 +18293,7 @@ msgstr "Optionen für {0} müssen festgelegt werden, bevor der Standardwert fest
msgid "Options is required for field {0} of type {1}"
msgstr "Optionen sind erforderlich für Feld {0} des Typs {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Optionen nicht für das Verknüpfungs-Feld {0} gesetzt"
@@ -18215,7 +18309,7 @@ msgstr "Orange"
msgid "Order"
msgstr "Auftrag"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18231,7 +18325,7 @@ msgstr "Unternehmensgeschichte"
msgid "Org History Heading"
msgstr "Überschrift zur Unternehmensgeschichte"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Ausrichtung"
@@ -18313,7 +18407,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18346,10 +18440,6 @@ msgstr "PDF-Seitenbreite (in mm)"
msgid "PDF Settings"
msgstr "PDF-Einstellungen"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "Die PDF-Erstellung ist fehlgeschlagen"
@@ -18561,7 +18651,7 @@ msgstr "Übergeordneter DocType"
msgid "Parent Document Type"
msgstr "Übergeordneter DocType"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Übergeordneter DocType wird benötigt, um Zahlenkarte zu erstellen"
@@ -18665,8 +18755,8 @@ msgstr "Passiv"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18689,7 +18779,7 @@ msgstr "Passwort zurücksetzen"
msgid "Password Reset Link Generation Limit"
msgstr "Limit zum Generieren von Kennwort-Reset-Links"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Passwort kann nicht gefiltert werden"
@@ -18726,7 +18816,7 @@ msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {}
msgid "Password set"
msgstr "Passwort gesetzt"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Passwort überschreitet die maximal zulässige Länge"
@@ -18738,7 +18828,7 @@ msgstr "Passwort überschreitet die maximal zulässige Länge."
msgid "Passwords do not match"
msgstr "Passwörter stimmen nicht überein"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Passwörter stimmen nicht überein!"
@@ -18889,7 +18979,7 @@ msgstr "{0} endgültig übertragen?"
msgid "Permanently delete {0}?"
msgstr "{0} endgültig löschen?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Berechtigungsfehler"
@@ -18949,16 +19039,16 @@ msgstr "Berechtigungsart"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Berechtigungen"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Berechtigungsfehler"
@@ -19020,15 +19110,18 @@ msgstr "Download-Anfrage für personenbezogene Daten"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19041,11 +19134,11 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonnr."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummer {0} im Feld {1} ist ungültig."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19127,11 +19220,11 @@ msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen
msgid "Please attach a file first."
msgstr "Bitte zuerst eine Datei anhängen."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für die Fußzeile festzulegen."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für den Briefkopf festzulegen."
@@ -19143,7 +19236,7 @@ msgstr "Bitte das Paket anhängen"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filterwerte: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
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}"
@@ -19183,7 +19276,7 @@ msgstr "Bitte bestätigen Sie Ihre Aktion für {0} dieses Dokument."
msgid "Please contact your system manager to install correct version."
msgstr "Bitte wenden Sie sich an Ihren Systemmanager, um die richtige Version zu installieren."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Bitte erstellen Sie zuerst die Karte"
@@ -19199,11 +19292,11 @@ msgstr "Bitte löschen Sie das Feld von {0} oder fügen Sie den erforderlichen D
msgid "Please do not change the template headings."
msgstr "Bitte nicht die Vorlagenköpfe ändern."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Bitte kopieren um Änderungen vorzunehmen"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login Key, LDAP oder Anmeldung per E-Mail-Link, bevor Sie die Anmeldung per Benutzernamen und Passwort deaktivieren."
@@ -19212,7 +19305,7 @@ msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Bitte Pop-ups aktivieren"
@@ -19327,7 +19420,7 @@ msgstr "Bitte speichern Sie den Bericht zuerst"
msgid "Please save to edit the template."
msgstr "Bitte speichern Sie, um die Vorlage zu bearbeiten."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Bitte zuerst DocType auswählen"
@@ -19335,15 +19428,15 @@ msgstr "Bitte zuerst DocType auswählen"
msgid "Please select Entity Type first"
msgstr "Bitte wählen Sie zunächst Entitätstyp"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Bitte wählen Sie Minimum Password Score"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Bitte wählen Sie X- und Y-Felder aus"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Bitte wählen Sie einen Ländercode für das Feld {1} aus."
@@ -19367,7 +19460,7 @@ msgstr "Bitte wählen Sie einen gültigen Datumsfilter"
msgid "Please select applicable Doctypes"
msgstr "Bitte zutreffende Doctypes auswählen"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe"
@@ -19397,7 +19490,7 @@ msgstr "Bitte setzen Sie E-Mail-Adresse"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Bitte legen Sie in den Druckereinstellungen eine Druckerzuordnung für dieses Druckformat fest"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Bitte Filter einstellen"
@@ -19417,7 +19510,7 @@ msgstr "Bitte legen Sie zuerst die folgenden Dokumente in diesem Dashboard als S
msgid "Please set the series to be used."
msgstr "Bitte legen Sie die zu verwendende Serie fest."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode über SMS-Einstellungen festlegen"
@@ -19532,7 +19625,7 @@ msgstr "Portal Menüpunkt"
msgid "Portal Settings"
msgstr "Portaleinstellungen"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Hochformat"
@@ -19560,6 +19653,7 @@ msgstr "Post"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Postleitzahl"
@@ -19568,7 +19662,7 @@ msgstr "Postleitzahl"
msgid "Posting Timestamp"
msgstr "Zeitstempel der Buchung"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19583,6 +19677,10 @@ msgstr ""
msgid "Precision"
msgstr "Genauigkeit"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Genauigkeit sollte zwischen 1 und 6 liegen"
@@ -19631,7 +19729,7 @@ msgstr "Vorbereitete Berichtsanalytik"
msgid "Prepared Report User"
msgstr "Vorbereiteter Berichtsbenutzer"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen"
@@ -19766,13 +19864,13 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Drucken"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Drucken"
@@ -19842,7 +19940,7 @@ msgstr "Hilfe zu Druckformaten"
msgid "Print Format Type"
msgstr "Druckformattyp"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19881,7 +19979,7 @@ msgstr "Drucken ausblenden wenn kein Wert"
msgid "Print Language"
msgstr "Drucksprache"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Drucken An den Drucker gesendet!"
@@ -19899,7 +19997,7 @@ msgstr "Druck Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Druckeinstellungen"
@@ -20023,11 +20121,11 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Fortfahren"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Fahre dennoch fort"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "wird bearbeitet"
@@ -20044,11 +20142,21 @@ msgstr "Prof."
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil erfolgreich aktualisiert."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Fortschritt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projekt"
@@ -20092,7 +20200,7 @@ msgstr "Eigenschaftstyp"
msgid "Protect Attached Files"
msgstr "Angehängte Dateien schützen"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Geschützte Datei"
@@ -20265,7 +20373,7 @@ msgstr "QR-Code"
msgid "QR Code for Login Verification"
msgstr "QR-Code für Zwei-Faktor-Authentifizierung"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20472,7 +20580,7 @@ msgstr "Bewertung"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Raw-Befehle"
@@ -20598,11 +20706,11 @@ msgstr "Echtzeit (SocketIO)"
msgid "Reason"
msgstr "Grund"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Wiederaufbau"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Baum neu aufbauen"
@@ -20983,8 +21091,8 @@ msgstr "Referrer"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21015,13 +21123,13 @@ msgstr ""
msgid "Refresh Token"
msgstr "Aktualisierungstoken"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Aktualisiere"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Aktualisiere..."
@@ -21065,7 +21173,7 @@ msgstr "Neu verknüpfen"
#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr "Relink Kommunikation"
+msgstr "Kommunikation neu verknüpfen"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -21334,8 +21442,8 @@ msgstr "Allen antworten"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21406,11 +21514,11 @@ msgstr "Berichts-Manager"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Berichtsname"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Zum Erstellen einer Nummernkarte sind Berichtsname, Berichtsfeld und Funktion erforderlich"
@@ -21444,21 +21552,21 @@ msgstr "Berichtsansicht"
msgid "Report bug"
msgstr "Fehler melden"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Bericht kann nicht für Einzel-Typen festgelegt werden"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Der Bericht enthält keine Daten. Ändern Sie die Filter oder den Berichtsnamen"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Berichtsnamen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen"
@@ -21478,7 +21586,7 @@ msgstr "Bericht erfolgreich aktualisiert"
msgid "Report was not saved (there were errors)"
msgstr "Bericht wurde nicht gespeichert (es gab Fehler)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus."
@@ -21514,7 +21622,7 @@ msgstr "Berichte"
msgid "Reports & Masters"
msgstr "Berichte & Stammdaten"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Berichtet bereits in der Warteschlange"
@@ -21533,7 +21641,10 @@ msgid "Request Body"
msgstr "Anfragekörper"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Anfragedaten"
@@ -21585,6 +21696,11 @@ msgstr "Zeitüberschreitung der Anfrage"
msgid "Request URL"
msgstr "Anfrage-URL"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21640,7 +21756,7 @@ msgstr "Dashboard-Anpassungen zurücksetzen"
msgid "Reset Fields"
msgstr "Felder zurücksetzen"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "LDAP-Passwort zurücksetzen"
@@ -21648,11 +21764,11 @@ msgstr "LDAP-Passwort zurücksetzen"
msgid "Reset Layout"
msgstr "Layout zurücksetzen"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "OTP-Geheimnis zurücksetzen"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21687,7 +21803,7 @@ msgstr "Auf Standardwerte zurücksetzen"
msgid "Reset sorting"
msgstr "Sortierung zurücksetzen"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Auf Standard zurücksetzen"
@@ -21827,7 +21943,7 @@ msgstr "Kehren Sie zum Bestätigungsbildschirm zurück und geben Sie den von Ihr
msgid "Reverse Icon Color"
msgstr "Symbolfarbe umkehren"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Zurücksetzen der Länge auf {0} für '{1}' in '{2}'. Wenn Sie die Länge auf {3} setzen, werden die Daten abgeschnitten."
@@ -21939,7 +22055,7 @@ msgstr "Rollengenehmigung Seite und Bericht"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Rollenberechtigungen"
@@ -21949,7 +22065,7 @@ msgstr "Rollenberechtigungen"
msgid "Role Permissions Manager"
msgstr "Rollenberechtigungen-Manager"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Rollenberechtigungen-Manager"
@@ -22094,7 +22210,7 @@ msgstr "Routenumleitungen"
msgid "Route: Example \"/app\""
msgstr "Route: Beispiel \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Zeile"
@@ -22102,12 +22218,12 @@ msgstr "Zeile"
msgid "Row #"
msgstr "Zeile #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Zeile # {0}: Nicht-Administrator-Benutzer können die Rolle {1} nicht auf den benutzerdefinierten Doctype einstellen"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Zeile #{0}:"
@@ -22142,11 +22258,11 @@ msgstr "Zeilenwerte geändert"
msgid "Row {0}"
msgstr "Zeile {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Zeile {0}: Nicht zulässig zum Deaktivieren für Standardfelder"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Zeile {0}: Keine Berechtigung die Option \"Beim Übertragen erlauben\" für Standardfelder zu aktivieren"
@@ -22165,7 +22281,10 @@ msgid "Rows Removed"
msgstr "Zeilen entfernt"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22373,8 +22492,8 @@ msgstr "Samstag"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22397,11 +22516,11 @@ msgstr "Speichern als"
msgid "Save Customizations"
msgstr "Anpassungen speichern"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Bericht speichern"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Filter speichern"
@@ -22773,7 +22892,7 @@ msgstr "Sicherheitseinstellungen"
msgid "See all Activity"
msgstr "Alle Aktivitäten anzeigen"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Alle früheren Berichte anzeigen."
@@ -22837,7 +22956,7 @@ msgstr "Auswählen"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Alle auswählen"
@@ -22858,7 +22977,7 @@ msgid "Select Column"
msgstr "Wählen Sie Spalte"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Spalten auswählen"
@@ -22917,7 +23036,7 @@ msgstr "Feld auswählen"
msgid "Select Field..."
msgstr "Feld auswählen..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Felder auswählen"
@@ -23037,14 +23156,14 @@ msgid "Select a field to edit its properties."
msgstr "Wählen Sie ein Feld aus, um seine Eigenschaften zu bearbeiten."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Zuerst einen Gruppenknoten wählen."
+msgid "Select a group {0} first."
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Wählen Sie ein gültiges Absenderfeld zum Erstellen von Dokumenten aus E-Mail"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Wählen Sie ein gültiges Betrefffeld zum Erstellen von Dokumenten aus E-Mail"
@@ -23074,13 +23193,13 @@ msgstr "Wählen Sie mindestens einen Datensatz für den Druck"
msgid "Select atleast 2 actions"
msgstr "Wählen Sie mindestens 2 Aktionen aus"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Listenelement auswählen"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Wählen Sie mehrere Listenelemente aus"
@@ -23298,7 +23417,7 @@ msgstr "Absender E-Mail"
msgid "Sender Email Field"
msgstr "Absender-E-Mail-Feld"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten"
@@ -23402,7 +23521,7 @@ msgstr "Serie {0} bereits verwendet in {1}"
msgid "Server Action"
msgstr "Serveraktion"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfehler"
@@ -23468,7 +23587,7 @@ msgstr "Sitzungsstandards"
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Sitzung abgelaufen"
@@ -23477,14 +23596,14 @@ msgstr "Sitzung abgelaufen"
msgid "Session Expiry (idle timeout)"
msgstr "Ablauf der Sitzung (Leerlaufzeit)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Sitzungsablauf muss im Format {0} sein"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Eingetragen"
@@ -23510,12 +23629,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Legen Sie die Standardoptionen für alle Diagramme in diesem Dashboard fest (z.B.: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Dynamische Filter einstellen"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23526,7 +23645,7 @@ msgstr "Filter setzen"
msgid "Set Filters for {0}"
msgstr "Setze Filter für {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Ebenen einstellen"
@@ -23580,7 +23699,7 @@ msgstr "Anzahl festlegen"
msgid "Set Role For"
msgstr "Rolle festlegen für"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Nutzer-Berechtigungen setzen"
@@ -23599,7 +23718,7 @@ msgstr "Alle als privat setzen"
msgid "Set all public"
msgstr "Alle als öffentlich setzen"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Als Standard festlegen"
@@ -23618,18 +23737,21 @@ msgstr "Von Benutzer festgelegt"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Hier können Sie dynamische Filterwerte in JavaScript für die erforderlichen Felder festlegen."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Festlegen einer Nicht-Standardpräzision für ein Gleitkomma- oder Währungsfeld"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23763,7 +23885,7 @@ msgstr "Einrichtung > Benutzer"
msgid "Setup > User Permissions"
msgstr "Einrichtung > Benutzerberechtigungen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Einstellungen Auto E-Mail"
@@ -23904,6 +24026,12 @@ msgstr "Dokument anzeigen"
msgid "Show Error"
msgstr "Fehler anzeigen"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Feldname anzeigen (klicken um in Zwischenablage zu kopieren)"
@@ -24032,7 +24160,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Schlagworte anzeigen"
@@ -24239,36 +24367,36 @@ msgstr "Anmeldung deaktiviert"
msgid "Signups have been disabled for this website."
msgstr "Anmeldungen für diese Website wurden deaktiviert."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Einfacher Python-Ausdruck, Beispiel: status in (\"Closed\", \"Cancelled\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Einfacher Python-Ausdruck, Beispiel: status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Einfacher Python-Ausdruck, Beispiel: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Gleichzeitige Sitzungen"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Einzelne DocTypes können nicht angepasst werden."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Einzelne Typen haben nur einen Datensatz, keine Tabellen zugeordnet. Die Werte werden in tabSingles gespeichert"
@@ -24276,7 +24404,7 @@ msgstr "Einzelne Typen haben nur einen Datensatz, keine Tabellen zugeordnet. Die
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 "Diese Instanz läuft im schreibgeschützten Modus für Wartungsarbeiten und Aktualisierungen. Diese Aktion kann daher momentan nicht ausgeführt werden. Bitte versuchen Sie es später erneut."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Größe"
@@ -24536,7 +24664,7 @@ msgstr "Sortierfeld {0} muss ein gültiger Feldname sein"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24603,8 +24731,8 @@ msgstr "Geben Sie die Domänen oder Ursprünge an, die dieses Formular einbetten
msgid "Splash Image"
msgstr "Splash-Bild"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Pos"
@@ -24636,7 +24764,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "Standard DocType kann nicht gelöscht werden."
@@ -24652,7 +24780,7 @@ msgstr "Standard nicht festgelegt"
msgid "Standard Permissions"
msgstr "Standardberechtigungen"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Standard-Druckformat kann nicht aktualisiert werden"
@@ -24770,6 +24898,7 @@ msgstr "Beginnt am"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24905,7 +25034,7 @@ msgstr "Schritte, um Ihre Anmeldung zu überprüfen"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "Fixiert"
@@ -24935,7 +25064,7 @@ msgstr "Speichernutzung nach Tabelle"
msgid "Store Attached PDF Document"
msgstr "Angehängtes PDF-Dokument speichern"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -25033,7 +25162,7 @@ msgstr "Betreff"
msgid "Subject Field"
msgstr "Themenfeld"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Betreff Der Feldtyp sollte Daten, Text, Langtext, Kleiner Text, Texteditor sein"
@@ -25047,6 +25176,7 @@ msgstr "Buchungs-Warteschlange"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25055,10 +25185,11 @@ msgstr "Buchungs-Warteschlange"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Buchen"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Buchen"
@@ -25068,7 +25199,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Senden"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Buchen"
@@ -25116,7 +25247,7 @@ msgstr "Senden Sie dieses Dokument, um diesen Schritt abzuschließen."
msgid "Submit this document to confirm"
msgstr "Buchen Sie dieses Dokument, um zu bestätigen"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} Dokumente einreichen?"
@@ -25166,7 +25297,7 @@ msgstr "Untertitel"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25381,7 +25512,7 @@ msgstr "Synchronisiert"
msgid "Syncing {0} of {1}"
msgstr "{0} von {1} synchronisieren"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Syntaxfehler"
@@ -25692,7 +25823,7 @@ msgstr "Tabelle MultiSelect"
msgid "Table Trimmed"
msgstr "Tabelle gekürzt"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabelle aktualisiert"
@@ -25909,7 +26040,7 @@ msgstr "Danke"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Die automatische Wiederholung für dieses Dokument wurde deaktiviert."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung"
@@ -25926,7 +26057,7 @@ msgstr "Die Client-ID, die Sie in der Google Cloud Console unter "
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -26095,7 +26226,7 @@ msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
msgid "The reset password link has either been used before or is invalid"
msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar"
@@ -26107,7 +26238,7 @@ msgstr "Die Rolle {0} sollte eine benutzerdefinierte Rolle sein."
msgid "The selected document {0} is not a {1}."
msgstr "Das ausgewählte Dokument {0} ist nicht vom Typ {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Das System wird gerade aktualisiert. Bitte probieren Sie es nach einigen Augenblicken erneut."
@@ -26168,12 +26299,12 @@ msgstr "Für Sie stehen keine Veranstaltungen an."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Es gibt keine {0} für diese {1}, warum starten Sie nicht eine!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Es dürfen höchstens 9 Seitenumbrüche in einem Webformular vorkommen"
@@ -26197,11 +26328,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr "Es gibt im Moment nichts Neues zu sehen."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Es gibt irgend ein Problem mit der Datei-URL: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:"
@@ -26213,7 +26344,7 @@ msgstr "Es muss atleast eine Erlaubnis Regel sein."
msgid "There was an error building this page"
msgstr "Beim Erstellen dieser Seite ist ein Fehler aufgetreten"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Beim Speichern der Filter ist ein Fehler aufgetreten"
@@ -26270,7 +26401,7 @@ msgstr "Drittpartei-Authentifizierung"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Diese Währung ist deaktiviert. Aktivieren, um in Transaktionen zu verwenden"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Dieser Kanbantafel wird privat"
@@ -26278,6 +26409,10 @@ msgstr "Dieser Kanbantafel wird privat"
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26303,6 +26438,11 @@ msgstr "Diese Aktion ist nur für {} zulässig"
msgid "This cannot be undone"
msgstr "Das kann nicht rückgängig gemacht werden"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26321,7 +26461,7 @@ msgstr "Dieser Doctype hat keine verwaisten Felder zum Kürzen"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Dieser Doctype hat anstehende Migrationen. Führen Sie 'bench migrate' aus, bevor Sie den Doctype ändern, damit die Änderungen nicht verloren gehen."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Dieses Dokument kann im Moment nicht gelöscht werden, da es von einem anderen Benutzer geändert wird. Bitte versuchen Sie es nach einiger Zeit erneut."
@@ -26367,7 +26507,7 @@ msgstr "Dieses Feld wird nur angezeigt, wenn der hier definierte Feldname einen
"eval:doc.myfield=='Mein Wert'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "Diese Datei ist an ein geschütztes Dokument angehängt und kann nicht gelöscht werden."
@@ -26402,7 +26542,7 @@ msgstr "Dieser Geolokalisierungsanbieter wird noch nicht unterstützt."
msgid "This goes above the slideshow."
msgstr "Dies erscheint oberhalb der Diaschau."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen."
@@ -26452,7 +26592,7 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden"
msgid "This month"
msgstr "Diesen Monat"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen."
@@ -26460,7 +26600,7 @@ msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angez
msgid "This report was generated on {0}"
msgstr "Dieser Bericht wurde am {0} erstellt."
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Dieser Bericht wurde {0} generiert."
@@ -26602,9 +26742,11 @@ msgstr "Zeitfenster (Sekunden)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26871,7 +27013,7 @@ msgstr "Um diesen Schritt als JSON zu exportieren, verknüpfen Sie ihn in einem
msgid "To generate password click {0}"
msgstr "Um ein Passwort zu generieren, klicken Sie auf {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen."
@@ -26946,7 +27088,7 @@ msgstr "Rasteransicht wechseln"
msgid "Toggle Sidebar"
msgstr "Seitenleiste umschalten"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Seitenleiste ein-/ausblenden"
@@ -27072,7 +27214,7 @@ msgstr "Thema"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Summe"
@@ -27195,7 +27337,7 @@ msgstr "Verfolgen Sie Meilensteine für jedes Dokument"
msgid "Tracking"
msgstr "Nachverfolgung"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "Tracking URL generiert und in die Zwischenablage kopiert"
@@ -27231,7 +27373,7 @@ msgstr "Übergänge"
msgid "Translatable"
msgstr "Übersetzbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Daten übersetzen"
@@ -27393,7 +27535,7 @@ msgstr "Zwei Faktor-Authentifizierungsmethode"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27487,7 +27629,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL für Dokumentation oder Hilfe"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL muss mit http:// oder https:// beginnen"
@@ -27590,7 +27732,7 @@ msgstr "Sie können keine E-Mail senden, weil ein E-Mail-Konto fehlt. Bitte rich
msgid "Unable to update event"
msgstr "Ereignis kann nicht aktualisiert werden"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Das Dateiformat für {0} kann nicht geschrieben werden."
@@ -27599,7 +27741,7 @@ msgstr "Das Dateiformat für {0} kann nicht geschrieben werden."
msgid "Unassign Condition"
msgstr "Bedingung für das Aufheben der Zuweisung"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Nicht abgefangene Ausnahme"
@@ -27615,7 +27757,7 @@ msgstr "Rückgängig machen"
msgid "Undo last action"
msgstr "Letzte Aktion rückgängig machen"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27662,7 +27804,7 @@ msgstr "Unbekannte Spalte: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Unbekannte Rundungsmethode: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Unbekannter Benutzer"
@@ -27728,8 +27870,8 @@ msgstr "Abmeldeparameter"
msgid "Unsubscribed"
msgstr "Abgemeldet"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27763,7 +27905,7 @@ msgstr "Bevorstehenden Veranstaltungen für heute"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Aktualisieren"
@@ -27797,6 +27939,11 @@ msgstr "Reihenfolge aktualisieren"
msgid "Update Password"
msgstr "Passwort ändern"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27855,7 +28002,7 @@ msgstr "Auf eine neue Version aktualisiert 🎉"
msgid "Updated successfully"
msgstr "Erfolgreich geupdated"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Aktualisierung läuft"
@@ -28012,11 +28159,7 @@ msgstr "Andere E-Mail-Adresse verwenden"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Verwenden Sie diese Option, wenn die Standardeinstellungen Ihre Daten nicht richtig zu erkennen scheinen"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "Die Verwendung der Funktion {0} im Feld ist eingeschränkt"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt."
@@ -28238,12 +28381,12 @@ msgstr "Benutzerberechtigung"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
@@ -28387,7 +28530,7 @@ msgstr "Benutzer {0} hat sich als {1} ausgegeben"
msgid "User {0} is disabled"
msgstr "Benutzerkonto {0} ist deaktiviert"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Benutzer {0} ist deaktiviert. Bitte wenden Sie sich an Ihren Systemmanager."
@@ -28515,8 +28658,8 @@ msgstr "Gültigkeit"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28548,7 +28691,7 @@ msgstr "Wert geändert"
msgid "Value To Be Set"
msgstr "Wert, der gesetzt werden soll"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Wert kann für {0} nicht geändert werden"
@@ -28564,11 +28707,11 @@ msgstr "Der Wert kann für {0} nicht negativ sein: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Wert für ein Ankreuz-Feld kann entweder 0 oder 1 sein"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Der Wert für das Feld {0} ist in {1} zu lang. Die Länge sollte kleiner als {2} Zeichen sein"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Wert für {0} kann keine Liste sein"
@@ -28593,7 +28736,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Zu validierender Wert"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Wert zu groß"
@@ -28685,7 +28828,7 @@ msgstr "Alle ansehen"
msgid "View Audit Trail"
msgstr "Prüfprotokoll anzeigen"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "DocType-Berechtigungen anzeigen"
@@ -28697,7 +28840,7 @@ msgstr "Datei anzeigen"
msgid "View Full Log"
msgstr "Vollständiges Protokoll anzeigen"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Liste anzeigen"
@@ -28707,7 +28850,7 @@ msgstr "Liste anzeigen"
msgid "View Log"
msgstr "Protokoll anzeigen"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Anzeigen von zulässigen Dokumenten"
@@ -28823,6 +28966,7 @@ msgid "Warehouse"
msgstr "Lager"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Warnung"
@@ -28917,7 +29061,7 @@ msgstr "Webseite"
msgid "Web Page Block"
msgstr "Webseitenblock"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL der Webseite"
@@ -29307,7 +29451,7 @@ msgstr "Wird nur dann angezeigt wenn Überschriften aktiviert sind"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Führt geplante Prozesse für inaktive Instanzen nur einmal pro Tag aus. Setzen Sie den Wert auf 0, um die automatische Deaktivierung des Planers zu vermeiden."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Mit Briefkopf"
@@ -29468,7 +29612,7 @@ msgstr "Workflow erfolgreich aktualisiert"
msgid "Workspace"
msgstr "Arbeitsbereich"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "Arbeitsbereich {0} existiert nicht"
@@ -29561,7 +29705,7 @@ msgstr "Aufwickeln"
msgid "Write"
msgstr "Schreiben"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Falscher Abruf vom Wert"
@@ -29590,7 +29734,7 @@ msgstr "Y-Achsenfelder"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y-Feld"
@@ -29652,7 +29796,7 @@ msgstr "Gelb"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29688,6 +29832,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Sie sind mit dem Internet verbunden."
@@ -29726,12 +29874,12 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Sie dürfen keinen {} Doctype exportieren"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken"
@@ -29739,7 +29887,7 @@ msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken"
msgid "You are not allowed to send emails related to this document"
msgstr "Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren"
@@ -29812,11 +29960,11 @@ msgstr "Sie können die Aufbewahrungsrichtlinie unter {0} ändern."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Sie können nach Erkundung dieser Seite mit dem Onboarding fortfahren"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Du kannst diese(n) {0} deaktivieren, anstatt es zu löschen."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Sie können das Limit in den Systemeinstellungen erhöhen."
@@ -29866,11 +30014,11 @@ msgstr "Sie können „Formular anpassen“ verwenden, um Berechtigungsebenen f
msgid "You can use wildcard %"
msgstr "Sie können % als Platzhalter verwenden"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Sie können 'Optionen' nicht für das Feld {0} setzen"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Sie können 'Übersetzbar' für Feld {0} nicht festlegen"
@@ -29888,7 +30036,7 @@ msgstr "Sie haben dieses Dokument {1} storniert"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Sie können kein Dashboard-Diagramm aus einzelnen DocTypes erstellen"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "\"Nur lesen\" kann für das Feld {0} nicht rückgängig gemacht werden"
@@ -29931,15 +30079,15 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
@@ -29951,11 +30099,11 @@ msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren.
msgid "You don't have access to Report: {0}"
msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden"
@@ -29975,7 +30123,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr "Sie haben sich erfolgreich abgemeldet"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Sie haben das Limit für die Zeilengröße in der Datenbanktabelle erreicht: {0}"
@@ -30003,7 +30151,7 @@ msgstr "Du hast {0} nicht gesehen"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Sie haben noch keine Dashboard-Diagramme oder Zahlenkarten hinzugefügt."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "Sie haben noch kein(en) {0} erstellt"
@@ -30020,11 +30168,11 @@ msgstr "Zuletzt von Ihnen bearbeitet"
msgid "You must add atleast one link."
msgstr "Sie müssen mindestens einen Link hinzufügen."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Sie müssen angemeldet sein, um dieses Formular zu nutzen."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln"
@@ -30048,7 +30196,7 @@ msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu kö
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Sie müssen sich im Entwicklermodus befinden, um ein Standard-Webformular zu bearbeiten"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen."
@@ -30139,6 +30287,10 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt"
msgid "You viewed this"
msgstr "Von Ihnen angesehen"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -30184,7 +30336,7 @@ msgstr "Ihre Schnellzugriffe"
msgid "Your account has been deleted"
msgstr "Ihr Konto wurde gelöscht"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Ihre Anmeldung wurde gesperrt und ist wieder verfügbar in {0} Sekunden"
@@ -30246,11 +30398,11 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren."
@@ -30558,7 +30710,7 @@ msgstr "beate@beispiel.de"
msgid "just now"
msgstr "gerade eben"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "bezeichnung"
@@ -30587,7 +30739,7 @@ msgstr "Liste"
msgid "logged in"
msgstr "Angemeldet"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "login_required"
@@ -30925,7 +31077,7 @@ msgstr "über Datenimport"
msgid "via Google Meet"
msgstr "über Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "über Benachrichtigung"
@@ -31035,7 +31187,7 @@ msgstr "{0} Diagramm"
msgid "{0} Dashboard"
msgstr "{0}-Dashboard"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31076,7 +31228,7 @@ msgstr "{0} Karte"
msgid "{0} Name"
msgstr "{0} ID"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern"
@@ -31086,7 +31238,7 @@ msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern
msgid "{0} Report"
msgstr "{0} Bericht(e)"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} Berichte"
@@ -31142,7 +31294,7 @@ msgstr "{0} und {1}"
msgid "{0} are currently {1}"
msgstr "{0} sind derzeit {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} sind erforderlich"
@@ -31159,7 +31311,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} hat {1} angehängt"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} darf nicht größer als {1} sein"
@@ -31236,7 +31388,7 @@ msgstr "{0} existiert nicht in Zeile {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31281,7 +31433,7 @@ msgstr "{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben"
msgid "{0} is a mandatory field"
msgstr "{0} ist ein Pflichtfeld"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} ist keine gültige Zip-Datei"
@@ -31330,7 +31482,7 @@ msgstr "{0} ist wie {1}"
msgid "{0} is mandatory"
msgstr "{0} ist erforderlich"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31350,12 +31502,12 @@ msgstr "{0} ist kein gültiger Kalender. Weiterleitung zum Standard-Kalender."
msgid "{0} is not a valid Cron expression."
msgstr "{0} ist kein gültiger Cron-Ausdruck."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ist kein gültiger DocType für Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} ist keine gültige E-Mail-Adresse"
@@ -31363,11 +31515,11 @@ msgstr "{0} ist keine gültige E-Mail-Adresse"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} ist kein gültiger ISO 3166 ALPHA-2-Code."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} ist kein gültiger Name"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} ist keine gültige Telefonnummer"
@@ -31387,7 +31539,7 @@ msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} ist kein gültiges Berichtsformat. Berichtsformat sollte eines der folgenden {1} sein"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} ist keine Zip-Datei"
@@ -31411,7 +31563,7 @@ msgstr "{0} ist keine von {1}"
msgid "{0} is not set"
msgstr "{0} ist nicht eingetragen"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}"
@@ -31421,8 +31573,8 @@ msgstr "{0} ist eine von {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} ist erforderlich"
@@ -31435,7 +31587,7 @@ msgstr "{0} ist eingetragen"
msgid "{0} is within {1}"
msgstr "{0} ist innerhalb von {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} Elemente ausgewählt"
@@ -31492,11 +31644,11 @@ msgstr "{0} darf nichts von {1} sein"
msgid "{0} must be one of {1}"
msgstr "{0} muss aus {1} sein"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} muss als erstes gesetzt sein"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} muss einmalig sein"
@@ -31521,11 +31673,11 @@ msgid "{0} not found"
msgstr "{0} nicht gefunden"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} von {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)"
@@ -31575,7 +31727,7 @@ msgstr "{0} hat seine Zuordnung entfernt."
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype"
@@ -31649,7 +31801,7 @@ msgstr "{0} bis {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} teilt dieses Dokument nicht mehr mit {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} aktualisiert"
@@ -31685,11 +31837,11 @@ msgstr "{0} {1} hinzugefügt"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} zum Dashboard hinzugefügt {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} existiert bereits"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} kann nicht \"{2}\" sein . Es sollte aus \"{3}\" sein."
@@ -31709,11 +31861,11 @@ msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} nicht gefunden"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Zeile {1}"
@@ -31721,35 +31873,35 @@ msgstr "{0}, Zeile {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} abgeschlossen | Bitte lassen Sie diese Registerkarte bis zum Abschluss geöffnet."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: \"Geändert\" kann nicht eingestellt werden ohne \"Abbruch\""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Kann nicht als \"als geändert markieren\" eingestellt werden, wenn nicht übertragbar"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Kann nicht als \"als übertragen markieren\" eingestellt werden, wenn nicht übertragbar"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: \"Abbruch\" kann nicht ohne \"Übertragen\" eingestellt werden"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Kann nicht auf \"Import\" eingestellt werden ohne \"Erstellen\""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Kann nicht auf \"Übertragen\", \"Stornieren\", \"Ändern\" eingestellt werden ohne \"Schreiben\""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Kann nicht auf \"Import\" eingestellt werden, da {1} nicht importierbar ist"
@@ -31777,11 +31929,11 @@ msgstr "{0}: Der Feldname {1} wird mehrmals in Zeilen {2} angezeigt."
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Der Feldtyp {1} für {2} kann nicht eindeutig sein"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Keine Grundberechtigungen festgelegt"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt"
@@ -31801,7 +31953,7 @@ msgstr "{0}: Die Optionen {1} müssen mit dem Doctype-Namen {2} für das Feld {3
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Andere Genehmigungsregeln können ebenfalls gelten"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können"
@@ -31822,7 +31974,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} ist auf Status {2} festgelegt"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
@@ -31858,11 +32010,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field
msgid "{} Complete"
msgstr "{} Komplett"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Ungültiger Python-Code in Zeile {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Possibly invalid python code.
{}"
@@ -31888,7 +32040,7 @@ msgstr "{} wurde deaktiviert. Es kann nur aktiviert werden, wenn {} aktiviert is
msgid "{} is not a valid date string."
msgstr "{} ist keine gültige Datumszeichenfolge."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} in PATH nicht gefunden! Dies ist erforderlich, um auf die Konsole zuzugreifen."
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 870c6a1c06..f8c71827b6 100644
--- a/frappe/locale/eo.po
+++ b/frappe/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:02\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "crwdns90524:0{0}crwdnd90524:0{1}crwdne90524:0"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "crwdns90526:0{0}crwdnd90526:0{1}crwdne90526:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0"
@@ -86,11 +86,11 @@ msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0"
msgid "'Recipients' not specified"
msgstr "crwdns90530:0crwdne90530:0"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr "crwdns158966:0{0}crwdne158966:0"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "crwdns90532:0{0}crwdne90532:0"
@@ -122,7 +122,7 @@ msgstr "crwdns127912:0crwdne127912:0"
msgid "0 is highest"
msgstr "crwdns127914:0crwdne127914:0"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "crwdns90542:0crwdne90542:0"
@@ -140,11 +140,11 @@ msgstr "crwdns90546:0crwdne90546:0"
msgid "1 Google Calendar Event synced."
msgstr "crwdns90548:0crwdne90548:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "crwdns110780:0crwdne110780:0"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "crwdns90552:0crwdne90552:0"
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr "crwdns90554:0crwdne90554:0"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "crwdns90556:0crwdne90556:0"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "crwdns90558:0crwdne90558:0"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "crwdns90560:0crwdne90560:0"
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr "crwdns158970:0{0}crwdne158970:0"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "crwdns90564:0crwdne90564:0"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "crwdns90566:0crwdne90566:0"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "crwdns90568:0crwdne90568:0"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "crwdns90570:0crwdne90570:0"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "crwdns90572:0crwdne90572:0"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "crwdns90574:0crwdne90574:0"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "crwdns90576:0crwdne90576:0"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "crwdns90578:0crwdne90578:0"
@@ -231,7 +231,7 @@ msgstr "crwdns90582:0crwdne90582:0"
msgid "5 Records"
msgstr "crwdns90584:0crwdne90584:0"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "crwdns90586:0crwdne90586:0"
@@ -267,6 +267,16 @@ msgstr "crwdns90594:0{0}crwdne90594:0"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "crwdns127922:0crwdne127922:0"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr "crwdns160156:0crwdne160156:0"
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr "crwdns160158:0crwdne160158:0"
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -570,11 +580,16 @@ msgstr "crwdns90640:0crwdne90640:0"
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "crwdns155934:0crwdne155934:0"
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "crwdns160160:0crwdne160160:0"
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "crwdns90644:0{0}crwdnd90644:0{1}crwdne90644:0"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "crwdns90646:0crwdne90646:0"
@@ -696,7 +711,7 @@ msgstr "crwdns158368:0crwdne158368:0"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -715,7 +730,7 @@ msgstr "crwdns127994:0crwdne127994:0"
msgid "API Key cannot be regenerated"
msgstr "crwdns127996:0crwdne127996:0"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "crwdns157436:0crwdne157436:0"
@@ -739,7 +754,7 @@ msgstr "crwdns155318:0crwdne155318:0"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -825,7 +840,7 @@ msgstr "crwdns128008:0crwdne128008:0"
msgid "Access Token URL"
msgstr "crwdns128010:0crwdne128010:0"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "crwdns90738:0crwdne90738:0"
@@ -941,7 +956,7 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "crwdns90776:0crwdne90776:0"
@@ -998,7 +1013,7 @@ msgstr "crwdns90802:0crwdne90802:0"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1009,7 +1024,7 @@ msgstr "crwdns90802:0crwdne90802:0"
msgid "Add"
msgstr "crwdns90808:0crwdne90808:0"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "crwdns110786:0crwdne110786:0"
@@ -1041,7 +1056,7 @@ msgstr "crwdns128032:0crwdne128032:0"
msgid "Add Border at Top"
msgstr "crwdns128034:0crwdne128034:0"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "crwdns142868:0crwdne142868:0"
@@ -1054,8 +1069,8 @@ msgid "Add Child"
msgstr "crwdns90826:0crwdne90826:0"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1149,7 +1164,7 @@ msgstr "crwdns90862:0crwdne90862:0"
msgid "Add Tags"
msgstr "crwdns90864:0crwdne90864:0"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "crwdns90866:0crwdne90866:0"
@@ -1324,6 +1339,7 @@ msgstr "crwdns128056:0crwdne128056:0"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1332,6 +1348,7 @@ msgstr "crwdns90916:0crwdne90916:0"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "crwdns128058:0crwdne128058:0"
@@ -1339,6 +1356,7 @@ msgstr "crwdns128058:0crwdne128058:0"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "crwdns128060:0crwdne128060:0"
@@ -1500,7 +1518,7 @@ msgstr "crwdns128088:0crwdne128088:0"
msgid "After Submit"
msgstr "crwdns128090:0crwdne128090:0"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "crwdns90980:0crwdne90980:0"
@@ -1527,11 +1545,11 @@ msgstr "crwdns128094:0crwdne128094:0"
msgid "Alerts and Notifications"
msgstr "crwdns90990:0crwdne90990:0"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "crwdns155510:0{0}crwdne155510:0"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "crwdns155512:0crwdne155512:0"
@@ -1978,6 +1996,12 @@ msgstr "crwdns91158:0{0}crwdne91158:0"
msgid "Alternative Email ID"
msgstr "crwdns128192:0crwdne128192:0"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "crwdns159970:0crwdne159970:0"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2054,6 +2078,11 @@ msgstr "crwdns151842:0crwdne151842:0"
msgid "Amendment naming rules updated."
msgstr "crwdns91190:0crwdne91190:0"
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "crwdns160162:0crwdne160162:0"
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "crwdns91192:0crwdne91192:0"
@@ -2236,7 +2265,7 @@ msgstr "crwdns128252:0crwdne128252:0"
msgid "Apply"
msgstr "crwdns142988:0crwdne142988:0"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "crwdns91270:0crwdne91270:0"
@@ -2321,7 +2350,7 @@ msgstr "crwdns91306:0crwdne91306:0"
msgid "Are you sure you want to cancel the invitation?"
msgstr "crwdns157294:0crwdne157294:0"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "crwdns104470:0crwdne104470:0"
@@ -2357,7 +2386,7 @@ msgstr "crwdns158706:0crwdne158706:0"
msgid "Are you sure you want to discard the changes?"
msgstr "crwdns91314:0crwdne91314:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "crwdns110808:0crwdne110808:0"
@@ -2365,7 +2394,7 @@ msgstr "crwdns110808:0crwdne110808:0"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "crwdns91316:0{0}crwdnd91316:0{1}crwdne91316:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "crwdns91318:0crwdne91318:0"
@@ -2420,6 +2449,12 @@ msgstr "crwdns91338:0crwdne91338:0"
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "crwdns91340:0{0}crwdnd91340:0{1}crwdne91340:0"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "crwdns159972:0crwdne159972:0"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2429,7 +2464,7 @@ msgstr "crwdns128278:0crwdne128278:0"
msgid "Assign To"
msgstr "crwdns91344:0crwdne91344:0"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "crwdns91346:0crwdne91346:0"
@@ -2572,7 +2607,7 @@ msgstr "crwdns91410:0crwdne91410:0"
msgid "Asynchronous"
msgstr "crwdns157298:0crwdne157298:0"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "crwdns91414:0crwdne91414:0"
@@ -2652,7 +2687,7 @@ msgstr "crwdns128304:0crwdne128304:0"
msgid "Attached To Name"
msgstr "crwdns128306:0crwdne128306:0"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "crwdns91456:0crwdne91456:0"
@@ -2668,7 +2703,7 @@ msgstr "crwdns128308:0crwdne128308:0"
msgid "Attachment Limit (MB)"
msgstr "crwdns128310:0crwdne128310:0"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "crwdns91468:0crwdne91468:0"
@@ -2690,11 +2725,11 @@ msgstr "crwdns128314:0crwdne128314:0"
msgid "Attachments"
msgstr "crwdns91476:0crwdne91476:0"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "crwdns91482:0crwdne91482:0"
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "crwdns91484:0crwdne91484:0"
@@ -3552,15 +3587,15 @@ msgstr "crwdns91880:0crwdne91880:0"
msgid "Bulk Edit"
msgstr "crwdns91882:0crwdne91882:0"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "crwdns91884:0{0}crwdne91884:0"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "crwdns127594:0crwdne127594:0"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "crwdns127596:0crwdne127596:0"
@@ -3784,7 +3819,7 @@ msgid "Camera"
msgstr "crwdns91992:0crwdne91992:0"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3844,7 +3879,7 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3852,7 +3887,7 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0"
msgid "Cancel"
msgstr "crwdns92010:0crwdne92010:0"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "crwdns92012:0crwdne92012:0"
@@ -3870,7 +3905,7 @@ msgstr "crwdns92026:0crwdne92026:0"
msgid "Cancel All Documents"
msgstr "crwdns92028:0crwdne92028:0"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "crwdns92032:0{0}crwdne92032:0"
@@ -3919,11 +3954,11 @@ msgstr "crwdns92056:0crwdne92056:0"
msgid "Cannot Remove"
msgstr "crwdns92058:0crwdne92058:0"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "crwdns92060:0crwdne92060:0"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "crwdns92062:0{0}crwdne92062:0"
@@ -3967,11 +4002,11 @@ msgstr "crwdns92080:0{0}crwdnd92080:0{1}crwdne92080:0"
msgid "Cannot create private workspace of other users"
msgstr "crwdns92082:0crwdne92082:0"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "crwdns92084:0crwdne92084:0"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "crwdns92086:0{0}crwdnd92086:0{1}crwdnd92086:0{2}crwdnd92086:0{3}crwdnd92086:0{4}crwdne92086:0"
@@ -4034,8 +4069,8 @@ msgstr "crwdns92114:0crwdne92114:0"
msgid "Cannot edit filters for standard charts"
msgstr "crwdns92116:0crwdne92116:0"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "crwdns127894:0crwdne127894:0"
@@ -4047,11 +4082,11 @@ msgstr "crwdns92118:0crwdne92118:0"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "crwdns92120:0{0}crwdne92120:0"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "crwdns92122:0crwdne92122:0"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "crwdns92124:0crwdne92124:0"
@@ -4059,7 +4094,7 @@ msgstr "crwdns92124:0crwdne92124:0"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "crwdns92126:0crwdne92126:0"
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "crwdns154588:0crwdne154588:0"
@@ -4075,7 +4110,7 @@ msgstr "crwdns92130:0crwdne92130:0"
msgid "Cannot match column {0} with any field"
msgstr "crwdns92132:0{0}crwdne92132:0"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "crwdns92134:0crwdne92134:0"
@@ -4104,11 +4139,11 @@ msgstr "crwdns92142:0{0}crwdne92142:0"
msgid "Cannot update {0}"
msgstr "crwdns92146:0{0}crwdne92146:0"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "crwdns157190:0crwdne157190:0"
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "crwdns92150:0{0}crwdne92150:0"
@@ -4380,11 +4415,11 @@ msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "crwdns92276:0crwdne92276:0"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "crwdns155514:0{0}crwdne155514:0"
@@ -4413,6 +4448,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "crwdns128632:0crwdne128632:0"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "crwdns128634:0crwdne128634:0"
@@ -4439,7 +4475,7 @@ msgstr "crwdns92298:0crwdne92298:0"
msgid "Clear All"
msgstr "crwdns155956:0crwdne155956:0"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "crwdns104478:0crwdne104478:0"
@@ -4516,24 +4552,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "crwdns92328:0{0}crwdne92328:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "crwdns92330:0crwdne92330:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "crwdns110842:0crwdne110842:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "crwdns110844:0crwdne110844:0"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "crwdns110846:0{0}crwdne110846:0"
@@ -4711,7 +4747,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "crwdns92402:0crwdne92402:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "crwdns92404:0crwdne92404:0"
@@ -4766,7 +4802,7 @@ msgstr "crwdns128674:0crwdne128674:0"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4822,11 +4858,11 @@ msgstr "crwdns92464:0crwdne92464:0"
msgid "Column Name cannot be empty"
msgstr "crwdns92468:0crwdne92468:0"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "crwdns110850:0crwdne110850:0"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "crwdns92470:0crwdne92470:0"
@@ -4853,7 +4889,7 @@ msgstr "crwdns128678:0crwdne128678:0"
msgid "Columns / Fields"
msgstr "crwdns128680:0crwdne128680:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "crwdns92484:0crwdne92484:0"
@@ -5068,8 +5104,8 @@ msgstr "crwdns152535:0crwdne152535:0"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5117,7 +5153,7 @@ msgstr "crwdns128720:0crwdne128720:0"
msgid "Configure Chart"
msgstr "crwdns92606:0crwdne92606:0"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "crwdns92608:0crwdne92608:0"
@@ -5142,7 +5178,7 @@ msgstr "crwdns128722:0crwdne128722:0"
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "crwdns111490:0crwdne111490:0"
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "crwdns92612:0crwdne92612:0"
@@ -5161,7 +5197,7 @@ msgstr "crwdns151116:0crwdne151116:0"
msgid "Confirm Deletion of Account"
msgstr "crwdns92616:0crwdne92616:0"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "crwdns92618:0crwdne92618:0"
@@ -5206,8 +5242,8 @@ msgstr "crwdns92634:0crwdne92634:0"
msgid "Connected User"
msgstr "crwdns128726:0crwdne128726:0"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "crwdns92642:0crwdne92642:0"
@@ -5258,6 +5294,10 @@ msgstr "crwdns128730:0crwdne128730:0"
msgid "Contact"
msgstr "crwdns92664:0crwdne92664:0"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "crwdns159204:0{0}crwdne159204:0"
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5321,7 +5361,7 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5410,7 +5450,7 @@ msgstr "crwdns92732:0crwdne92732:0"
msgid "Copy to Clipboard"
msgstr "crwdns148722:0crwdne148722:0"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "crwdns157438:0crwdne157438:0"
@@ -5419,7 +5459,7 @@ msgstr "crwdns157438:0crwdne157438:0"
msgid "Copyright"
msgstr "crwdns128758:0crwdne128758:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "crwdns92738:0crwdne92738:0"
@@ -5443,7 +5483,7 @@ msgstr "crwdns92744:0{0}crwdne92744:0"
msgid "Could not map column {0} to field {1}"
msgstr "crwdns92746:0{0}crwdnd92746:0{1}crwdne92746:0"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "crwdns155516:0{0}crwdne155516:0"
@@ -5496,13 +5536,14 @@ msgstr "crwdns128760:0crwdne128760:0"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "crwdns92764:0crwdne92764:0"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "crwdns92774:0crwdne92774:0"
@@ -5534,13 +5575,13 @@ msgstr "crwdns92780:0crwdne92780:0"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "crwdns92782:0crwdne92782:0"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "crwdns92790:0crwdne92790:0"
@@ -5554,7 +5595,7 @@ msgid "Create Card"
msgstr "crwdns92794:0crwdne92794:0"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "crwdns92796:0crwdne92796:0"
@@ -5588,12 +5629,12 @@ msgstr "crwdns128770:0crwdne128770:0"
msgid "Create New"
msgstr "crwdns92808:0crwdne92808:0"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "crwdns110866:0crwdne110866:0"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "crwdns92810:0crwdne92810:0"
@@ -5601,7 +5642,7 @@ msgstr "crwdns92810:0crwdne92810:0"
msgid "Create New Kanban Board"
msgstr "crwdns92812:0crwdne92812:0"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "crwdns92814:0crwdne92814:0"
@@ -5624,8 +5665,8 @@ msgstr "crwdns92822:0crwdne92822:0"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "crwdns92824:0{0}crwdne92824:0"
@@ -5641,7 +5682,7 @@ msgstr "crwdns92828:0crwdne92828:0"
msgid "Create or Edit Workflow"
msgstr "crwdns92830:0crwdne92830:0"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "crwdns92832:0{0}crwdne92832:0"
@@ -5651,7 +5692,7 @@ msgstr "crwdns92834:0crwdne92834:0"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "crwdns110870:0crwdne110870:0"
@@ -5988,7 +6029,7 @@ msgstr "crwdns155518:0{0}crwdnd155518:0{1}crwdne155518:0"
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "crwdns92994:0crwdne92994:0"
@@ -6023,7 +6064,7 @@ msgstr "crwdns93014:0{0}crwdnd93014:0{1}crwdne93014:0"
msgid "Customize"
msgstr "crwdns93016:0crwdne93016:0"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "crwdns93018:0crwdne93018:0"
@@ -6042,7 +6083,7 @@ msgstr "crwdns93022:0crwdne93022:0"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "crwdns93024:0crwdne93024:0"
@@ -6273,7 +6314,7 @@ msgstr "crwdns93156:0crwdne93156:0"
msgid "Data Import Template"
msgstr "crwdns93158:0crwdne93158:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "crwdns93160:0crwdne93160:0"
@@ -6304,7 +6345,7 @@ msgstr "crwdns93168:0crwdne93168:0"
msgid "Database Storage Usage By Tables"
msgstr "crwdns93170:0crwdne93170:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "crwdns93172:0crwdne93172:0"
@@ -6674,13 +6715,13 @@ msgstr "crwdns128908:0crwdne128908:0"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "crwdns93336:0crwdne93336:0"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "crwdns93338:0crwdne93338:0"
@@ -6713,7 +6754,7 @@ msgstr "crwdns143022:0crwdne143022:0"
msgid "Delete Data"
msgstr "crwdns93348:0crwdne93348:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "crwdns93350:0crwdne93350:0"
@@ -6727,7 +6768,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "crwdns143026:0crwdne143026:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "crwdns110882:0crwdne110882:0"
@@ -6769,12 +6810,12 @@ msgstr "crwdns143038:0crwdne143038:0"
msgid "Delete this record to allow sending to this email address"
msgstr "crwdns93356:0crwdne93356:0"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "crwdns93358:0{0}crwdne93358:0"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "crwdns93360:0{0}crwdne93360:0"
@@ -6810,7 +6851,7 @@ msgstr "crwdns143306:0crwdne143306:0"
msgid "Deleted Name"
msgstr "crwdns128914:0crwdne128914:0"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "crwdns127624:0crwdne127624:0"
@@ -6818,7 +6859,7 @@ msgstr "crwdns127624:0crwdne127624:0"
msgid "Deleted!"
msgstr "crwdns158716:0crwdne158716:0"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "crwdns93378:0{0}crwdne93378:0"
@@ -7271,10 +7312,14 @@ msgstr "crwdns158720:0crwdne158720:0"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "crwdns128982:0crwdne128982:0"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "crwdns93560:0crwdne93560:0"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "crwdns159974:0{0}crwdne159974:0"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "crwdns93564:0crwdne93564:0"
@@ -7698,13 +7743,13 @@ msgstr "crwdns129014:0crwdne129014:0"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "crwdns93754:0crwdne93754:0"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "crwdns93796:0crwdne93796:0"
@@ -7749,15 +7794,15 @@ msgstr "crwdns93812:0crwdne93812:0"
msgid "Document follow is not enabled for this user."
msgstr "crwdns148644:0crwdne148644:0"
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "crwdns93814:0crwdne93814:0"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "crwdns93816:0crwdne93816:0"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "crwdns93818:0crwdne93818:0"
@@ -7899,7 +7944,7 @@ msgstr "crwdns129040:0crwdne129040:0"
msgid "Double click to edit label"
msgstr "crwdns143042:0crwdne143042:0"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7932,7 +7977,7 @@ msgstr "crwdns93890:0crwdne93890:0"
msgid "Download PDF"
msgstr "crwdns111456:0crwdne111456:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "crwdns93892:0crwdne93892:0"
@@ -8028,7 +8073,7 @@ msgstr "crwdns93920:0crwdne93920:0"
msgid "Duplicate Filter Name"
msgstr "crwdns93922:0crwdne93922:0"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "crwdns93924:0crwdne93924:0"
@@ -8132,8 +8177,8 @@ msgstr "crwdns110894:0crwdne110894:0"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8145,7 +8190,7 @@ msgstr "crwdns110894:0crwdne110894:0"
msgid "Edit"
msgstr "crwdns93974:0crwdne93974:0"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "crwdns93976:0crwdne93976:0"
@@ -8155,7 +8200,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "crwdns148726:0crwdne148726:0"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "crwdns110896:0crwdne110896:0"
@@ -8184,7 +8229,7 @@ msgstr "crwdns93982:0crwdne93982:0"
msgid "Edit DocType"
msgstr "crwdns93984:0crwdne93984:0"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "crwdns93986:0crwdne93986:0"
@@ -8202,7 +8247,7 @@ msgstr "crwdns110902:0crwdne110902:0"
msgid "Edit Footer"
msgstr "crwdns143056:0crwdne143056:0"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "crwdns93990:0crwdne93990:0"
@@ -8304,7 +8349,7 @@ msgstr "crwdns94018:0{0}crwdne94018:0"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "crwdns94020:0crwdne94020:0"
@@ -8349,6 +8394,8 @@ msgstr "crwdns129070:0crwdne129070:0"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8367,6 +8414,8 @@ msgstr "crwdns129070:0crwdne129070:0"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "crwdns94034:0crwdne94034:0"
@@ -8486,6 +8535,7 @@ msgid "Email IDs"
msgstr "crwdns129080:0crwdne129080:0"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "crwdns129082:0crwdne129082:0"
@@ -8597,7 +8647,7 @@ msgstr "crwdns94172:0crwdne94172:0"
msgid "Email has been moved to trash"
msgstr "crwdns94174:0crwdne94174:0"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "crwdns151610:0crwdne151610:0"
@@ -8640,7 +8690,7 @@ msgstr "crwdns129108:0crwdne129108:0"
msgid "Embed code copied"
msgstr "crwdns111510:0crwdne111510:0"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "crwdns155522:0crwdne155522:0"
@@ -8648,7 +8698,7 @@ msgstr "crwdns155522:0crwdne155522:0"
msgid "Empty column"
msgstr "crwdns143066:0crwdne143066:0"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "crwdns155524:0crwdne155524:0"
@@ -9076,7 +9126,7 @@ msgstr "crwdns143308:0crwdne143308:0"
msgid "Error Message"
msgstr "crwdns129186:0crwdne129186:0"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "crwdns94412:0crwdne94412:0"
@@ -9104,9 +9154,9 @@ msgstr "crwdns94422:0crwdne94422:0"
msgid "Error in Header/Footer Script"
msgstr "crwdns110924:0crwdne110924:0"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "crwdns94424:0crwdne94424:0"
@@ -9126,19 +9176,19 @@ msgstr "crwdns155528:0{0}crwdne155528:0"
msgid "Error while connecting to email account {0}"
msgstr "crwdns94428:0{0}crwdne94428:0"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "crwdns94430:0{0}crwdne94430:0"
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "crwdns149060:0{0}crwdne149060:0"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "crwdns94434:0{0}crwdnd94434:0{1}crwdne94434:0"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "crwdns149064:0{0}crwdnd149064:0#{1}crwdnd149064:0{2}crwdne149064:0"
@@ -9287,7 +9337,7 @@ msgstr "crwdns155330:0crwdne155330:0"
msgid "Executing..."
msgstr "crwdns94496:0crwdne94496:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "crwdns94498:0{0}crwdne94498:0"
@@ -9313,12 +9363,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "crwdns94504:0crwdne94504:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "crwdns155530:0{0}crwdne155530:0"
@@ -9376,13 +9426,13 @@ msgstr "crwdns129232:0crwdne129232:0"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "crwdns94526:0crwdne94526:0"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "crwdns94528:0crwdne94528:0"
@@ -9575,7 +9625,7 @@ msgstr "crwdns94600:0crwdne94600:0"
msgid "Failed to connect to server"
msgstr "crwdns94602:0crwdne94602:0"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "crwdns94604:0crwdne94604:0"
@@ -9583,7 +9633,7 @@ msgstr "crwdns94604:0crwdne94604:0"
msgid "Failed to decrypt key {0}"
msgstr "crwdns148982:0{0}crwdne148982:0"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "crwdns127646:0{0}crwdnd127646:0{1}crwdne127646:0"
@@ -9739,7 +9789,7 @@ msgstr "crwdns94660:0crwdne94660:0"
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9822,7 +9872,7 @@ msgstr "crwdns94706:0{0}crwdnd94706:0{1}crwdne94706:0"
msgid "Field {0} not found."
msgstr "crwdns94708:0{0}crwdne94708:0"
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0"
@@ -9840,7 +9890,7 @@ msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0"
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "crwdns94710:0crwdne94710:0"
@@ -9853,7 +9903,7 @@ msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "crwdns94728:0{0}crwdne94728:0"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "crwdns94730:0{0}crwdne94730:0"
@@ -9869,11 +9919,11 @@ msgstr "crwdns94734:0crwdne94734:0"
msgid "Fieldname {0} appears multiple times"
msgstr "crwdns94736:0{0}crwdne94736:0"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "crwdns94740:0{0}crwdne94740:0"
@@ -9913,7 +9963,7 @@ msgstr "crwdns110936:0crwdne110936:0"
msgid "Fields Multicheck"
msgstr "crwdns129288:0crwdne129288:0"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "crwdns94760:0crwdne94760:0"
@@ -9921,7 +9971,7 @@ msgstr "crwdns94760:0crwdne94760:0"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "crwdns112694:0crwdne112694:0"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "crwdns155532:0crwdne155532:0"
@@ -9949,7 +9999,7 @@ msgstr "crwdns129292:0crwdne129292:0"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "crwdns94776:0{0}crwdnd94776:0{1}crwdne94776:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "crwdns94778:0{0}crwdnd94778:0{1}crwdnd94778:0{2}crwdne94778:0"
@@ -10015,7 +10065,7 @@ msgstr "crwdns129304:0crwdne129304:0"
msgid "File backup is ready"
msgstr "crwdns94810:0crwdne94810:0"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "crwdns94812:0{0}crwdne94812:0"
@@ -10023,7 +10073,7 @@ msgstr "crwdns94812:0{0}crwdne94812:0"
msgid "File not attached"
msgstr "crwdns94814:0crwdne94814:0"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "crwdns94816:0{0}crwdne94816:0"
@@ -10032,11 +10082,11 @@ msgstr "crwdns94816:0{0}crwdne94816:0"
msgid "File too big"
msgstr "crwdns94818:0crwdne94818:0"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "crwdns94820:0{0}crwdne94820:0"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "crwdns94822:0{0}crwdne94822:0"
@@ -10050,8 +10100,8 @@ msgstr "crwdns129306:0crwdne129306:0"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10090,11 +10140,11 @@ msgstr "crwdns94836:0crwdne94836:0"
msgid "Filter Values"
msgstr "crwdns129314:0crwdne129314:0"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "crwdns155534:0{0}crwdne155534:0"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "crwdns155536:0crwdne155536:0"
@@ -10171,7 +10221,7 @@ msgstr "crwdns129326:0crwdne129326:0"
msgid "Filters applied for {0}"
msgstr "crwdns94880:0{0}crwdne94880:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "crwdns94882:0crwdne94882:0"
@@ -10219,8 +10269,12 @@ msgstr "crwdns129334:0crwdne129334:0"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "crwdns94896:0crwdne94896:0"
@@ -10301,7 +10355,7 @@ msgstr "crwdns129348:0crwdne129348:0"
msgid "Folder name should not include '/' (slash)"
msgstr "crwdns94944:0crwdne94944:0"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "crwdns94946:0{0}crwdne94946:0"
@@ -10408,7 +10462,7 @@ msgstr "crwdns129368:0crwdne129368:0"
msgid "Footer HTML"
msgstr "crwdns129370:0crwdne129370:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "crwdns94996:0{0}crwdne94996:0"
@@ -10503,7 +10557,7 @@ msgstr "crwdns95024:0crwdne95024:0"
msgid "For Value"
msgstr "crwdns129392:0crwdne129392:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "crwdns95034:0crwdne95034:0"
@@ -10544,7 +10598,7 @@ msgstr "crwdns129400:0crwdne129400:0"
msgid "For updating, you can update only selective columns."
msgstr "crwdns95048:0crwdne95048:0"
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "crwdns95050:0{0}crwdnd95050:0{1}crwdnd95050:0{2}crwdnd95050:0{3}crwdne95050:0"
@@ -10788,7 +10842,7 @@ msgstr "crwdns95156:0crwdne95156:0"
msgid "From Date Field"
msgstr "crwdns129430:0crwdne129430:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "crwdns95162:0crwdne95162:0"
@@ -10850,13 +10904,13 @@ msgstr "crwdns95192:0crwdne95192:0"
msgid "Function {0} is not whitelisted."
msgstr "crwdns95194:0{0}crwdne95194:0"
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "crwdns155538:0{0}crwdne155538:0"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "crwdns95196:0crwdne95196:0"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "crwdns160164:0crwdne160164:0"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -10915,7 +10969,7 @@ msgstr "crwdns111514:0crwdne111514:0"
msgid "Generate Keys"
msgstr "crwdns129448:0crwdne129448:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "crwdns95224:0crwdne95224:0"
@@ -10930,7 +10984,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "crwdns157316:0crwdne157316:0"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "crwdns95228:0crwdne95228:0"
@@ -11137,10 +11191,6 @@ msgstr "crwdns129474:0crwdne129474:0"
msgid "Google Calendar"
msgstr "crwdns95306:0crwdne95306:0"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "crwdns95312:0{0}crwdne95312:0"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "crwdns95314:0{0}crwdnd95314:0{1}crwdne95314:0"
@@ -11335,14 +11385,10 @@ msgstr "crwdns129502:0crwdne129502:0"
msgid "Group By field is required to create a dashboard chart"
msgstr "crwdns95408:0crwdne95408:0"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "crwdns155540:0crwdne155540:0"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "crwdns95410:0crwdne95410:0"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11402,7 +11448,7 @@ msgstr "crwdns129510:0crwdne129510:0"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11507,7 +11553,7 @@ msgstr "crwdns129530:0crwdne129530:0"
msgid "Header HTML"
msgstr "crwdns129532:0crwdne129532:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "crwdns95488:0{0}crwdne95488:0"
@@ -11636,7 +11682,7 @@ msgstr "crwdns129552:0crwdne129552:0"
msgid "Helvetica Neue"
msgstr "crwdns129554:0crwdne129554:0"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "crwdns95544:0crwdne95544:0"
@@ -11672,7 +11718,7 @@ msgstr "crwdns110964:0crwdne110964:0"
msgid "Hidden Fields"
msgstr "crwdns129556:0crwdne129556:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "crwdns156080:0{0}crwdne156080:0"
@@ -11784,7 +11830,7 @@ msgstr "crwdns129578:0crwdne129578:0"
msgid "Hide Standard Menu"
msgstr "crwdns129580:0crwdne129580:0"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "crwdns95620:0crwdne95620:0"
@@ -11944,7 +11990,7 @@ msgstr "crwdns148656:0crwdne148656:0"
msgid "ID"
msgstr "crwdns95674:0crwdne95674:0"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12041,9 +12087,9 @@ msgstr "crwdns129618:0crwdne129618:0"
msgid "If Checked workflow status will not override status in list view"
msgstr "crwdns129620:0crwdne129620:0"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "crwdns95728:0crwdne95728:0"
@@ -12271,8 +12317,8 @@ msgstr "crwdns129680:0crwdne129680:0"
msgid "Illegal Document Status for {0}"
msgstr "crwdns95818:0{0}crwdne95818:0"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "crwdns95820:0crwdne95820:0"
@@ -12359,11 +12405,11 @@ msgstr "crwdns95860:0crwdne95860:0"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "crwdns111408:0crwdne111408:0"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "crwdns111412:0{0}crwdne111412:0"
@@ -12393,7 +12439,7 @@ msgstr "crwdns129692:0crwdne129692:0"
msgid "Import"
msgstr "crwdns95866:0crwdne95866:0"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "crwdns95868:0crwdne95868:0"
@@ -12621,15 +12667,16 @@ msgstr "crwdns95976:0crwdne95976:0"
msgid "Include Web View Link in Email"
msgstr "crwdns129732:0crwdne129732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "crwdns95980:0crwdne95980:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "crwdns156082:0crwdne156082:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "crwdns95982:0crwdne95982:0"
@@ -12676,7 +12723,7 @@ msgstr "crwdns95994:0crwdne95994:0"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "crwdns95996:0crwdne95996:0"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "crwdns95998:0crwdne95998:0"
@@ -12787,7 +12834,7 @@ msgstr "crwdns110970:0crwdne110970:0"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "crwdns96046:0crwdne96046:0"
@@ -12825,8 +12872,8 @@ msgstr "crwdns129762:0crwdne129762:0"
msgid "Instagram"
msgstr "crwdns157324:0crwdne157324:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "crwdns96062:0{0}crwdne96062:0"
@@ -12860,7 +12907,7 @@ msgstr "crwdns110976:0crwdne110976:0"
msgid "Insufficient Permission Level for {0}"
msgstr "crwdns96072:0{0}crwdne96072:0"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "crwdns96074:0{0}crwdne96074:0"
@@ -12976,7 +13023,7 @@ msgid "Invalid"
msgstr "crwdns129784:0crwdne129784:0"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12986,7 +13033,7 @@ msgstr "crwdns96130:0crwdne96130:0"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "crwdns96132:0{0}crwdne96132:0"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "crwdns96134:0crwdne96134:0"
@@ -13030,12 +13077,12 @@ msgstr "crwdns157326:0crwdne157326:0"
msgid "Invalid Fieldname"
msgstr "crwdns96150:0crwdne96150:0"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "crwdns96152:0crwdne96152:0"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "crwdns155544:0crwdne155544:0"
@@ -13089,7 +13136,7 @@ msgstr "crwdns96172:0{0}crwdne96172:0"
msgid "Invalid Output Format"
msgstr "crwdns96174:0crwdne96174:0"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "crwdns127664:0crwdne127664:0"
@@ -13103,11 +13150,11 @@ msgstr "crwdns96176:0crwdne96176:0"
msgid "Invalid Password"
msgstr "crwdns96178:0crwdne96178:0"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "crwdns96180:0crwdne96180:0"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "crwdns96182:0crwdne96182:0"
@@ -13124,7 +13171,7 @@ msgstr "crwdns96186:0crwdne96186:0"
msgid "Invalid Transition"
msgstr "crwdns96188:0crwdne96188:0"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13147,7 +13194,7 @@ msgstr "crwdns96194:0crwdne96194:0"
msgid "Invalid aggregate function"
msgstr "crwdns96196:0crwdne96196:0"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "crwdns155546:0{0}crwdne155546:0"
@@ -13155,19 +13202,19 @@ msgstr "crwdns155546:0{0}crwdne155546:0"
msgid "Invalid app"
msgstr "crwdns157328:0crwdne157328:0"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "crwdns155548:0{0}crwdne155548:0"
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "crwdns155550:0{0}crwdne155550:0"
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "crwdns155552:0{0}crwdne155552:0"
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "crwdns155554:0{0}crwdne155554:0"
@@ -13175,11 +13222,11 @@ msgstr "crwdns155554:0{0}crwdne155554:0"
msgid "Invalid column"
msgstr "crwdns96198:0crwdne96198:0"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "crwdns155556:0{0}crwdne155556:0"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "crwdns155558:0{0}crwdne155558:0"
@@ -13195,23 +13242,23 @@ msgstr "crwdns96202:0{0}crwdne96202:0"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "crwdns155560:0{0}crwdne155560:0"
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0"
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "crwdns155564:0{0}crwdne155564:0"
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "crwdns96206:0{0}crwdne96206:0"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "crwdns155566:0{0}crwdne155566:0"
@@ -13223,11 +13270,11 @@ msgstr "crwdns96208:0{0}crwdne96208:0"
msgid "Invalid file path: {0}"
msgstr "crwdns96210:0{0}crwdne96210:0"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "crwdns155568:0{0}crwdne155568:0"
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "crwdns155570:0{0}crwdne155570:0"
@@ -13235,11 +13282,11 @@ msgstr "crwdns155570:0{0}crwdne155570:0"
msgid "Invalid filter: {0}"
msgstr "crwdns96212:0{0}crwdne96212:0"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "crwdns155572:0{0}crwdne155572:0"
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr "crwdns155574:0crwdne155574:0"
@@ -13276,23 +13323,27 @@ msgstr "crwdns96222:0crwdne96222:0"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "crwdns96224:0crwdne96224:0"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "crwdns96226:0crwdne96226:0"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "crwdns160166:0crwdne160166:0"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr "crwdns157334:0crwdne157334:0"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "crwdns155576:0{0}crwdne155576:0"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "crwdns155578:0{0}crwdne155578:0"
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr "crwdns155580:0{0}crwdne155580:0"
@@ -13396,7 +13447,7 @@ msgstr "crwdns129792:0crwdne129792:0"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "crwdns96252:0crwdne96252:0"
@@ -13449,6 +13500,10 @@ msgstr "crwdns129804:0crwdne129804:0"
msgid "Is Global"
msgstr "crwdns96282:0crwdne96282:0"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "crwdns160168:0crwdne160168:0"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13475,8 +13530,13 @@ msgstr "crwdns129812:0crwdne129812:0"
msgid "Is Primary"
msgstr "crwdns129814:0crwdne129814:0"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "crwdns159206:0crwdne159206:0"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "crwdns129816:0crwdne129816:0"
@@ -13532,7 +13592,7 @@ msgstr "crwdns155334:0crwdne155334:0"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "crwdns96314:0crwdne96314:0"
@@ -13568,7 +13628,7 @@ msgstr "crwdns129836:0crwdne129836:0"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "crwdns96342:0crwdne96342:0"
@@ -13774,11 +13834,11 @@ msgstr "crwdns96438:0crwdne96438:0"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "crwdns96440:0crwdne96440:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "crwdns96444:0crwdne96444:0"
@@ -14068,7 +14128,7 @@ msgstr "crwdns96572:0crwdne96572:0"
msgid "Landing Page"
msgstr "crwdns129930:0crwdne129930:0"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "crwdns96576:0crwdne96576:0"
@@ -14076,10 +14136,13 @@ msgstr "crwdns96576:0crwdne96576:0"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "crwdns96578:0crwdne96578:0"
@@ -14167,8 +14230,12 @@ msgstr "crwdns129952:0crwdne129952:0"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "crwdns96608:0crwdne96608:0"
@@ -14314,7 +14381,7 @@ msgstr "crwdns129984:0crwdne129984:0"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "crwdns96684:0crwdne96684:0"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "crwdns96686:0{0}crwdne96686:0"
@@ -14364,7 +14431,7 @@ msgstr "crwdns129986:0crwdne129986:0"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14392,7 +14459,7 @@ msgstr "crwdns129992:0crwdne129992:0"
msgid "Letter Head Scripts"
msgstr "crwdns110988:0crwdne110988:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "crwdns96712:0crwdne96712:0"
@@ -14409,7 +14476,7 @@ msgstr "crwdns129994:0crwdne129994:0"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "crwdns96716:0crwdne96716:0"
@@ -14702,7 +14769,7 @@ msgstr "crwdns96864:0crwdne96864:0"
msgid "List Settings"
msgstr "crwdns130060:0crwdne130060:0"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "crwdns96868:0crwdne96868:0"
@@ -14753,7 +14820,7 @@ msgid "Load Balancing"
msgstr "crwdns130066:0crwdne130066:0"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "crwdns96888:0crwdne96888:0"
@@ -14773,7 +14840,7 @@ msgstr "crwdns143088:0crwdne143088:0"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "crwdns96892:0crwdne96892:0"
@@ -14916,7 +14983,7 @@ msgstr "crwdns96944:0crwdne96944:0"
msgid "Login and view in Browser"
msgstr "crwdns96948:0crwdne96948:0"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "crwdns96950:0{0}crwdne96950:0"
@@ -14924,7 +14991,7 @@ msgstr "crwdns96950:0{0}crwdne96950:0"
msgid "Login link sent to your email"
msgstr "crwdns110998:0crwdne110998:0"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "crwdns96952:0crwdne96952:0"
@@ -14977,7 +15044,7 @@ msgstr "crwdns130088:0crwdne130088:0"
msgid "Login with email link expiry (in minutes)"
msgstr "crwdns130090:0crwdne130090:0"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "crwdns96970:0crwdne96970:0"
@@ -14996,7 +15063,7 @@ msgstr "crwdns155976:0crwdne155976:0"
msgid "Logout"
msgstr "crwdns130092:0crwdne130092:0"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "crwdns96976:0crwdne96976:0"
@@ -15100,7 +15167,10 @@ msgid "Major"
msgstr "crwdns130110:0crwdne130110:0"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "crwdns130112:0crwdne130112:0"
@@ -15176,7 +15246,7 @@ msgstr "crwdns130120:0crwdne130120:0"
msgid "Mandatory Depends On (JS)"
msgstr "crwdns130122:0crwdne130122:0"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "crwdns97056:0crwdne97056:0"
@@ -15188,11 +15258,11 @@ msgstr "crwdns97058:0crwdne97058:0"
msgid "Mandatory field: {0}"
msgstr "crwdns97060:0{0}crwdne97060:0"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "crwdns97062:0{0}crwdnd97062:0{1}crwdne97062:0"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "crwdns97064:0{0}crwdne97064:0"
@@ -15374,7 +15444,7 @@ msgstr "crwdns97132:0{0}crwdne97132:0"
msgid "Maximum"
msgstr "crwdns130158:0crwdne130158:0"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "crwdns97136:0{0}crwdnd97136:0{1}crwdnd97136:0{2}crwdne97136:0"
@@ -15398,7 +15468,7 @@ msgstr "crwdns111006:0crwdne111006:0"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15617,7 +15687,7 @@ msgstr "crwdns130200:0crwdne130200:0"
msgid "Method Not Allowed"
msgstr "crwdns142858:0crwdne142858:0"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "crwdns97266:0crwdne97266:0"
@@ -15633,6 +15703,11 @@ msgstr "crwdns130202:0crwdne130202:0"
msgid "Middle Name"
msgstr "crwdns130204:0crwdne130204:0"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "crwdns160170:0crwdne160170:0"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15703,7 +15778,7 @@ msgstr "crwdns97290:0crwdne97290:0"
msgid "Missing Field"
msgstr "crwdns97292:0crwdne97292:0"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "crwdns97294:0crwdne97294:0"
@@ -15739,6 +15814,11 @@ msgstr "crwdns97304:0crwdne97304:0"
msgid "Mobile No"
msgstr "crwdns97306:0crwdne97306:0"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "crwdns160172:0crwdne160172:0"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15764,7 +15844,7 @@ msgstr "crwdns130212:0crwdne130212:0"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15940,10 +16020,12 @@ msgstr "crwdns149126:0crwdne149126:0"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "crwdns130230:0crwdne130230:0"
@@ -15973,7 +16055,7 @@ msgstr "crwdns97456:0crwdne97456:0"
msgid "Move"
msgstr "crwdns97458:0crwdne97458:0"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "crwdns97460:0crwdne97460:0"
@@ -16009,7 +16091,7 @@ msgstr "crwdns143092:0crwdne143092:0"
msgid "Move the current field and the following fields to a new column"
msgstr "crwdns143094:0crwdne143094:0"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "crwdns97472:0crwdne97472:0"
@@ -16059,7 +16141,7 @@ msgstr "crwdns130242:0{0}crwdnd130242:0{0}crwdne130242:0"
msgid "Must be of type \"Attach Image\""
msgstr "crwdns130244:0crwdne130244:0"
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "crwdns97490:0crwdne97490:0"
@@ -16077,7 +16159,7 @@ msgid "Mx"
msgstr "crwdns148678:0crwdne148678:0"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16117,7 +16199,7 @@ msgstr "crwdns130250:0crwdne130250:0"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16219,12 +16301,12 @@ msgstr "crwdns130264:0crwdne130264:0"
msgid "Navbar Template Values"
msgstr "crwdns130266:0crwdne130266:0"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "crwdns97564:0crwdne97564:0"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "crwdns97566:0crwdne97566:0"
@@ -16239,6 +16321,10 @@ msgstr "crwdns97568:0crwdne97568:0"
msgid "Navigation Settings"
msgstr "crwdns130268:0crwdne130268:0"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "crwdns159976:0crwdne159976:0"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "crwdns97572:0crwdne97572:0"
@@ -16247,7 +16333,7 @@ msgstr "crwdns97572:0crwdne97572:0"
msgid "Negative Value"
msgstr "crwdns97576:0crwdne97576:0"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "crwdns155586:0crwdne155586:0"
@@ -16260,6 +16346,12 @@ msgstr "crwdns97578:0crwdne97578:0"
msgid "Network Printer Settings"
msgstr "crwdns97580:0crwdne97580:0"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "crwdns159978:0crwdne159978:0"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16268,7 +16360,7 @@ msgstr "crwdns97580:0crwdne97580:0"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16329,7 +16421,7 @@ msgstr "crwdns97604:0crwdne97604:0"
msgid "New Folder"
msgstr "crwdns97606:0crwdne97606:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "crwdns97608:0crwdne97608:0"
@@ -16364,7 +16456,7 @@ msgstr "crwdns111022:0crwdne111022:0"
msgid "New Onboarding"
msgstr "crwdns111024:0crwdne111024:0"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "crwdns97622:0crwdne97622:0"
@@ -16460,7 +16552,7 @@ msgstr "crwdns130276:0crwdne130276:0"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "crwdns97640:0{0}crwdne97640:0"
@@ -16612,7 +16704,7 @@ msgstr "crwdns130294:0crwdne130294:0"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "crwdns97696:0crwdne97696:0"
@@ -16717,7 +16809,7 @@ msgstr "crwdns97738:0{0}crwdne97738:0"
msgid "No New notifications"
msgstr "crwdns111046:0crwdne111046:0"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "crwdns97740:0crwdne97740:0"
@@ -16761,7 +16853,7 @@ msgstr "crwdns97752:0crwdne97752:0"
msgid "No Roles Specified"
msgstr "crwdns97754:0crwdne97754:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "crwdns97756:0crwdne97756:0"
@@ -16769,7 +16861,7 @@ msgstr "crwdns97756:0crwdne97756:0"
msgid "No Suggestions"
msgstr "crwdns127876:0crwdne127876:0"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "crwdns97758:0crwdne97758:0"
@@ -16845,7 +16937,7 @@ msgstr "crwdns157354:0crwdne157354:0"
msgid "No failed logs"
msgstr "crwdns111062:0crwdne111062:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "crwdns111064:0crwdne111064:0"
@@ -16869,7 +16961,7 @@ msgstr "crwdns97790:0crwdne97790:0"
msgid "No matching records. Search something new"
msgstr "crwdns97792:0crwdne97792:0"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "crwdns97794:0crwdne97794:0"
@@ -16913,7 +17005,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "crwdns97810:0{0}crwdnd97810:0{1}crwdne97810:0"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "crwdns97812:0{0}crwdne97812:0"
@@ -16925,7 +17017,7 @@ msgstr "crwdns97814:0{0}crwdnd97814:0{1}crwdnd97814:0{2}crwdne97814:0"
msgid "No records deleted"
msgstr "crwdns97816:0crwdne97816:0"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "crwdns97818:0{0}crwdne97818:0"
@@ -16961,11 +17053,11 @@ msgstr "crwdns97824:0{0}crwdne97824:0"
msgid "No {0} Found"
msgstr "crwdns111076:0{0}crwdne111076:0"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "crwdns111078:0{0}crwdne111078:0"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "crwdns97826:0{0}crwdnd97826:0{0}crwdne97826:0"
@@ -16974,7 +17066,7 @@ msgid "No {0} mail"
msgstr "crwdns97828:0{0}crwdne97828:0"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "crwdns111418:0crwdne111418:0"
@@ -17038,7 +17130,7 @@ msgstr "crwdns97850:0crwdne97850:0"
msgid "Not Equals"
msgstr "crwdns97852:0crwdne97852:0"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "crwdns97854:0crwdne97854:0"
@@ -17064,9 +17156,9 @@ msgstr "crwdns97862:0crwdne97862:0"
msgid "Not Nullable"
msgstr "crwdns130314:0crwdne130314:0"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17085,7 +17177,7 @@ msgstr "crwdns97870:0crwdne97870:0"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17136,7 +17228,7 @@ msgstr "crwdns97892:0crwdne97892:0"
msgid "Not allowed for {0}: {1}"
msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "crwdns97896:0{0}crwdnd97896:0{0}crwdne97896:0"
@@ -17168,12 +17260,12 @@ msgstr "crwdns97908:0crwdne97908:0"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "crwdns97910:0crwdne97910:0"
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "crwdns97912:0crwdne97912:0"
@@ -17219,7 +17311,7 @@ msgstr "crwdns130318:0crwdne130318:0"
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "crwdns130320:0crwdne130320:0"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "crwdns111420:0crwdne111420:0"
@@ -17291,15 +17383,15 @@ msgstr "crwdns97970:0crwdne97970:0"
msgid "Notification sent to"
msgstr "crwdns111084:0crwdne111084:0"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "crwdns142914:0{0}crwdne142914:0"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "crwdns142916:0{0}crwdnd142916:0{1}crwdnd142916:0{2}crwdne142916:0"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "crwdns142918:0{0}crwdne142918:0"
@@ -17413,7 +17505,7 @@ msgstr "crwdns130348:0crwdne130348:0"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "crwdns98018:0crwdne98018:0"
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "crwdns98020:0crwdne98020:0"
@@ -17685,7 +17777,7 @@ msgstr "crwdns98098:0crwdne98098:0"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "crwdns98100:0crwdne98100:0"
@@ -17774,11 +17866,11 @@ msgstr "crwdns98142:0crwdne98142:0"
msgid "Only reports of type Report Builder can be edited"
msgstr "crwdns98144:0crwdne98144:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "crwdns98146:0crwdne98146:0"
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "crwdns151810:0crwdne151810:0"
@@ -17874,7 +17966,7 @@ msgstr "crwdns155340:0crwdne155340:0"
msgid "Open in a new tab"
msgstr "crwdns143102:0crwdne143102:0"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "crwdns98186:0crwdne98186:0"
@@ -17923,7 +18015,7 @@ msgstr "crwdns130426:0crwdne130426:0"
msgid "Operation"
msgstr "crwdns130428:0crwdne130428:0"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "crwdns98200:0{0}crwdne98200:0"
@@ -17969,6 +18061,7 @@ msgstr "crwdns130432:0crwdne130432:0"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17977,6 +18070,7 @@ msgstr "crwdns130432:0crwdne130432:0"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "crwdns111106:0crwdne111106:0"
@@ -18006,7 +18100,7 @@ msgstr "crwdns98240:0{0}crwdne98240:0"
msgid "Options is required for field {0} of type {1}"
msgstr "crwdns98242:0{0}crwdnd98242:0{1}crwdne98242:0"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "crwdns98244:0{0}crwdne98244:0"
@@ -18022,7 +18116,7 @@ msgstr "crwdns130436:0crwdne130436:0"
msgid "Order"
msgstr "crwdns130438:0crwdne130438:0"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "crwdns155590:0crwdne155590:0"
@@ -18038,7 +18132,7 @@ msgstr "crwdns130440:0crwdne130440:0"
msgid "Org History Heading"
msgstr "crwdns130442:0crwdne130442:0"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "crwdns98256:0crwdne98256:0"
@@ -18120,7 +18214,7 @@ msgstr "crwdns130460:0crwdne130460:0"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "crwdns98288:0crwdne98288:0"
@@ -18153,10 +18247,6 @@ msgstr "crwdns130466:0crwdne130466:0"
msgid "PDF Settings"
msgstr "crwdns130468:0crwdne130468:0"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr "crwdns158980:0crwdne158980:0"
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "crwdns98298:0crwdne98298:0"
@@ -18368,7 +18458,7 @@ msgstr "crwdns130496:0crwdne130496:0"
msgid "Parent Document Type"
msgstr "crwdns130498:0crwdne130498:0"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "crwdns98394:0crwdne98394:0"
@@ -18472,8 +18562,8 @@ msgstr "crwdns130516:0crwdne130516:0"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18496,7 +18586,7 @@ msgstr "crwdns98450:0crwdne98450:0"
msgid "Password Reset Link Generation Limit"
msgstr "crwdns130518:0crwdne130518:0"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "crwdns98454:0crwdne98454:0"
@@ -18533,7 +18623,7 @@ msgstr "crwdns142862:0crwdne142862:0"
msgid "Password set"
msgstr "crwdns98468:0crwdne98468:0"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "crwdns98470:0crwdne98470:0"
@@ -18545,7 +18635,7 @@ msgstr "crwdns98472:0crwdne98472:0"
msgid "Passwords do not match"
msgstr "crwdns98474:0crwdne98474:0"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "crwdns98476:0crwdne98476:0"
@@ -18696,7 +18786,7 @@ msgstr "crwdns98536:0{0}crwdne98536:0"
msgid "Permanently delete {0}?"
msgstr "crwdns98538:0{0}crwdne98538:0"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "crwdns98540:0crwdne98540:0"
@@ -18756,16 +18846,16 @@ msgstr "crwdns130556:0crwdne130556:0"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "crwdns98558:0crwdne98558:0"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "crwdns98572:0crwdne98572:0"
@@ -18827,15 +18917,18 @@ msgstr "crwdns98584:0crwdne98584:0"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18848,11 +18941,11 @@ msgstr "crwdns130562:0crwdne130562:0"
msgid "Phone No."
msgstr "crwdns130564:0crwdne130564:0"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0"
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18934,11 +19027,11 @@ msgstr "crwdns98636:0crwdne98636:0"
msgid "Please attach a file first."
msgstr "crwdns98638:0crwdne98638:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "crwdns98640:0crwdne98640:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "crwdns98642:0crwdne98642:0"
@@ -18950,7 +19043,7 @@ msgstr "crwdns98644:0crwdne98644:0"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "crwdns98648:0crwdne98648:0"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "crwdns98650:0{0}crwdne98650:0"
@@ -18990,7 +19083,7 @@ msgstr "crwdns98664:0{0}crwdne98664:0"
msgid "Please contact your system manager to install correct version."
msgstr "crwdns127708:0crwdne127708:0"
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "crwdns98668:0crwdne98668:0"
@@ -19006,11 +19099,11 @@ msgstr "crwdns98672:0{0}crwdne98672:0"
msgid "Please do not change the template headings."
msgstr "crwdns98674:0crwdne98674:0"
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "crwdns98676:0crwdne98676:0"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "crwdns98678:0crwdne98678:0"
@@ -19019,7 +19112,7 @@ msgstr "crwdns98678:0crwdne98678:0"
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "crwdns98680:0crwdne98680:0"
@@ -19134,7 +19227,7 @@ msgstr "crwdns98734:0crwdne98734:0"
msgid "Please save to edit the template."
msgstr "crwdns98736:0crwdne98736:0"
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "crwdns98740:0crwdne98740:0"
@@ -19142,15 +19235,15 @@ msgstr "crwdns98740:0crwdne98740:0"
msgid "Please select Entity Type first"
msgstr "crwdns98742:0crwdne98742:0"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "crwdns98744:0crwdne98744:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "crwdns111128:0crwdne111128:0"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "crwdns98746:0{1}crwdne98746:0"
@@ -19174,7 +19267,7 @@ msgstr "crwdns98752:0crwdne98752:0"
msgid "Please select applicable Doctypes"
msgstr "crwdns98754:0crwdne98754:0"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "crwdns98756:0{0}crwdne98756:0"
@@ -19204,7 +19297,7 @@ msgstr "crwdns98768:0crwdne98768:0"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "crwdns98770:0crwdne98770:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "crwdns98772:0crwdne98772:0"
@@ -19224,7 +19317,7 @@ msgstr "crwdns98778:0crwdne98778:0"
msgid "Please set the series to be used."
msgstr "crwdns98780:0crwdne98780:0"
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "crwdns98782:0crwdne98782:0"
@@ -19339,7 +19432,7 @@ msgstr "crwdns98830:0crwdne98830:0"
msgid "Portal Settings"
msgstr "crwdns98832:0crwdne98832:0"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "crwdns98836:0crwdne98836:0"
@@ -19367,6 +19460,7 @@ msgstr "crwdns130592:0crwdne130592:0"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "crwdns130594:0crwdne130594:0"
@@ -19375,7 +19469,7 @@ msgstr "crwdns130594:0crwdne130594:0"
msgid "Posting Timestamp"
msgstr "crwdns130596:0crwdne130596:0"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "crwdns155592:0{0}crwdne155592:0"
@@ -19390,6 +19484,10 @@ msgstr "crwdns155592:0{0}crwdne155592:0"
msgid "Precision"
msgstr "crwdns130600:0crwdne130600:0"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "crwdns159238:0{0}crwdnd159238:0{1}crwdnd159238:0{2}crwdne159238:0"
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "crwdns98862:0crwdne98862:0"
@@ -19438,7 +19536,7 @@ msgstr "crwdns154308:0crwdne154308:0"
msgid "Prepared Report User"
msgstr "crwdns98878:0crwdne98878:0"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "crwdns98880:0crwdne98880:0"
@@ -19573,13 +19671,13 @@ msgstr "crwdns112704:0{0}crwdne112704:0"
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "crwdns98924:0crwdne98924:0"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "crwdns98926:0crwdne98926:0"
@@ -19649,7 +19747,7 @@ msgstr "crwdns130624:0crwdne130624:0"
msgid "Print Format Type"
msgstr "crwdns130626:0crwdne130626:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "crwdns155998:0crwdne155998:0"
@@ -19688,7 +19786,7 @@ msgstr "crwdns130630:0crwdne130630:0"
msgid "Print Language"
msgstr "crwdns111422:0crwdne111422:0"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "crwdns98984:0crwdne98984:0"
@@ -19706,7 +19804,7 @@ msgstr "crwdns130632:0crwdne130632:0"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "crwdns98988:0crwdne98988:0"
@@ -19830,11 +19928,11 @@ msgstr "crwdns130648:0{{ reference_doctype }}crwdnd130648:0{{ reference_name }}c
msgid "Proceed"
msgstr "crwdns99050:0crwdne99050:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "crwdns99052:0crwdne99052:0"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "crwdns99054:0crwdne99054:0"
@@ -19851,11 +19949,21 @@ msgstr "crwdns148692:0crwdne148692:0"
msgid "Profile"
msgstr "crwdns130650:0crwdne130650:0"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "crwdns160174:0crwdne160174:0"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "crwdns160176:0crwdne160176:0"
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "crwdns99060:0crwdne99060:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "crwdns99062:0crwdne99062:0"
@@ -19899,7 +20007,7 @@ msgstr "crwdns130654:0crwdne130654:0"
msgid "Protect Attached Files"
msgstr "crwdns154485:0crwdne154485:0"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "crwdns154487:0crwdne154487:0"
@@ -20072,7 +20180,7 @@ msgstr "crwdns99152:0crwdne99152:0"
msgid "QR Code for Login Verification"
msgstr "crwdns99154:0crwdne99154:0"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "crwdns158730:0crwdne158730:0"
@@ -20279,7 +20387,7 @@ msgstr "crwdns130722:0crwdne130722:0"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "crwdns99256:0crwdne99256:0"
@@ -20405,11 +20513,11 @@ msgstr "crwdns130740:0crwdne130740:0"
msgid "Reason"
msgstr "crwdns99322:0crwdne99322:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "crwdns99328:0crwdne99328:0"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "crwdns99330:0crwdne99330:0"
@@ -20790,8 +20898,8 @@ msgstr "crwdns99526:0crwdne99526:0"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20822,13 +20930,13 @@ msgstr "crwdns158984:0crwdne158984:0"
msgid "Refresh Token"
msgstr "crwdns130798:0crwdne130798:0"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "crwdns111160:0crwdne111160:0"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "crwdns99546:0crwdne99546:0"
@@ -21141,8 +21249,8 @@ msgstr "crwdns99642:0crwdne99642:0"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21213,11 +21321,11 @@ msgstr "crwdns99694:0crwdne99694:0"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "crwdns99696:0crwdne99696:0"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "crwdns99708:0crwdne99708:0"
@@ -21251,21 +21359,21 @@ msgstr "crwdns142864:0crwdne142864:0"
msgid "Report bug"
msgstr "crwdns148700:0crwdne148700:0"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "crwdns99718:0crwdne99718:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "crwdns99720:0crwdne99720:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "crwdns99722:0crwdne99722:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "crwdns99724:0crwdne99724:0"
@@ -21285,7 +21393,7 @@ msgstr "crwdns99730:0crwdne99730:0"
msgid "Report was not saved (there were errors)"
msgstr "crwdns99732:0crwdne99732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "crwdns99734:0crwdne99734:0"
@@ -21321,7 +21429,7 @@ msgstr "crwdns99746:0crwdne99746:0"
msgid "Reports & Masters"
msgstr "crwdns99750:0crwdne99750:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "crwdns99752:0crwdne99752:0"
@@ -21340,7 +21448,10 @@ msgid "Request Body"
msgstr "crwdns130840:0crwdne130840:0"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "crwdns130842:0crwdne130842:0"
@@ -21392,6 +21503,11 @@ msgstr "crwdns99776:0crwdne99776:0"
msgid "Request URL"
msgstr "crwdns130856:0crwdne130856:0"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "crwdns160178:0crwdne160178:0"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21447,7 +21563,7 @@ msgstr "crwdns99800:0crwdne99800:0"
msgid "Reset Fields"
msgstr "crwdns99802:0crwdne99802:0"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "crwdns99804:0crwdne99804:0"
@@ -21455,11 +21571,11 @@ msgstr "crwdns99804:0crwdne99804:0"
msgid "Reset Layout"
msgstr "crwdns99806:0crwdne99806:0"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "crwdns99808:0crwdne99808:0"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21494,7 +21610,7 @@ msgstr "crwdns143128:0crwdne143128:0"
msgid "Reset sorting"
msgstr "crwdns99820:0crwdne99820:0"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "crwdns99824:0crwdne99824:0"
@@ -21634,7 +21750,7 @@ msgstr "crwdns99880:0crwdne99880:0"
msgid "Reverse Icon Color"
msgstr "crwdns130888:0crwdne130888:0"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "crwdns99892:0{0}crwdnd99892:0{1}crwdnd99892:0{2}crwdnd99892:0{3}crwdne99892:0"
@@ -21746,7 +21862,7 @@ msgstr "crwdns99960:0crwdne99960:0"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "crwdns99964:0crwdne99964:0"
@@ -21756,7 +21872,7 @@ msgstr "crwdns99964:0crwdne99964:0"
msgid "Role Permissions Manager"
msgstr "crwdns99968:0crwdne99968:0"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "crwdns99970:0crwdne99970:0"
@@ -21901,7 +22017,7 @@ msgstr "crwdns130930:0crwdne130930:0"
msgid "Route: Example \"/app\""
msgstr "crwdns130932:0crwdne130932:0"
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "crwdns100054:0crwdne100054:0"
@@ -21909,12 +22025,12 @@ msgstr "crwdns100054:0crwdne100054:0"
msgid "Row #"
msgstr "crwdns111178:0crwdne111178:0"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "crwdns100056:0{0}crwdnd100056:0{1}crwdne100056:0"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "crwdns100058:0#{0}crwdne100058:0"
@@ -21949,11 +22065,11 @@ msgstr "crwdns111182:0crwdne111182:0"
msgid "Row {0}"
msgstr "crwdns111184:0{0}crwdne111184:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "crwdns100068:0{0}crwdne100068:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "crwdns100070:0{0}crwdne100070:0"
@@ -21972,7 +22088,10 @@ msgid "Rows Removed"
msgstr "crwdns111188:0crwdne111188:0"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "crwdns155342:0crwdne155342:0"
@@ -22180,8 +22299,8 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22204,11 +22323,11 @@ msgstr "crwdns100178:0crwdne100178:0"
msgid "Save Customizations"
msgstr "crwdns100180:0crwdne100180:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "crwdns100182:0crwdne100182:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "crwdns100184:0crwdne100184:0"
@@ -22580,7 +22699,7 @@ msgstr "crwdns131022:0crwdne131022:0"
msgid "See all Activity"
msgstr "crwdns111200:0crwdne111200:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "crwdns100338:0crwdne100338:0"
@@ -22644,7 +22763,7 @@ msgstr "crwdns100362:0crwdne100362:0"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "crwdns111204:0crwdne111204:0"
@@ -22665,7 +22784,7 @@ msgid "Select Column"
msgstr "crwdns100386:0crwdne100386:0"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "crwdns100388:0crwdne100388:0"
@@ -22724,7 +22843,7 @@ msgstr "crwdns100412:0crwdne100412:0"
msgid "Select Field..."
msgstr "crwdns111208:0crwdne111208:0"
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "crwdns100414:0crwdne100414:0"
@@ -22844,14 +22963,14 @@ msgid "Select a field to edit its properties."
msgstr "crwdns143144:0crwdne143144:0"
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "crwdns100464:0crwdne100464:0"
+msgid "Select a group {0} first."
+msgstr "crwdns160180:0{0}crwdne160180:0"
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "crwdns100466:0crwdne100466:0"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "crwdns100468:0crwdne100468:0"
@@ -22881,13 +23000,13 @@ msgstr "crwdns100474:0crwdne100474:0"
msgid "Select atleast 2 actions"
msgstr "crwdns100476:0crwdne100476:0"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "crwdns100478:0crwdne100478:0"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "crwdns100480:0crwdne100480:0"
@@ -23105,7 +23224,7 @@ msgstr "crwdns131102:0crwdne131102:0"
msgid "Sender Email Field"
msgstr "crwdns131104:0crwdne131104:0"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "crwdns100592:0crwdne100592:0"
@@ -23209,7 +23328,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
msgid "Server Action"
msgstr "crwdns131128:0crwdne131128:0"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "crwdns100646:0crwdne100646:0"
@@ -23275,7 +23394,7 @@ msgstr "crwdns100674:0crwdne100674:0"
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "crwdns100680:0crwdne100680:0"
@@ -23284,14 +23403,14 @@ msgstr "crwdns100680:0crwdne100680:0"
msgid "Session Expiry (idle timeout)"
msgstr "crwdns131134:0crwdne131134:0"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "crwdns100684:0{0}crwdne100684:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "crwdns142894:0crwdne142894:0"
@@ -23317,12 +23436,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "crwdns131138:0crwdne131138:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "crwdns100694:0crwdne100694:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23333,7 +23452,7 @@ msgstr "crwdns100696:0crwdne100696:0"
msgid "Set Filters for {0}"
msgstr "crwdns100698:0{0}crwdne100698:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "crwdns148706:0crwdne148706:0"
@@ -23387,7 +23506,7 @@ msgstr "crwdns100716:0crwdne100716:0"
msgid "Set Role For"
msgstr "crwdns131146:0crwdne131146:0"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "crwdns100720:0crwdne100720:0"
@@ -23406,7 +23525,7 @@ msgstr "crwdns100724:0crwdne100724:0"
msgid "Set all public"
msgstr "crwdns100726:0crwdne100726:0"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "crwdns100728:0crwdne100728:0"
@@ -23425,18 +23544,21 @@ msgstr "crwdns131150:0crwdne131150:0"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "crwdns142896:0crwdne142896:0"
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "crwdns131152:0crwdne131152:0"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "crwdns159240:0crwdne159240:0"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23546,7 +23668,7 @@ msgstr "crwdns111216:0crwdne111216:0"
msgid "Setup > User Permissions"
msgstr "crwdns111218:0crwdne111218:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "crwdns100774:0crwdne100774:0"
@@ -23687,6 +23809,12 @@ msgstr "crwdns131180:0crwdne131180:0"
msgid "Show Error"
msgstr "crwdns100834:0crwdne100834:0"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "crwdns159980:0crwdne159980:0"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "crwdns100838:0crwdne100838:0"
@@ -23815,7 +23943,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "crwdns156020:0crwdne156020:0"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "crwdns100886:0crwdne100886:0"
@@ -24022,36 +24150,36 @@ msgstr "crwdns100954:0crwdne100954:0"
msgid "Signups have been disabled for this website."
msgstr "crwdns100956:0crwdne100956:0"
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "crwdns131244:0crwdne131244:0"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "crwdns131246:0crwdne131246:0"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "crwdns159982:0crwdne159982:0"
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "crwdns131248:0crwdne131248:0"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "crwdns159984:0crwdne159984:0"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "crwdns159986:0crwdne159986:0"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "crwdns131250:0crwdne131250:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "crwdns100966:0crwdne100966:0"
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "crwdns100968:0crwdne100968:0"
@@ -24059,7 +24187,7 @@ msgstr "crwdns100968:0crwdne100968:0"
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 "crwdns100972:0crwdne100972:0"
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "crwdns111242:0crwdne111242:0"
@@ -24319,7 +24447,7 @@ msgstr "crwdns101064:0{0}crwdne101064:0"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24386,8 +24514,8 @@ msgstr "crwdns151440:0crwdne151440:0"
msgid "Splash Image"
msgstr "crwdns131300:0crwdne131300:0"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "crwdns101088:0crwdne101088:0"
@@ -24419,7 +24547,7 @@ msgstr "crwdns101090:0crwdne101090:0"
msgid "Standard"
msgstr "crwdns101094:0crwdne101094:0"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "crwdns101108:0crwdne101108:0"
@@ -24435,7 +24563,7 @@ msgstr "crwdns101112:0crwdne101112:0"
msgid "Standard Permissions"
msgstr "crwdns142898:0crwdne142898:0"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "crwdns101114:0crwdne101114:0"
@@ -24553,6 +24681,7 @@ msgstr "crwdns131314:0crwdne131314:0"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24688,7 +24817,7 @@ msgstr "crwdns101252:0crwdne101252:0"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "crwdns152394:0crwdne152394:0"
@@ -24718,7 +24847,7 @@ msgstr "crwdns131334:0crwdne131334:0"
msgid "Store Attached PDF Document"
msgstr "crwdns131336:0crwdne131336:0"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "crwdns157442:0crwdne157442:0"
@@ -24816,7 +24945,7 @@ msgstr "crwdns101284:0crwdne101284:0"
msgid "Subject Field"
msgstr "crwdns131358:0crwdne131358:0"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "crwdns101310:0crwdne101310:0"
@@ -24830,6 +24959,7 @@ msgstr "crwdns101312:0crwdne101312:0"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24838,10 +24968,11 @@ msgstr "crwdns101312:0crwdne101312:0"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "crwdns101314:0crwdne101314:0"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "crwdns101316:0crwdne101316:0"
@@ -24851,7 +24982,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "crwdns111258:0crwdne111258:0"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "crwdns101328:0crwdne101328:0"
@@ -24899,7 +25030,7 @@ msgstr "crwdns101344:0crwdne101344:0"
msgid "Submit this document to confirm"
msgstr "crwdns101346:0crwdne101346:0"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "crwdns101348:0{0}crwdne101348:0"
@@ -24949,7 +25080,7 @@ msgstr "crwdns131368:0crwdne131368:0"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25164,7 +25295,7 @@ msgstr "crwdns101474:0crwdne101474:0"
msgid "Syncing {0} of {1}"
msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "crwdns101478:0crwdne101478:0"
@@ -25475,7 +25606,7 @@ msgstr "crwdns131410:0crwdne131410:0"
msgid "Table Trimmed"
msgstr "crwdns112742:0crwdne112742:0"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "crwdns101536:0crwdne101536:0"
@@ -25690,7 +25821,7 @@ msgstr "crwdns101628:0crwdne101628:0"
msgid "The Auto Repeat for this document has been disabled."
msgstr "crwdns101630:0crwdne101630:0"
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "crwdns101632:0crwdne101632:0"
@@ -25705,7 +25836,7 @@ msgstr "crwdns131442:0crwdne131442:0"
msgid "The Condition '{0}' is invalid"
msgstr "crwdns101636:0{0}crwdne101636:0"
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr "crwdns101638:0crwdne101638:0"
@@ -25758,7 +25889,7 @@ msgstr "crwdns101654:0crwdne101654:0"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "crwdns142920:0crwdne142920:0"
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "crwdns111470:0crwdne111470:0"
@@ -25788,7 +25919,7 @@ msgstr "crwdns131448:0crwdne131448:0"
msgid "The field {0} is mandatory"
msgstr "crwdns101664:0{0}crwdne101664:0"
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr "crwdns101666:0crwdne101666:0"
@@ -25859,8 +25990,8 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
-msgstr "crwdns158986:0crwdne158986:0"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "crwdns159242:0{0}crwdnd159242:0{0}crwdnd159242:0{1}crwdne159242:0"
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
@@ -25870,7 +26001,7 @@ msgstr "crwdns101696:0crwdne101696:0"
msgid "The reset password link has either been used before or is invalid"
msgstr "crwdns101698:0crwdne101698:0"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "crwdns101700:0crwdne101700:0"
@@ -25882,7 +26013,7 @@ msgstr "crwdns101702:0{0}crwdne101702:0"
msgid "The selected document {0} is not a {1}."
msgstr "crwdns101704:0{0}crwdnd101704:0{1}crwdne101704:0"
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "crwdns101706:0crwdne101706:0"
@@ -25943,12 +26074,12 @@ msgstr "crwdns111276:0crwdne111276:0"
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "crwdns101730:0{0}crwdnd101730:0{1}crwdne101730:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "crwdns111278:0{0}crwdne111278:0"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "crwdns101732:0crwdne101732:0"
@@ -25972,11 +26103,11 @@ msgstr "crwdns157366:0crwdne157366:0"
msgid "There is nothing new to show you right now."
msgstr "crwdns112744:0crwdne112744:0"
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "crwdns101740:0{0}crwdne101740:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "crwdns111280:0{0}crwdne111280:0"
@@ -25988,7 +26119,7 @@ msgstr "crwdns101742:0crwdne101742:0"
msgid "There was an error building this page"
msgstr "crwdns101746:0crwdne101746:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "crwdns101748:0crwdne101748:0"
@@ -26045,7 +26176,7 @@ msgstr "crwdns131474:0crwdne131474:0"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "crwdns101768:0crwdne101768:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "crwdns101774:0crwdne101774:0"
@@ -26053,6 +26184,10 @@ msgstr "crwdns101774:0crwdne101774:0"
msgid "This Month"
msgstr "crwdns155052:0crwdne155052:0"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "crwdns159208:0crwdne159208:0"
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "crwdns155054:0crwdne155054:0"
@@ -26078,6 +26213,11 @@ msgstr "crwdns101776:0crwdne101776:0"
msgid "This cannot be undone"
msgstr "crwdns101778:0crwdne101778:0"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "crwdns159244:0crwdne159244:0"
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26096,7 +26236,7 @@ msgstr "crwdns112748:0crwdne112748:0"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "crwdns112750:0crwdne112750:0"
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "crwdns111472:0crwdne111472:0"
@@ -26138,7 +26278,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr "crwdns131480:0crwdne131480:0"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "crwdns154489:0crwdne154489:0"
@@ -26173,7 +26313,7 @@ msgstr "crwdns148744:0crwdne148744:0"
msgid "This goes above the slideshow."
msgstr "crwdns131484:0crwdne131484:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "crwdns101812:0crwdne101812:0"
@@ -26223,7 +26363,7 @@ msgstr "crwdns101834:0crwdne101834:0"
msgid "This month"
msgstr "crwdns101836:0crwdne101836:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
@@ -26231,7 +26371,7 @@ msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
msgid "This report was generated on {0}"
msgstr "crwdns101842:0{0}crwdne101842:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "crwdns101844:0{0}crwdne101844:0"
@@ -26373,9 +26513,11 @@ msgstr "crwdns131508:0crwdne131508:0"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26636,7 +26778,7 @@ msgstr "crwdns102048:0crwdne102048:0"
msgid "To generate password click {0}"
msgstr "crwdns155060:0{0}crwdne155060:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "crwdns102050:0{0}crwdne102050:0"
@@ -26711,7 +26853,7 @@ msgstr "crwdns102084:0crwdne102084:0"
msgid "Toggle Sidebar"
msgstr "crwdns102086:0crwdne102086:0"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "crwdns102088:0crwdne102088:0"
@@ -26837,7 +26979,7 @@ msgstr "crwdns131574:0crwdne131574:0"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "crwdns102140:0crwdne102140:0"
@@ -26958,7 +27100,7 @@ msgstr "crwdns111548:0crwdne111548:0"
msgid "Tracking"
msgstr "crwdns148952:0crwdne148952:0"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "crwdns102180:0crwdne102180:0"
@@ -26994,7 +27136,7 @@ msgstr "crwdns131616:0crwdne131616:0"
msgid "Translatable"
msgstr "crwdns131618:0crwdne131618:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "crwdns154320:0crwdne154320:0"
@@ -27156,7 +27298,7 @@ msgstr "crwdns131640:0crwdne131640:0"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27249,7 +27391,7 @@ msgstr "crwdns131654:0crwdne131654:0"
msgid "URL for documentation or help"
msgstr "crwdns131656:0crwdne131656:0"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "crwdns102322:0crwdne102322:0"
@@ -27352,7 +27494,7 @@ msgstr "crwdns102338:0crwdne102338:0"
msgid "Unable to update event"
msgstr "crwdns102340:0crwdne102340:0"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "crwdns102342:0{0}crwdne102342:0"
@@ -27361,7 +27503,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0"
msgid "Unassign Condition"
msgstr "crwdns131662:0crwdne131662:0"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "crwdns151458:0crwdne151458:0"
@@ -27377,7 +27519,7 @@ msgstr "crwdns102350:0crwdne102350:0"
msgid "Undo last action"
msgstr "crwdns102352:0crwdne102352:0"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr "crwdns155596:0{0}crwdne155596:0"
@@ -27424,7 +27566,7 @@ msgstr "crwdns102366:0{0}crwdne102366:0"
msgid "Unknown Rounding Method: {}"
msgstr "crwdns102368:0crwdne102368:0"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "crwdns102370:0crwdne102370:0"
@@ -27490,8 +27632,8 @@ msgstr "crwdns154322:0crwdne154322:0"
msgid "Unsubscribed"
msgstr "crwdns102394:0crwdne102394:0"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr "crwdns155598:0{0}crwdne155598:0"
@@ -27525,7 +27667,7 @@ msgstr "crwdns102410:0crwdne102410:0"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "crwdns102412:0crwdne102412:0"
@@ -27559,6 +27701,11 @@ msgstr "crwdns102426:0crwdne102426:0"
msgid "Update Password"
msgstr "crwdns149018:0crwdne149018:0"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "crwdns160182:0crwdne160182:0"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27617,7 +27764,7 @@ msgstr "crwdns102450:0crwdne102450:0"
msgid "Updated successfully"
msgstr "crwdns102452:0crwdne102452:0"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "crwdns102456:0crwdne102456:0"
@@ -27774,11 +27921,7 @@ msgstr "crwdns131718:0crwdne131718:0"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "crwdns152254:0crwdne152254:0"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "crwdns102510:0{0}crwdne102510:0"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "crwdns102512:0crwdne102512:0"
@@ -28000,12 +28143,12 @@ msgstr "crwdns102624:0crwdne102624:0"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "crwdns102628:0crwdne102628:0"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "crwdns102630:0crwdne102630:0"
@@ -28149,7 +28292,7 @@ msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0"
msgid "User {0} is disabled"
msgstr "crwdns102688:0{0}crwdne102688:0"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "crwdns127782:0{0}crwdne127782:0"
@@ -28277,8 +28420,8 @@ msgstr "crwdns131778:0crwdne131778:0"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28310,7 +28453,7 @@ msgstr "crwdns131784:0crwdne131784:0"
msgid "Value To Be Set"
msgstr "crwdns131786:0crwdne131786:0"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "crwdns102750:0{0}crwdne102750:0"
@@ -28326,11 +28469,11 @@ msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0"
msgid "Value for a check field can be either 0 or 1"
msgstr "crwdns102756:0crwdne102756:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "crwdns102758:0{0}crwdnd102758:0{1}crwdnd102758:0{2}crwdne102758:0"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "crwdns102760:0{0}crwdne102760:0"
@@ -28355,7 +28498,7 @@ msgstr "crwdns156052:0crwdne156052:0"
msgid "Value to Validate"
msgstr "crwdns131790:0crwdne131790:0"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "crwdns102770:0crwdne102770:0"
@@ -28447,7 +28590,7 @@ msgstr "crwdns102800:0crwdne102800:0"
msgid "View Audit Trail"
msgstr "crwdns102802:0crwdne102802:0"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "crwdns148750:0crwdne148750:0"
@@ -28459,7 +28602,7 @@ msgstr "crwdns152398:0crwdne152398:0"
msgid "View Full Log"
msgstr "crwdns111324:0crwdne111324:0"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "crwdns102808:0crwdne102808:0"
@@ -28469,7 +28612,7 @@ msgstr "crwdns102808:0crwdne102808:0"
msgid "View Log"
msgstr "crwdns102810:0crwdne102810:0"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "crwdns102812:0crwdne102812:0"
@@ -28585,6 +28728,7 @@ msgid "Warehouse"
msgstr "crwdns131818:0crwdne131818:0"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "crwdns131820:0crwdne131820:0"
@@ -28679,7 +28823,7 @@ msgstr "crwdns102894:0crwdne102894:0"
msgid "Web Page Block"
msgstr "crwdns102900:0crwdne102900:0"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "crwdns102902:0crwdne102902:0"
@@ -29069,7 +29213,7 @@ msgstr "crwdns103094:0crwdne103094:0"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "crwdns152665:0crwdne152665:0"
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "crwdns103098:0crwdne103098:0"
@@ -29230,7 +29374,7 @@ msgstr "crwdns112760:0crwdne112760:0"
msgid "Workspace"
msgstr "crwdns103156:0crwdne103156:0"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "crwdns103162:0{0}crwdne103162:0"
@@ -29323,7 +29467,7 @@ msgstr "crwdns127790:0crwdne127790:0"
msgid "Write"
msgstr "crwdns131894:0crwdne131894:0"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "crwdns103194:0crwdne103194:0"
@@ -29352,7 +29496,7 @@ msgstr "crwdns103204:0crwdne103204:0"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "crwdns103206:0crwdne103206:0"
@@ -29414,7 +29558,7 @@ msgstr "crwdns131908:0crwdne131908:0"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "crwdns103238:0crwdne103238:0"
@@ -29450,6 +29594,10 @@ msgstr "crwdns158988:0{0}crwdne158988:0"
msgid "You added {0} rows to {1}"
msgstr "crwdns158990:0{0}crwdnd158990:0{1}crwdne158990:0"
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "crwdns159988:0crwdne159988:0"
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "crwdns103256:0crwdne103256:0"
@@ -29488,12 +29636,12 @@ msgstr "crwdns103268:0crwdne103268:0"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "crwdns103270:0crwdne103270:0"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "crwdns103272:0crwdne103272:0"
@@ -29501,7 +29649,7 @@ msgstr "crwdns103272:0crwdne103272:0"
msgid "You are not allowed to send emails related to this document"
msgstr "crwdns103274:0crwdne103274:0"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "crwdns103276:0crwdne103276:0"
@@ -29574,11 +29722,11 @@ msgstr "crwdns103302:0{0}crwdne103302:0"
msgid "You can continue with the onboarding after exploring this page"
msgstr "crwdns103304:0crwdne103304:0"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "crwdns142902:0{0}crwdne142902:0"
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "crwdns103306:0crwdne103306:0"
@@ -29628,11 +29776,11 @@ msgstr "crwdns111342:0crwdne111342:0"
msgid "You can use wildcard %"
msgstr "crwdns103320:0crwdne103320:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "crwdns103322:0{0}crwdne103322:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "crwdns103324:0{0}crwdne103324:0"
@@ -29650,7 +29798,7 @@ msgstr "crwdns103328:0{1}crwdne103328:0"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "crwdns103330:0crwdne103330:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "crwdns103334:0{0}crwdne103334:0"
@@ -29693,15 +29841,15 @@ msgstr "crwdns103348:0crwdne103348:0"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "crwdns103350:0crwdne103350:0"
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "crwdns103352:0crwdne103352:0"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr "crwdns155600:0{0}crwdne155600:0"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
@@ -29713,11 +29861,11 @@ msgstr "crwdns103360:0crwdne103360:0"
msgid "You don't have access to Report: {0}"
msgstr "crwdns103362:0{0}crwdne103362:0"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "crwdns103364:0{0}crwdne103364:0"
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "crwdns103366:0crwdne103366:0"
@@ -29737,7 +29885,7 @@ msgstr "crwdns158742:0crwdne158742:0"
msgid "You have been successfully logged out"
msgstr "crwdns103378:0crwdne103378:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "crwdns103380:0{0}crwdne103380:0"
@@ -29765,7 +29913,7 @@ msgstr "crwdns103390:0{0}crwdne103390:0"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "crwdns111346:0crwdne111346:0"
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "crwdns103392:0{0}crwdne103392:0"
@@ -29782,11 +29930,11 @@ msgstr "crwdns103396:0crwdne103396:0"
msgid "You must add atleast one link."
msgstr "crwdns103398:0crwdne103398:0"
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "crwdns103400:0crwdne103400:0"
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "crwdns103402:0crwdne103402:0"
@@ -29810,7 +29958,7 @@ msgstr "crwdns112716:0crwdne112716:0"
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "crwdns103406:0crwdne103406:0"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "crwdns103408:0crwdne103408:0"
@@ -29901,6 +30049,10 @@ msgstr "crwdns103436:0crwdne103436:0"
msgid "You viewed this"
msgstr "crwdns103438:0crwdne103438:0"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "crwdns159990:0crwdne159990:0"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr "crwdns157380:0{0}crwdne157380:0"
@@ -29946,7 +30098,7 @@ msgstr "crwdns103446:0crwdne103446:0"
msgid "Your account has been deleted"
msgstr "crwdns103448:0crwdne103448:0"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "crwdns103450:0{0}crwdne103450:0"
@@ -30008,11 +30160,11 @@ msgstr "crwdns131910:0crwdne131910:0"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "crwdns103468:0crwdne103468:0"
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr "crwdns158998:0crwdne158998:0"
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "crwdns159246:0{0}crwdne159246:0"
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "crwdns103470:0crwdne103470:0"
@@ -30320,7 +30472,7 @@ msgstr "crwdns103730:0crwdne103730:0"
msgid "just now"
msgstr "crwdns103732:0crwdne103732:0"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "crwdns103734:0crwdne103734:0"
@@ -30349,7 +30501,7 @@ msgstr "crwdns131988:0crwdne131988:0"
msgid "logged in"
msgstr "crwdns103752:0crwdne103752:0"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "crwdns111362:0crwdne111362:0"
@@ -30687,7 +30839,7 @@ msgstr "crwdns104008:0crwdne104008:0"
msgid "via Google Meet"
msgstr "crwdns132068:0crwdne132068:0"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "crwdns104012:0crwdne104012:0"
@@ -30797,7 +30949,7 @@ msgstr "crwdns104062:0{0}crwdne104062:0"
msgid "{0} Dashboard"
msgstr "crwdns104064:0{0}crwdne104064:0"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30838,7 +30990,7 @@ msgstr "crwdns104078:0{0}crwdne104078:0"
msgid "{0} Name"
msgstr "crwdns104082:0{0}crwdne104082:0"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwdne104084:0"
@@ -30848,7 +31000,7 @@ msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwd
msgid "{0} Report"
msgstr "crwdns104086:0{0}crwdne104086:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "crwdns111368:0{0}crwdne111368:0"
@@ -30904,7 +31056,7 @@ msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0"
msgid "{0} are currently {1}"
msgstr "crwdns104118:0{0}crwdnd104118:0{1}crwdne104118:0"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "crwdns104120:0{0}crwdne104120:0"
@@ -30921,7 +31073,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "crwdns104126:0{0}crwdnd104126:0{1}crwdne104126:0"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "crwdns104508:0{0}crwdnd104508:0{1}crwdne104508:0"
@@ -30998,7 +31150,7 @@ msgstr "crwdns104166:0{0}crwdnd104166:0{1}crwdne104166:0"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "crwdns104168:0{0}crwdnd104168:0{1}crwdne104168:0"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0"
@@ -31043,7 +31195,7 @@ msgstr "crwdns104198:0{0}crwdnd104198:0{1}crwdne104198:0"
msgid "{0} is a mandatory field"
msgstr "crwdns104200:0{0}crwdne104200:0"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "crwdns104202:0{0}crwdne104202:0"
@@ -31092,7 +31244,7 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0"
msgid "{0} is mandatory"
msgstr "crwdns104224:0{0}crwdne104224:0"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0"
@@ -31112,12 +31264,12 @@ msgstr "crwdns104230:0{0}crwdne104230:0"
msgid "{0} is not a valid Cron expression."
msgstr "crwdns111446:0{0}crwdne111446:0"
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "crwdns104232:0{0}crwdne104232:0"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "crwdns104234:0{0}crwdne104234:0"
@@ -31125,11 +31277,11 @@ msgstr "crwdns104234:0{0}crwdne104234:0"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "crwdns152102:0{0}crwdne152102:0"
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "crwdns104236:0{0}crwdne104236:0"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "crwdns104238:0{0}crwdne104238:0"
@@ -31149,7 +31301,7 @@ msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "crwdns104246:0{0}crwdnd104246:0{1}crwdne104246:0"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "crwdns104248:0{0}crwdne104248:0"
@@ -31173,7 +31325,7 @@ msgstr "crwdns104254:0{0}crwdnd104254:0{1}crwdne104254:0"
msgid "{0} is not set"
msgstr "crwdns104256:0{0}crwdne104256:0"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0"
@@ -31183,8 +31335,8 @@ msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "crwdns104262:0{0}crwdne104262:0"
@@ -31197,7 +31349,7 @@ msgstr "crwdns104264:0{0}crwdne104264:0"
msgid "{0} is within {1}"
msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "crwdns104268:0{0}crwdne104268:0"
@@ -31254,11 +31406,11 @@ msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0"
msgid "{0} must be one of {1}"
msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "crwdns104288:0{0}crwdne104288:0"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "crwdns104290:0{0}crwdne104290:0"
@@ -31283,11 +31435,11 @@ msgid "{0} not found"
msgstr "crwdns104298:0{0}crwdne104298:0"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0"
@@ -31337,7 +31489,7 @@ msgstr "crwdns104320:0{0}crwdne104320:0"
msgid "{0} removed {1} rows from {2}"
msgstr "crwdns159006:0{0}crwdnd159006:0{1}crwdnd159006:0{2}crwdne159006:0"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "crwdns111370:0{0}crwdne111370:0"
@@ -31411,7 +31563,7 @@ msgstr "crwdns104350:0{0}crwdnd104350:0{1}crwdne104350:0"
msgid "{0} un-shared this document with {1}"
msgstr "crwdns104352:0{0}crwdnd104352:0{1}crwdne104352:0"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "crwdns104354:0{0}crwdne104354:0"
@@ -31447,11 +31599,11 @@ msgstr "crwdns104368:0{0}crwdnd104368:0{1}crwdne104368:0"
msgid "{0} {1} added to Dashboard {2}"
msgstr "crwdns104370:0{0}crwdnd104370:0{1}crwdnd104370:0{2}crwdne104370:0"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "crwdns104372:0{0}crwdnd104372:0{1}crwdne104372:0"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "crwdns104374:0{0}crwdnd104374:0{1}crwdnd104374:0{2}crwdnd104374:0{3}crwdne104374:0"
@@ -31471,11 +31623,11 @@ msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0"
msgid "{0} {1} not found"
msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "crwdns104384:0{0}crwdnd104384:0{1}crwdnd104384:0{2}crwdnd104384:0{3}crwdne104384:0"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "crwdns104386:0{0}crwdnd104386:0{1}crwdne104386:0"
@@ -31483,35 +31635,35 @@ msgstr "crwdns104386:0{0}crwdnd104386:0{1}crwdne104386:0"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "crwdns151120:0{0}crwdnd151120:0{1}crwdne151120:0"
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "crwdns104388:0{0}crwdnd104388:0{1}crwdnd104388:0{3}crwdnd104388:0{2}crwdne104388:0"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "crwdns104390:0{0}crwdne104390:0"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "crwdns104392:0{0}crwdne104392:0"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "crwdns104394:0{0}crwdne104394:0"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "crwdns104396:0{0}crwdne104396:0"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "crwdns104398:0{0}crwdne104398:0"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "crwdns104400:0{0}crwdne104400:0"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "crwdns104402:0{0}crwdnd104402:0{1}crwdne104402:0"
@@ -31539,11 +31691,11 @@ msgstr "crwdns104412:0{0}crwdnd104412:0{1}crwdnd104412:0{2}crwdne104412:0"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "crwdns104414:0{0}crwdnd104414:0{1}crwdnd104414:0{2}crwdne104414:0"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "crwdns104416:0{0}crwdne104416:0"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "crwdns104418:0{0}crwdnd104418:0{1}crwdne104418:0"
@@ -31563,7 +31715,7 @@ msgstr "crwdns104424:0{0}crwdnd104424:0{1}crwdnd104424:0{2}crwdnd104424:0{3}crwd
msgid "{0}: Other permission rules may also apply"
msgstr "crwdns111372:0{0}crwdne111372:0"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "crwdns104426:0{0}crwdne104426:0"
@@ -31584,7 +31736,7 @@ msgstr "crwdns104432:0{0}crwdnd104432:0{1}crwdne104432:0"
msgid "{0}: {1} is set to state {2}"
msgstr "crwdns104434:0{0}crwdnd104434:0{1}crwdnd104434:0{2}crwdne104434:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0"
@@ -31620,11 +31772,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0"
msgid "{} Complete"
msgstr "crwdns104450:0crwdne104450:0"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "crwdns104452:0crwdne104452:0"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "crwdns104454:0crwdne104454:0"
@@ -31650,7 +31802,7 @@ msgstr "crwdns104460:0crwdne104460:0"
msgid "{} is not a valid date string."
msgstr "crwdns104462:0crwdne104462:0"
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "crwdns104464:0crwdne104464:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index f8e2e2c8a5..c7a42409da 100644
--- a/frappe/locale/es.po
+++ b/frappe/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'En Búsqueda Global' no está permitido para el tipo {0} en la fila {1}
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'En vista de lista' no está permitido para el campo {0} del tipo {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón {1}"
@@ -86,11 +86,11 @@ msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón {
msgid "'Recipients' not specified"
msgstr "'Destinatarios' no especificados"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' no es una URL válida"
@@ -122,7 +122,7 @@ msgstr "0 - Borrador; 1 - Validado; 2 - Cancelado"
msgid "0 is highest"
msgstr "0 es más alto"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Verdadero y 0 = Falso"
@@ -141,11 +141,11 @@ msgstr "1 Día"
msgid "1 Google Calendar Event synced."
msgstr "1 evento de Google Calendar sincronizado."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Informe"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "Hace 1 día"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 hora"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "Hace una hora"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "Hace un minuto"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "Hace 1 mes"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "Hace 1 segundo"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "Hace 1 semana"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "Hace 1 año"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "Hace 2 horas"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "Hace 2 meses"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "Hace 2 semanas"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "Hace 2 años"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "Hace 3 minutos"
@@ -232,7 +232,7 @@ msgstr "4 horas"
msgid "5 Records"
msgstr "5 registros"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "Hace 5 días"
@@ -268,6 +268,16 @@ msgstr "{0} no es una URL válida"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Por favor, no lo actualice, ya que puede estropear su formulario. Utilice la opción Personalizar vista de formulario y campos personalizados para establecer las propiedades.
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -704,11 +714,16 @@ msgstr "El nombre de un DocType debe empezar por una letra y sólo puede estar f
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Ya existe un campo con el nombre {0} en {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Ya existe un archivo con el mismo nombre {}"
@@ -830,7 +845,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -849,7 +864,7 @@ msgstr "Clave API y secreto para interactuar con el servidor de retransmisión.
msgid "API Key cannot be regenerated"
msgstr "No se puede regenerar la clave API"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -873,7 +888,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -959,7 +974,7 @@ msgstr "Token de Acceso"
msgid "Access Token URL"
msgstr "URL de Token de Acceso"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Acceso no permitido desde esta dirección IP"
@@ -1075,7 +1090,7 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Acciones"
@@ -1132,7 +1147,7 @@ msgstr "Registro de Actividad"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1143,7 +1158,7 @@ msgstr "Registro de Actividad"
msgid "Add"
msgstr "Agregar"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Añadir / Eliminar Columnas"
@@ -1175,7 +1190,7 @@ msgstr "Añadir borde al final"
msgid "Add Border at Top"
msgstr "Añadir borde al principio"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Agregar Tarjeta al tablero"
@@ -1188,8 +1203,8 @@ msgid "Add Child"
msgstr "Crear subcategoría"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1283,7 +1298,7 @@ msgstr "Añadir Suscriptores"
msgid "Add Tags"
msgstr "Añadir etiquetas"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Añadir etiquetas"
@@ -1458,6 +1473,7 @@ msgstr "Permisos Adicionales"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1466,6 +1482,7 @@ msgstr "Dirección"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Dirección línea 1"
@@ -1473,6 +1490,7 @@ msgstr "Dirección línea 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Dirección línea 2"
@@ -1634,7 +1652,7 @@ msgstr "Después de validar"
msgid "After Submit"
msgstr "Después de validar"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "El campo Agregado es necesario para crear una Widget numérico"
@@ -1661,11 +1679,11 @@ msgstr "Alerta"
msgid "Alerts and Notifications"
msgstr "Alertas y Notificaciones"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -2113,6 +2131,12 @@ msgstr "También se agrega el campo de dependencia de estado {0}"
msgid "Alternative Email ID"
msgstr "Correo electrónico alternativo"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2189,6 +2213,11 @@ msgstr "Enmienda no permitida"
msgid "Amendment naming rules updated."
msgstr "Reglas de nomenclatura rectificada actualizadas."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Se produjo un error al configurar los valores predeterminados de la sesión"
@@ -2371,7 +2400,7 @@ msgstr "Aplicado en"
msgid "Apply"
msgstr "Aplicar"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Aplicar regla de asignación"
@@ -2456,7 +2485,7 @@ msgstr "Columnas archivados"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "¿Está seguro de que desea borrar las asignaciones?"
@@ -2492,7 +2521,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "¿Realmente quieres descartar los cambios?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "¿Está seguro de que desea generar un nuevo informe?"
@@ -2500,7 +2529,7 @@ msgstr "¿Está seguro de que desea generar un nuevo informe?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "¿Seguro que quieres fusionar {0} con {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "¿Está seguro de que desea continuar?"
@@ -2555,6 +2584,12 @@ msgstr "Como el uso compartido de documentos está deshabilitado, otórgueles lo
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "De acuerdo con su solicitud, su cuenta y los datos de {0} asociados al correo electrónico {1} se han eliminado de forma permanente."
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2564,7 +2599,7 @@ msgstr "Asignar condición"
msgid "Assign To"
msgstr "Asignar a"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Asignar a"
@@ -2707,7 +2742,7 @@ msgstr "Asignaciones"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Se requiere al menos una columna para mostrar en la cuadrícula."
@@ -2787,7 +2822,7 @@ msgstr "Adjuntar al Campo"
msgid "Attached To Name"
msgstr "Asociado A Nombre"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "El nombre \"Adjuntado a\" debe ser una cadena o un entero"
@@ -2803,7 +2838,7 @@ msgstr "Adjunto"
msgid "Attachment Limit (MB)"
msgstr "Límite Adjunto (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Límite de adjuntos alcanzado"
@@ -2825,11 +2860,11 @@ msgstr "Adjunto Eliminado"
msgid "Attachments"
msgstr "Adjuntos"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Intentando conectarse a la bandeja QZ..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Intentando iniciar QZ Tray..."
@@ -3688,15 +3723,15 @@ msgstr "Eliminar a granel"
msgid "Bulk Edit"
msgstr "Edición masiva"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Editar en masa {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Operación masiva fallida"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Operación masiva exitosa"
@@ -3920,7 +3955,7 @@ msgid "Camera"
msgstr "Cámara"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3980,7 +4015,7 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe."
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3988,7 +4023,7 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe."
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Cancelar"
@@ -4006,7 +4041,7 @@ msgstr "Cancelar todo"
msgid "Cancel All Documents"
msgstr "Cancelar todos los documentos"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "¿Cancelar {0} documentos?"
@@ -4055,11 +4090,11 @@ msgstr "No se pueden recuperar valores"
msgid "Cannot Remove"
msgstr "No se puede quitar"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "No se puede Actualizar Después de Validar"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "No se puede acceder a la ruta del archivo {0}"
@@ -4103,11 +4138,11 @@ msgstr "No se puede crear un {0} en contra de un documento secundario: {1}"
msgid "Cannot create private workspace of other users"
msgstr "No se puede crear un Área de Trabajo privado para otros usuarios"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "No se puede eliminar la carpeta principal y sus carpetas adjuntas"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "No se puede eliminar o cancelar porque {0} {1} está vinculado con {2} {3} {4}"
@@ -4170,8 +4205,8 @@ msgstr "No se puede editar un documento cancelado"
msgid "Cannot edit filters for standard charts"
msgstr "No se pueden editar filtros para gráficos estándar"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "No se pueden editar los filtros de los Widget numéricos estándar"
@@ -4183,11 +4218,11 @@ msgstr "No se pueden editar los campos estándar"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "No se puede habilitar {0} para un tipo de documento que puede ser validado"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "No se puede encontrar el archivo {} en el disco"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "No se pueden obtener los contenidos de archivo de una carpeta"
@@ -4195,7 +4230,7 @@ msgstr "No se pueden obtener los contenidos de archivo de una carpeta"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "No se pueden asignar varias impresoras a un único formato de impresión."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4211,7 +4246,7 @@ msgstr "No se puede mapear porque falla la siguiente condición:"
msgid "Cannot match column {0} with any field"
msgstr "No se puede hacer coincidir la columna {0} con ningún campo"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "No se puede mover la fila"
@@ -4240,11 +4275,11 @@ msgstr "No se puede validar {0}."
msgid "Cannot update {0}"
msgstr "No se puede Actualizar {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "No se puede utilizar {0} en ordenar/agrupar por"
@@ -4517,11 +4552,11 @@ msgstr "Tabla secundaria {0} para el campo {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocTypes"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4550,6 +4585,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Elegir el método de autenticación que deben utilizar todos los usuarios"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Ciudad"
@@ -4576,7 +4612,7 @@ msgstr "Borrar y Agregar plantilla"
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Borrar Asignación"
@@ -4653,24 +4689,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Haga clic en {0} para generar el token de actualización."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Haga clic en la tabla para editar"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Haga clic para establecer Filtros Dinámicos"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Clic para establecer filtros"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Clic para ordenar por {0}"
@@ -4848,7 +4884,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Colapso"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Desplegar todo"
@@ -4903,7 +4939,7 @@ msgstr "Plegable depende de (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4959,11 +4995,11 @@ msgstr "Nombre de columna"
msgid "Column Name cannot be empty"
msgstr "Nombre de la columna no puede estar vacío"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Ancho de Columna"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "El ancho de la columna no puede ser cero."
@@ -4990,7 +5026,7 @@ msgstr "Columnas"
msgid "Columns / Fields"
msgstr "Columnas / Campos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Columnas basadas en"
@@ -5205,8 +5241,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5254,7 +5290,7 @@ msgstr "Configuración"
msgid "Configure Chart"
msgstr "Configurar el Gráfico"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Configurar columnas"
@@ -5281,7 +5317,7 @@ msgstr "Configura cómo se nombrarán los documentos corregidos.
\n\n"
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Configura varios aspectos de cómo funciona la nomenclatura de documentos, como las series de nombres y el contador actual."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Confirmar"
@@ -5300,7 +5336,7 @@ msgstr "Confirmar acceso"
msgid "Confirm Deletion of Account"
msgstr "Confirmar la eliminación de la cuenta"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Confirmar nueva contraseña"
@@ -5345,8 +5381,8 @@ msgstr "Aplicación conectada"
msgid "Connected User"
msgstr "Usuario conectado"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Conectado a la bandeja QZ!"
@@ -5397,6 +5433,10 @@ msgstr "Restricciones"
msgid "Contact"
msgstr "Contacto"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5460,7 +5500,7 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5549,7 +5589,7 @@ msgstr "Copiar error al Portapapeles"
msgid "Copy to Clipboard"
msgstr "Copiar al Portapapeles"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5558,7 +5598,7 @@ msgstr ""
msgid "Copyright"
msgstr "Derechos de Autor"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Core DocTypes no se puede personalizar."
@@ -5582,7 +5622,7 @@ msgstr "No se pudo encontrar {0}"
msgid "Could not map column {0} to field {1}"
msgstr "No se pudo asignar la columna {0} al campo {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5635,13 +5675,14 @@ msgstr "Mostrador"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Código de País requerido"
@@ -5673,13 +5714,13 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Crear"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Crear y Continuar"
@@ -5693,7 +5734,7 @@ msgid "Create Card"
msgstr "Crear tarjeta"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Crear gráfico"
@@ -5727,12 +5768,12 @@ msgstr "Crear registro"
msgid "Create New"
msgstr "Crear"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Crear"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Crear nuevo DocType"
@@ -5740,7 +5781,7 @@ msgstr "Crear nuevo DocType"
msgid "Create New Kanban Board"
msgstr "Crear un nuevo Tablero Kanban"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Crear correo electrónico de usuario"
@@ -5763,8 +5804,8 @@ msgstr "Crea un nuevo registro"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Crear: {0}"
@@ -5780,7 +5821,7 @@ msgstr "Crear o Editar Formato Impresión"
msgid "Create or Edit Workflow"
msgstr "Crear o editar Flujo de Trabajo"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Crea tu primer {0}"
@@ -5790,7 +5831,7 @@ msgstr "Cree su flujo de trabajo visualmente utilizando el Constructor de Flujo
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Creado"
@@ -6127,7 +6168,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "¿Es personalizado? (Solo para esta web)"
@@ -6162,7 +6203,7 @@ msgstr "Personalizaciones para {0} exportadas a:
{1}"
msgid "Customize"
msgstr "Personalización"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Personalización"
@@ -6181,7 +6222,7 @@ msgstr "Personalizar el Tablero"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Personalizar Formulario"
@@ -6412,7 +6453,7 @@ msgstr "Registro de Importación de Datos"
msgid "Data Import Template"
msgstr "Plantilla para importar datos"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Datos demasiado largos"
@@ -6443,7 +6484,7 @@ msgstr "Uso de tamaño de fila de base de datos"
msgid "Database Storage Usage By Tables"
msgstr "Uso de almacenamiento de bases de datos por Tablas"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Limite de tamaño de la tabla de la base de datos"
@@ -6813,13 +6854,13 @@ msgstr "Retrasado"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Eliminar"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Eliminar"
@@ -6852,7 +6893,7 @@ msgstr "Eliminar columna"
msgid "Delete Data"
msgstr "Borrar datos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Eliminar Tablero Kanban"
@@ -6866,7 +6907,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Eliminar pestaña"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Eliminar y Generar Nuevo"
@@ -6908,12 +6949,12 @@ msgstr "Eliminar pestaña"
msgid "Delete this record to allow sending to this email address"
msgstr "Eliminar este registro para permitir el envío a esta dirección de correo electrónico"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "¿Eliminar {0} elemento de forma permanente?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "¿Eliminar {0} artículos de forma permanente?"
@@ -6949,7 +6990,7 @@ msgstr "Documentos Eliminados"
msgid "Deleted Name"
msgstr "Nombre borrado"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Todos los documentos eliminados con éxito"
@@ -6957,7 +6998,7 @@ msgstr "Todos los documentos eliminados con éxito"
msgid "Deleted!"
msgstr "Eliminado!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Eliminando {0}"
@@ -7410,10 +7451,14 @@ msgstr "No crear nuevo usuario"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "No crear nuevo usuario si el usuario con correo electrónico no existe en el sistema"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "No edite los encabezados que están preestablecidos en la plantilla"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "¿Aún quiere continuar?"
@@ -7840,13 +7885,13 @@ msgstr "Titulo del documento"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Tipo de Documento"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "El tipo de documento y la función son necesarios para crear un Widget numérico"
@@ -7891,15 +7936,15 @@ msgstr "Documento desbloqueado"
msgid "Document follow is not enabled for this user."
msgstr "El seguimiento de documentos no está habilitado para este usuario."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "El documento ha sido cancelado"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "El documento ha sido validado"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "El documento está en estado de borrador"
@@ -8041,7 +8086,7 @@ msgstr "Dona"
msgid "Double click to edit label"
msgstr "Doble clic para editar etiqueta"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8074,7 +8119,7 @@ msgstr "Enlace de descarga"
msgid "Download PDF"
msgstr "Descargar PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Descargar Informe"
@@ -8170,7 +8215,7 @@ msgstr "Entrada duplicada"
msgid "Duplicate Filter Name"
msgstr "Nombre de Fltro Duplicado"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nombre duplicado"
@@ -8274,8 +8319,8 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8287,7 +8332,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Editar"
@@ -8297,7 +8342,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Editar"
@@ -8326,7 +8371,7 @@ msgstr "Editar HTML personalizado"
msgid "Edit DocType"
msgstr "Editar DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Editar DocType"
@@ -8344,7 +8389,7 @@ msgstr "Editar filtros"
msgid "Edit Footer"
msgstr "Editar pie de página"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Editar formato"
@@ -8446,7 +8491,7 @@ msgstr "Editar {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Cruadicula Editable"
@@ -8491,6 +8536,8 @@ msgstr "Selector de elementos"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8509,6 +8556,8 @@ msgstr "Selector de elementos"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "Correo electrónico"
@@ -8628,6 +8677,7 @@ msgid "Email IDs"
msgstr "Correo Electrónico"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Correo Electrónico"
@@ -8739,7 +8789,7 @@ msgstr "El correo electrónico se ha marcado como spam"
msgid "Email has been moved to trash"
msgstr "El correo electrónico se ha movido a la papelera"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "El correo electrónico es obligatorio para crear el correo electrónico del usuario."
@@ -8782,7 +8832,7 @@ msgstr "Los Correos Electrónicos se enviarán con las próximas acciones de flu
msgid "Embed code copied"
msgstr "Código integrado copiado"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8790,7 +8840,7 @@ msgstr ""
msgid "Empty column"
msgstr "Columna vacía"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9219,7 +9269,7 @@ msgstr "Registros de errores"
msgid "Error Message"
msgstr "Mensaje de error"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Error al conectarse a la aplicación QZ Tray...
Debe tener la aplicación QZ Tray instalada y en ejecución, para usar la función de Impresión sin formato.
Haga clic aquí para descargar e instalar la bandeja QZ.
Haga clic aquí para obtener más información sobre la impresión sin procesar."
@@ -9247,9 +9297,9 @@ msgstr "Error en el script del cliente."
msgid "Error in Header/Footer Script"
msgstr "Error en el script de encabezado/pie de página"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Error en la Notificación"
@@ -9269,19 +9319,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr "Error al conectarte a la cuenta de correo electrónico {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Error al evaluar Notificación {0}. Por favor arregla tu plantilla."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Error: Faltan datos en la tabla {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Error: falta el valor para {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Error: {0} Fila #{1}: Valor faltante para: {2}"
@@ -9430,7 +9480,7 @@ msgstr ""
msgid "Executing..."
msgstr "Ejecutando..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Tiempo de ejecución: {0} segundos"
@@ -9456,12 +9506,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir todo"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9519,13 +9569,13 @@ msgstr "Tiempo de expiración de Pagina de Código QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportar"
@@ -9718,7 +9768,7 @@ msgstr "Fallo al calcular el cuerpo de la solicitud: {}"
msgid "Failed to connect to server"
msgstr "Error al conectar con el servidor"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "No se pudo decodificar el token, proporcione un token codificado en base64 válido."
@@ -9726,7 +9776,7 @@ msgstr "No se pudo decodificar el token, proporcione un token codificado en base
msgid "Failed to decrypt key {0}"
msgstr "Fallo al descifrar la clave {0}"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Error al eliminar documentos {0} : {1}"
@@ -9882,7 +9932,7 @@ msgstr "Obteniendo documentos predeterminados de Global Search."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9965,7 +10015,7 @@ msgstr "El campo {0} se refiere a un doctype inexistente {1}."
msgid "Field {0} not found."
msgstr "Campo {0} no encontrado."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni un enlace de cliente o usuario"
@@ -9983,7 +10033,7 @@ msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Nombre del campo"
@@ -9996,7 +10046,7 @@ msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Nombre de campo está limitado a 64 caracteres ({0})"
@@ -10012,11 +10062,11 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo."
msgid "Fieldname {0} appears multiple times"
msgstr "El nombre de campo {0} aparece varias veces"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Nombre de campo {0} en conflicto con el metaobjeto"
@@ -10056,7 +10106,7 @@ msgstr "Campos"
msgid "Fields Multicheck"
msgstr "Campos Multicheck"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo"
@@ -10064,7 +10114,7 @@ msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Los campos deben ser una lista o tupla cuando as_list está activado"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10092,7 +10142,7 @@ msgstr "FieldType"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Tipo de campo no se puede cambiar de {0} a {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2}"
@@ -10158,7 +10208,7 @@ msgstr "URL del archivo"
msgid "File backup is ready"
msgstr "La copia de seguridad de archivos está lista"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "El nombre de archivo no puede tener {0}"
@@ -10166,7 +10216,7 @@ msgstr "El nombre de archivo no puede tener {0}"
msgid "File not attached"
msgstr "Archivo no adjuntado"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "El tamaño del archivo supera el tamaño máximo permitido de {0} MB"
@@ -10175,11 +10225,11 @@ msgstr "El tamaño del archivo supera el tamaño máximo permitido de {0} MB"
msgid "File too big"
msgstr "El archivo es demasiado grande"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "El tipo de archivo {0} no está permitido"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Archivo {0} no existe"
@@ -10193,8 +10243,8 @@ msgstr "Archivos"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10233,11 +10283,11 @@ msgstr "Nombre del Filtro"
msgid "Filter Values"
msgstr "Valores del Filtro"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10314,7 +10364,7 @@ msgstr "Sección de filtros"
msgid "Filters applied for {0}"
msgstr "Filtros aplicados para {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filtros guardados"
@@ -10362,8 +10412,12 @@ msgstr "Primer día de la semana"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Primer Nombre"
@@ -10444,7 +10498,7 @@ msgstr "Nombre de la carpeta"
msgid "Folder name should not include '/' (slash)"
msgstr "Nombre de carpeta no debe incluir '/' (slash)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Carpeta {0} no está vacía"
@@ -10551,7 +10605,7 @@ msgstr "Detalles del Pie de Página"
msgid "Footer HTML"
msgstr "HTML de pie de página"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "HTML de pie de página establecido a partir del archivo adjunto {0}"
@@ -10647,7 +10701,7 @@ msgstr "Por Usuario"
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Para la comparación, utilice >5, <10 o =324. Para rangos, utilice 5:10 (para valores entre 5 y 10)."
@@ -10688,7 +10742,7 @@ msgstr "Para varias direcciones, introduzca la dirección en una línea diferent
msgid "For updating, you can update only selective columns."
msgstr "Para actualizar datos, puedes editar sólo las columnas que necesites"
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Para {0} en el nivel {1} en {2} de la línea {3}"
@@ -10932,7 +10986,7 @@ msgstr "Desde la fecha"
msgid "From Date Field"
msgstr "Desde campo de fecha"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Desde tipo de documento"
@@ -10994,13 +11048,13 @@ msgstr "Función basada en"
msgid "Function {0} is not whitelisted."
msgstr "La función {0} no está en la lista blanca."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Sólo se pueden crear más nodos bajo nodos de tipo 'Grupo'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11059,7 +11113,7 @@ msgstr "General"
msgid "Generate Keys"
msgstr "Generar Llaves"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Generar Nuevo Informe"
@@ -11074,7 +11128,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Generar URL de seguimiento"
@@ -11281,10 +11335,6 @@ msgstr "Anonimato IP de Google Analytics."
msgid "Google Calendar"
msgstr "Calendario de Google"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Calendar - Contacto / correo electrónico no encontrado. No se ha añadido el asistente para -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Calendar: no se pudo crear el calendario para {0}, código de error {1}."
@@ -11479,14 +11529,10 @@ msgstr "Agrupar por tipo"
msgid "Group By field is required to create a dashboard chart"
msgstr "El campo agrupar por, es obligatorio para crear un gráfico del tablero"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Agrupar por nota"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11546,7 +11592,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11651,7 +11697,7 @@ msgstr "Encabezado"
msgid "Header HTML"
msgstr "HTML de encabezado"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "Encabezado HTML establecido desde el archivo adjunto {0}"
@@ -11780,7 +11826,7 @@ msgstr "Helvética"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Esta es tu URL de seguimiento"
@@ -11816,7 +11862,7 @@ msgstr "Oculto"
msgid "Hidden Fields"
msgstr "Campos ocultos"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11928,7 +11974,7 @@ msgstr "Ocultar Barra Lateral, Menú y Comentarios"
msgid "Hide Standard Menu"
msgstr "Ocultar Menú Estándar"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Ocultar etiquetas"
@@ -12088,7 +12134,7 @@ msgstr "Supongo que aún no tiene acceso a ningún espacio de trabajo, pero pued
msgid "ID"
msgstr "Identificador"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12185,9 +12231,9 @@ msgstr "Si Aplicar Permisos de Usuario Estricto esta seleccionado y se ha defini
msgid "If Checked workflow status will not override status in list view"
msgstr "Si el estado de flujo de trabajo facturado no anulará el estado en la vista de lista"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Si es dueño"
@@ -12415,8 +12461,8 @@ msgstr "Aplicaciones ignoradas"
msgid "Illegal Document Status for {0}"
msgstr "Estado del Documento ilegal para {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Consulta SQL ilegal"
@@ -12503,11 +12549,11 @@ msgstr "Imágenes"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Suplantar"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Suplantando a {0}"
@@ -12537,7 +12583,7 @@ msgstr "Implícito"
msgid "Import"
msgstr "Importar / Exportar"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importar / Exportar"
@@ -12765,15 +12811,16 @@ msgstr "Incluir tema de aplicaciones"
msgid "Include Web View Link in Email"
msgstr "Enviar el enlace de la vista web del documento por correo electrónico"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Incluir filtros"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Incluir sangría"
@@ -12820,7 +12867,7 @@ msgstr "Cuenta de Correo Electrónico entrante no es correcta"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Implementación incompleta del DocType virtual"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Detalles de inicio de sesión incompletos"
@@ -12931,7 +12978,7 @@ msgstr "Insertar Arriba"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Insertar Después"
@@ -12969,8 +13016,8 @@ msgstr "Insertar estilo"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Instale {0} desde Marketplace"
@@ -13004,7 +13051,7 @@ msgstr "Instrucciones enviadas por correo electrónico"
msgid "Insufficient Permission Level for {0}"
msgstr "Nivel de permiso insuficiente para {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Permiso insuficiente para {0}"
@@ -13120,7 +13167,7 @@ msgid "Invalid"
msgstr "Inválido"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13130,7 +13177,7 @@ msgstr "Expresión \"depende_on\" no válida"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Expresión \"depende_on\" no válida establecida en el filtro {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Expresión \"obligory_depends_on\" inválida"
@@ -13174,12 +13221,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr "Nombre de campo no válido"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "URL de archivo inválida"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13233,7 +13280,7 @@ msgstr "Servidor o puerto de correo saliente no válido: {0}"
msgid "Invalid Output Format"
msgstr "Formato de salida no válido"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Anulación no válida"
@@ -13247,11 +13294,11 @@ msgstr "Parámetros Inválidos."
msgid "Invalid Password"
msgstr "Contraseña invalida"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Numero de telefono invalido"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Solicitud inválida"
@@ -13268,7 +13315,7 @@ msgstr "Nombre del Campo de Tabla Inválido"
msgid "Invalid Transition"
msgstr "Transición inválida"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13291,7 +13338,7 @@ msgstr "Secreto de Webhook inválido"
msgid "Invalid aggregate function"
msgstr "Función de agregación inválida"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13299,19 +13346,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13319,11 +13366,11 @@ msgstr ""
msgid "Invalid column"
msgstr "Columna inválida"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13339,23 +13386,23 @@ msgstr "Conjunto de expresión no válida en el filtro {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Conjunto de expresión no válida en el filtro {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Nombre de campo inválido {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13367,11 +13414,11 @@ msgstr "Nombre de campo no válido '{0}' en nombre automático"
msgid "Invalid file path: {0}"
msgstr "Ruta no válida archivo: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13379,11 +13426,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Filtro no válido: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13420,23 +13467,27 @@ msgstr "Contenido no válido o dañado para importar"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex de redirección no válida en la fila #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Argumentos de solicitud inválidos"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13540,7 +13591,7 @@ msgstr "Es Calendario y Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Es una tabla secundaria"
@@ -13593,6 +13644,10 @@ msgstr "Es Carpeta"
msgid "Is Global"
msgstr "Es Global"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Es un grupo"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13619,8 +13674,13 @@ msgstr "Es un estado opcional"
msgid "Is Primary"
msgstr "Es primaria"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Es el contacto principal"
@@ -13676,7 +13736,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Es individual"
@@ -13712,7 +13772,7 @@ msgstr "Es estándar"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Se puede validar"
@@ -13918,11 +13978,11 @@ msgstr "Columna de Tablero Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Nombre del Tablero Kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Configuración de Kanban"
@@ -14212,7 +14272,7 @@ msgstr "La etiqueta es obligatoria"
msgid "Landing Page"
msgstr "Pagina de inicio"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Paisaje"
@@ -14220,10 +14280,13 @@ msgstr "Paisaje"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Idioma"
@@ -14311,8 +14374,12 @@ msgstr "El mes pasado"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Apellido"
@@ -14458,7 +14525,7 @@ msgstr "Largo"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "¡La longitud del array de datos introducidos es superior al valor de los puntos de etiqueta máximos permitidos!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Longitud de {0} debe estar entre 1 y 1000"
@@ -14508,7 +14575,7 @@ msgstr "Carta"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14536,7 +14603,7 @@ msgstr "Nombre del Encabezado"
msgid "Letter Head Scripts"
msgstr "Scripts del membrete"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "El Membrete no puede estar deshabilitado y ser predeterminado al mismo tiempo"
@@ -14553,7 +14620,7 @@ msgstr "Membrete en HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Nivel"
@@ -14846,7 +14913,7 @@ msgstr "Filtro de Lista"
msgid "List Settings"
msgstr "Configuración de lista"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Configuración de lista"
@@ -14897,7 +14964,7 @@ msgid "Load Balancing"
msgstr "Balanceo de carga"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Carga más"
@@ -14917,7 +14984,7 @@ msgstr "Cargar más"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Cargando"
@@ -15060,7 +15127,7 @@ msgstr "Código de verificación de inicio de sesión de {}"
msgid "Login and view in Browser"
msgstr "Iniciar Sesión y ver en el Navegador"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Es necesario iniciar sesión para ver la vista de lista del formulario web. Habilite {0} para ver la configuración de la lista"
@@ -15068,7 +15135,7 @@ msgstr "Es necesario iniciar sesión para ver la vista de lista del formulario w
msgid "Login link sent to your email"
msgstr "Enlace de inicio de sesión enviado a su correo electrónico"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "No se permite iniciar sesión en este momento"
@@ -15103,7 +15170,7 @@ msgstr "Iniciar sesión con enlace de correo"
#: frappe/www/login.html:116
msgid "Login with Frappe Cloud"
-msgstr ""
+msgstr "Iniciar sesión con Frappe Cloud"
#: frappe/www/login.html:49
msgid "Login with LDAP"
@@ -15121,7 +15188,7 @@ msgstr "Iniciar sesión con enlace de correo"
msgid "Login with email link expiry (in minutes)"
msgstr "Caducidad del inicio de sesión con enlace de correo electrónico (en minutos)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Inicio de sesión con nombre de usuario y contraseña no está permitido."
@@ -15140,7 +15207,7 @@ msgstr ""
msgid "Logout"
msgstr "Salir"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Cerrar sesión en todas las sesiones"
@@ -15244,7 +15311,10 @@ msgid "Major"
msgstr "Mayor"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Hacer el \"nombre\" buscable en la búsqueda global"
@@ -15320,7 +15390,7 @@ msgstr "Obligatorio depende de"
msgid "Mandatory Depends On (JS)"
msgstr "Obligatorio Depende de (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Información obligatoria faltante:"
@@ -15332,11 +15402,11 @@ msgstr "Campo obligatorio: establecer rol para"
msgid "Mandatory field: {0}"
msgstr "Campo obligatorio: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Campos obligatorios requeridos en la tabla {0}, Fila {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Los siguientes campos son obligatorios en {0}"
@@ -15518,7 +15588,7 @@ msgstr "El ancho máximo para el tipo de divisa es 100px en la línea {0}"
msgid "Maximum"
msgstr "Máximo"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Límite máximo de adjunto de {0} ha sido alcanzado por {1} {2}."
@@ -15542,7 +15612,7 @@ msgstr "Significado de Validar, Cancelar, Rectificar"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15573,7 +15643,7 @@ msgstr "Uso de Memoria"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
msgid "Memory Usage in MB"
-msgstr ""
+msgstr "Uso de memoria en MB"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -15761,7 +15831,7 @@ msgstr "Método"
msgid "Method Not Allowed"
msgstr "Método no permitido"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Método necesario para crear una Tarjeta Numérica"
@@ -15777,6 +15847,11 @@ msgstr "Centro medio"
msgid "Middle Name"
msgstr "Segundo Nombre"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15847,7 +15922,7 @@ msgstr "Falta DocType"
msgid "Missing Field"
msgstr "Campo faltante"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Campos Faltantes"
@@ -15883,6 +15958,11 @@ msgstr "Móvil"
msgid "Mobile No"
msgstr "Nº Móvil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Número de teléfono móvil"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15908,7 +15988,7 @@ msgstr "Función del modal"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16084,10 +16164,12 @@ msgstr "Más información"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Más información"
@@ -16117,7 +16199,7 @@ msgstr "Probablemente su contraseña es demasiado larga."
msgid "Move"
msgstr "Mover"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Mover a"
@@ -16153,7 +16235,7 @@ msgstr "Mover secciones a una nueva pestaña"
msgid "Move the current field and the following fields to a new column"
msgstr "Mover el campo actual y los siguientes campos a una nueva columna"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Mover al número de fila"
@@ -16203,7 +16285,7 @@ msgstr "Debe ir encerrado entre '()' e incluir '{0}', que es un marcador de posi
msgid "Must be of type \"Attach Image\""
msgstr "Debe ser del tipo \"Adjuntar Imagen\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Debe tener permisos de reporte para ver este documento."
@@ -16221,7 +16303,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16261,7 +16343,7 @@ msgstr "NOTA: Esta configuración está próxima a su depreciación. Por favor,
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16365,12 +16447,12 @@ msgstr "Plantilla de barra de navegación"
msgid "Navbar Template Values"
msgstr "Valores de la plantilla de la barra de navegación"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navegar por la lista hacia abajo"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navegar lista arriba"
@@ -16385,6 +16467,10 @@ msgstr "Ir al contenido principal"
msgid "Navigation Settings"
msgstr "Configuración de Navegación"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el área de trabajo privada de otros usuarios"
@@ -16393,7 +16479,7 @@ msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el ár
msgid "Negative Value"
msgstr "Valor negativo"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16406,6 +16492,12 @@ msgstr "Error de conjunto anidado. Contacta con el administrador."
msgid "Network Printer Settings"
msgstr "Configuración de la Impresora de Red"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16414,7 +16506,7 @@ msgstr "Configuración de la Impresora de Red"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16475,7 +16567,7 @@ msgstr "Nuevo Evento"
msgid "New Folder"
msgstr "Nueva carpeta"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Nuevo Tablero Kanban"
@@ -16510,7 +16602,7 @@ msgstr "Nueva tarjeta numérica"
msgid "New Onboarding"
msgstr "Nuevo módulo de incorporación"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nueva Contraseña"
@@ -16606,7 +16698,7 @@ msgstr "Nuevo valor a establecer"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Nuevo/a: {0}"
@@ -16758,7 +16850,7 @@ msgstr "Siguiente al hacer clic"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "No"
@@ -16863,7 +16955,7 @@ msgstr "Sin nombre especificado para {0}"
msgid "No New notifications"
msgstr "No hay nuevas notificaciones"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "No hay Permisos Especificados"
@@ -16907,7 +16999,7 @@ msgstr "No se encontraron resultados"
msgid "No Roles Specified"
msgstr "No hay Roles especificados"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "No se ha encontrado ningún campo de selección"
@@ -16915,7 +17007,7 @@ msgstr "No se ha encontrado ningún campo de selección"
msgid "No Suggestions"
msgstr "No hay sugerencias"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Sin Etiquetas"
@@ -16991,7 +17083,7 @@ msgstr ""
msgid "No failed logs"
msgstr "No hay registros fallidos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "No se han encontrado campos que puedan utilizarse como Columna Kanban. Utilice el formulario de personalización para añadir un campo personalizado de tipo \"Seleccionar\"."
@@ -17015,7 +17107,7 @@ msgstr "No existen registros nuevos"
msgid "No matching records. Search something new"
msgstr "No hay registros coincidentes. Buscar algo nuevo"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "No hay más elementos para mostrar"
@@ -17059,7 +17151,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "No tiene permiso para '{0} ' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "No tiene permiso para leer {0}"
@@ -17071,7 +17163,7 @@ msgstr "No tiene permiso para {0} {1} {2}"
msgid "No records deleted"
msgstr "No hay registros eliminados"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "No hay registros presentes en {0}"
@@ -17107,11 +17199,11 @@ msgstr "No {0}"
msgid "No {0} Found"
msgstr "Ningún {0} encontrado"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Ningún {0} encontrado"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "No se ha encontrado ningún {0} que coincida con filtros. Borre los filtros para ver todos los {0}."
@@ -17120,7 +17212,7 @@ msgid "No {0} mail"
msgstr "No {0} electrónico"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Nº"
@@ -17184,7 +17276,7 @@ msgstr "No son Descendientes de"
msgid "Not Equals"
msgstr "No es igual"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "No encontrado"
@@ -17210,9 +17302,9 @@ msgstr "No está vinculado a ningún registro"
msgid "Not Nullable"
msgstr "No nulo"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17231,7 +17323,7 @@ msgstr "No publicado"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17282,7 +17374,7 @@ msgstr "No activo"
msgid "Not allowed for {0}: {1}"
msgstr "No permitido para {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "No se permite adjuntar {0} documento, habilite Permitir impresión para {0} en Configuración de impresión."
@@ -17314,12 +17406,12 @@ msgstr "No se encuentra en modo desarrollador"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo site_config.json o crear un 'DocType' personalizado."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "No permitido"
@@ -17365,7 +17457,7 @@ msgstr "Nota: Para obtener mejores resultados, las imágenes deben ser del mismo
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Nota: Varias sesiones serán permitidas en el caso de los dispositivos móviles"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Nota: Se compartirá con el usuario."
@@ -17437,15 +17529,15 @@ msgstr "Notificación de documento suscrito"
msgid "Notification sent to"
msgstr "Notificación enviada a"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Notificación: el cliente {0} no tiene establecido un número de móvil"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Notificación: el documento {0} no tiene establecido el número {1} (campo: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Notificación: el usuario {0} no tiene número de móvil establecido"
@@ -17559,7 +17651,7 @@ msgstr "Número de consultas"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "El número de campos adjuntos es superior a {}, límite actualizado a {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "El número de copias de seguridad debe ser superior a cero."
@@ -17831,7 +17923,7 @@ msgstr "Incorporación completada"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Una vez validados, los documentos que se pueden validar no se pueden cambiar. Solo pueden cancelarse y rectificarse."
@@ -17920,11 +18012,11 @@ msgstr "Solo se pueden eliminar informes del tipo Generador de Informes"
msgid "Only reports of type Report Builder can be edited"
msgstr "Solo se pueden editar informes del tipo Generador de Informes"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -18020,7 +18112,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr "Abrir en una nueva pestaña"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Abrir elemento de lista"
@@ -18069,7 +18161,7 @@ msgstr "Abierto"
msgid "Operation"
msgstr "Operación"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "El Operador debe ser uno de {0}"
@@ -18115,6 +18207,7 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18123,6 +18216,7 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Opciones"
@@ -18152,7 +18246,7 @@ msgstr "Las opciones para {0} deben configurarse antes de configurar el valor pr
msgid "Options is required for field {0} of type {1}"
msgstr "Se requieren opciones para el campo {0} de tipo {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Las opciones no establecidas para el campo enlazado {0}"
@@ -18168,7 +18262,7 @@ msgstr "Naranja"
msgid "Order"
msgstr "Orden"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18184,7 +18278,7 @@ msgstr "Historia de la organización"
msgid "Org History Heading"
msgstr "Encabezado de la historia de la organización"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orientación"
@@ -18266,7 +18360,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18299,10 +18393,6 @@ msgstr "Ancho de página PDF (en mm)"
msgid "PDF Settings"
msgstr "Configuración de paginas PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "La generación de PDF falló"
@@ -18514,7 +18604,7 @@ msgstr "DocType padre"
msgid "Parent Document Type"
msgstr "Tipo de documento padre"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Se requiere el tipo de documento padre para crear un Widget numérico"
@@ -18618,8 +18708,8 @@ msgstr "Pasivo"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18642,7 +18732,7 @@ msgstr "Restablecer contraseña"
msgid "Password Reset Link Generation Limit"
msgstr "Límite de generación de enlaces de restablecimiento de contraseña"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "No se puede filtrar por contraseña"
@@ -18679,7 +18769,7 @@ msgstr "Se han enviado instrucciones para restablecer la contraseña al correo e
msgid "Password set"
msgstr "Contraseña establecida"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido"
@@ -18691,7 +18781,7 @@ msgstr "El tamaño de la contraseña superó el tamaño máximo permitido."
msgid "Passwords do not match"
msgstr "Las contraseñas no coinciden"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "¡Las contraseñas no coinciden!"
@@ -18757,7 +18847,7 @@ msgstr "Recuento de datos"
#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Peak Memory Usage"
-msgstr ""
+msgstr "Pico de uso de memoria"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
@@ -18842,7 +18932,7 @@ msgstr "¿Validar permanentemente {0}?"
msgid "Permanently delete {0}?"
msgstr "¿Eliminar permanentemente \"{0}\"?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Error de Permiso"
@@ -18902,16 +18992,16 @@ msgstr "Tipo de Permiso"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Permisos"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Error de Permisos"
@@ -18973,15 +19063,18 @@ msgstr "Solicitud de descarga de datos personales"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18994,11 +19087,11 @@ msgstr "Teléfono"
msgid "Phone No."
msgstr "No. de teléfono"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Número de teléfono {0} establecido en el campo {1} no es válido."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19080,11 +19173,11 @@ msgstr "Por favor, consulte a su administrador para verificar su registro"
msgid "Please attach a file first."
msgstr "Por favor, adjunte un archivo"
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el pie de página."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el membrete."
@@ -19096,7 +19189,7 @@ msgstr "Por favor adjunte el paquete"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Compruebe los valores de filtro establecidos para el gráfico del tablero: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
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}"
@@ -19136,7 +19229,7 @@ msgstr "Confirma tu acción a {0} este documento."
msgid "Please contact your system manager to install correct version."
msgstr "Póngase en contacto con el responsable de su sistema para instalar la versión correcta."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Primero crea la tarjeta"
@@ -19152,11 +19245,11 @@ msgstr "Por favor, elimine el campo de {0} o añada el doctype requerido."
msgid "Please do not change the template headings."
msgstr "Por favor, no cambie los encabezados de la plantilla."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Por favor, duplicar esto para realizar los cambios"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDAP o Inicio de Sesión con Enlace de Correo Electrónico antes de deshabilitar el inicio de sesión basado en nombre de usuario/contraseña."
@@ -19165,7 +19258,7 @@ msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDA
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Por favor, active los pop-ups"
@@ -19280,7 +19373,7 @@ msgstr "Por favor, guarde el informe primero"
msgid "Please save to edit the template."
msgstr "Guarde para editar la plantilla."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Por favor, seleccione 'DocType' primero"
@@ -19288,15 +19381,15 @@ msgstr "Por favor, seleccione 'DocType' primero"
msgid "Please select Entity Type first"
msgstr "Por favor, seleccione Tipo de entidad primero"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Seleccione el valor mínimo de la contraseña"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Por favor, seleccione campos X e Y"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Por favor, seleccione un código de país para el campo {1}."
@@ -19320,7 +19413,7 @@ msgstr "Seleccione un filtro de fecha válido"
msgid "Please select applicable Doctypes"
msgstr "Por favor seleccione Doctypes aplicables"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar"
@@ -19350,7 +19443,7 @@ msgstr "Por favor, establece Dirección de correo electrónico"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Configure una asignación de impresora para este formato de impresión en la Configuración de la impresora"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Por favor, defina los filtros"
@@ -19370,7 +19463,7 @@ msgstr "Primero configure los siguientes documentos en este Panel como estándar
msgid "Please set the series to be used."
msgstr "Por favor, configure la serie que se utilizará."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Configure SMS antes de configurarlo como un método de autenticación, a través de Configuración de SMS"
@@ -19485,7 +19578,7 @@ msgstr "Elemento del Menú del Portal"
msgid "Portal Settings"
msgstr "Configuración del portal"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Retrato"
@@ -19513,6 +19606,7 @@ msgstr "Postal"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Codigo postal"
@@ -19521,7 +19615,7 @@ msgstr "Codigo postal"
msgid "Posting Timestamp"
msgstr "Marca de tiempo de la publicación"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19536,6 +19630,10 @@ msgstr ""
msgid "Precision"
msgstr "Precisión"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Precisión debe estar entre 1 y 6"
@@ -19584,7 +19682,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Usuario de informe preparado"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Error en la representación del informe preparado"
@@ -19719,13 +19817,13 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Impresión"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Impresión"
@@ -19795,7 +19893,7 @@ msgstr "Ayuda de formato de impresión"
msgid "Print Format Type"
msgstr "Tipo de formato de impresión"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19834,7 +19932,7 @@ msgstr "Impresión Oculta si no hay Valor"
msgid "Print Language"
msgstr "Lenguaje de impresión"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "¡La impresión ha sido enviada a la impresora!"
@@ -19852,7 +19950,7 @@ msgstr "Servidor de Impresión"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Ajustes de Impresión"
@@ -19976,11 +20074,11 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Proceder"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Procede de todas maneras"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Procesando"
@@ -19997,11 +20095,21 @@ msgstr "Prof"
msgid "Profile"
msgstr "Perfil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Perfil actualizado con éxito."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Progreso"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Proyecto"
@@ -20045,7 +20153,7 @@ msgstr "Tipo de Inmueble"
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20218,7 +20326,7 @@ msgstr "Código QR"
msgid "QR Code for Login Verification"
msgstr "Código QR para la verificación de inicio de Sesión"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "Bandeja QZ fallida:"
@@ -20425,7 +20533,7 @@ msgstr "Clasificación"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Comandos sin formato"
@@ -20551,11 +20659,11 @@ msgstr "Tiempo real (SocketIO)"
msgid "Reason"
msgstr "Razón"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Reconstruir"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Reconstruir el árbol"
@@ -20936,8 +21044,8 @@ msgstr "Referente"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20968,13 +21076,13 @@ msgstr ""
msgid "Refresh Token"
msgstr "Actualizar Token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Refrescando"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Refrescando..."
@@ -21287,8 +21395,8 @@ msgstr "Responder a todos"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21359,11 +21467,11 @@ msgstr "Administrador de reportes"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Nombre del reporte"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Nombre del informe, Campo del informe y Fucnión son necesarios para crear un Widget numérico"
@@ -21397,21 +21505,21 @@ msgstr "Vista de Reporte"
msgid "Report bug"
msgstr "Reportar error"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "El reporte no se puede definir para un solo tipo"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "El informe no tiene datos, modifique los filtros o cambie el Nombre del informe"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "El informe no tiene campos numéricos, cambie el nombre del informe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Informe iniciado, haga clic para ver el estado"
@@ -21431,7 +21539,7 @@ msgstr "Informe actualizado con éxito"
msgid "Report was not saved (there were errors)"
msgstr "El reporte no se pudo guardar (contiene errores)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "El informe con más de 10 columnas se ve mejor en modo horizontal."
@@ -21467,7 +21575,7 @@ msgstr "Informes"
msgid "Reports & Masters"
msgstr "Informes y Maestros"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Informes ya en cola"
@@ -21486,7 +21594,10 @@ msgid "Request Body"
msgstr "Body de la solicitud"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Datos de Solicitud"
@@ -21538,6 +21649,11 @@ msgstr "Tiempo de espera de la solicitud"
msgid "Request URL"
msgstr "URL de Solicitud"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21593,7 +21709,7 @@ msgstr "Restablecer personalizaciones del Tablero"
msgid "Reset Fields"
msgstr "Reestablecer campos"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Restablecer la contraseña LDAP"
@@ -21601,11 +21717,11 @@ msgstr "Restablecer la contraseña LDAP"
msgid "Reset Layout"
msgstr "Restablecer Disposición"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Restablecer OTP Secret"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21640,7 +21756,7 @@ msgstr "Restablecer a valores por defecto"
msgid "Reset sorting"
msgstr "Restaurar orden"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Restaurar valores"
@@ -21780,7 +21896,7 @@ msgstr "Vuelva a la pantalla Verificación e introduzca el código que muestra s
msgid "Reverse Icon Color"
msgstr "Revertir Color de Icono"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Revertir la longitud a {0} para '{1}' en '{2}'. Establecer la longitud como {3} provocará el truncamiento de los datos."
@@ -21892,7 +22008,7 @@ msgstr "Permiso para la función Página e Informe"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Permisos de Rol"
@@ -21902,7 +22018,7 @@ msgstr "Permisos de Rol"
msgid "Role Permissions Manager"
msgstr "Administrar permisos"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Administrar permisos"
@@ -22047,7 +22163,7 @@ msgstr "Redirecciones de ruta"
msgid "Route: Example \"/app\""
msgstr "Ruta: Ejemplo \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Línea"
@@ -22055,12 +22171,12 @@ msgstr "Línea"
msgid "Row #"
msgstr "Fila #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Fila # {0}: El usuario no administrador no puede establecer el rol {1} al doctype personalizado"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Fila #{0}:"
@@ -22095,11 +22211,11 @@ msgstr "Valores de la Fila Cambiaron"
msgid "Row {0}"
msgstr "Fila {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Fila {0}: No se permite deshabilitar Obligatorio para Campos Estándar"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Fila {0}: No se permite activar 'Permitir al validar' para los campos estándar"
@@ -22118,7 +22234,10 @@ msgid "Rows Removed"
msgstr "Filas Eliminadas"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22326,8 +22445,8 @@ msgstr "Sábado"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22350,11 +22469,11 @@ msgstr "Guardar como"
msgid "Save Customizations"
msgstr "Guardar Personalización"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Guardar reporte"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Guardar Filtro"
@@ -22726,7 +22845,7 @@ msgstr "Configuración de seguridad"
msgid "See all Activity"
msgstr "Ver todas las actividades"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Ver todos los reportes pasados."
@@ -22790,7 +22909,7 @@ msgstr "Seleccionar"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Seleccionar Todo"
@@ -22811,7 +22930,7 @@ msgid "Select Column"
msgstr "Seleccionar Columna"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Seleccione columnas"
@@ -22870,7 +22989,7 @@ msgstr "Seleccionar campo"
msgid "Select Field..."
msgstr "Seleccionar campo..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Seleccionar campos"
@@ -22990,14 +23109,14 @@ msgid "Select a field to edit its properties."
msgstr "Seleccione un campo para editar sus propiedades."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Seleccione primero un nodo de grupo"
+msgid "Select a group {0} first."
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Seleccione un campo de remitente válido para crear documentos desde el correo electrónico"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Seleccione un campo de asunto válido para crear documentos desde el correo electrónico"
@@ -23027,13 +23146,13 @@ msgstr "Seleccionar al menos 1 registro para la impresión"
msgid "Select atleast 2 actions"
msgstr "Seleccione al menos 2 acciones"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Seleccionar elemento de la lista"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Seleccionar múltiples elementos de la lista"
@@ -23251,7 +23370,7 @@ msgstr "Correo electrónico del Remitente"
msgid "Sender Email Field"
msgstr "Campo Nombre del remitente"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "El campo del remitente debe tener opciones de correo electrónico"
@@ -23355,7 +23474,7 @@ msgstr "Secuencia {0} ya utilizada en {1}"
msgid "Server Action"
msgstr "Acción del servidor"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Error del Servidor"
@@ -23421,7 +23540,7 @@ msgstr "Valores predeterminados de sesión"
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Sesión expirada"
@@ -23430,14 +23549,14 @@ msgstr "Sesión expirada"
msgid "Session Expiry (idle timeout)"
msgstr "Expiración de la sesión (tiempo de inactivad)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "El vencimiento de sesión debe estar en formato {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Establecer"
@@ -23463,12 +23582,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Establezca opciones predeterminadas para todos los gráficos en este Tablero (Ej.: \"colores\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Establecer filtros dinámicos"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23479,7 +23598,7 @@ msgstr "Establecer filtros"
msgid "Set Filters for {0}"
msgstr "Establecer filtros para {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Establecer Nivel"
@@ -23533,7 +23652,7 @@ msgstr "Establecer cantidad"
msgid "Set Role For"
msgstr "Establecer Rol Para"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Establecer permisos de usuario"
@@ -23552,7 +23671,7 @@ msgstr "Establecer todo privado"
msgid "Set all public"
msgstr "Establecer todo público"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Establecer como Predeterminado"
@@ -23571,18 +23690,21 @@ msgstr "Establecido por el usuario"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Establezca aquí valores de filtro dinámicos en JavaScript para los campos obligatorios."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Ajuste de precisión no-estándar para los decimales o las monedas"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23716,7 +23838,7 @@ msgstr "Configuración > Usuario"
msgid "Setup > User Permissions"
msgstr "Configurar > Permisos del Usuario"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Configuración automática de correo electrónico"
@@ -23857,6 +23979,12 @@ msgstr "Mostrar documento"
msgid "Show Error"
msgstr "Mostrar error"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Mostrar nombre de campo (clic para copiar en el portapapeles)"
@@ -23985,7 +24113,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Mostrar etiquetas"
@@ -24192,36 +24320,36 @@ msgstr "Registro deshabilitado"
msgid "Signups have been disabled for this website."
msgstr "Se han desactivado las suscripciones para este sitio web."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Expresión simple de Python, ejemplo: estado en (\"Cerrado\", \"Cancelado\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Expresión simple de Python, ejemplo: estado en (\"No válido\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Expresión Python simple, Ejemplo: estado == 'Abierto' y tipo == 'Error'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Sesiones simultáneas"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Los DocTypes individuales no se pueden personalizar."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Los campos únicos, solo tienen un registro y no tienen tablas asociadas, los valores serán guardados en una columna aislada."
@@ -24229,7 +24357,7 @@ msgstr "Los campos únicos, solo tienen un registro y no tienen tablas asociadas
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 "El sitio está funcionando en modo de sólo lectura por mantenimiento o actualización del sitio, esta acción no puede realizarse en este momento. Por favor, inténtelo de nuevo más tarde."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Tamaño"
@@ -24489,7 +24617,7 @@ msgstr "Campo de orden {0} debe ser un nombre de campo válido"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24556,8 +24684,8 @@ msgstr "Especifique los dominios u orígenes que tienen permiso para insertar es
msgid "Splash Image"
msgstr "Imagen de bienvenida"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Sr"
@@ -24589,7 +24717,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Estándar"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "No se puede eliminar DocType estándar."
@@ -24605,7 +24733,7 @@ msgstr "Estándar no establecido"
msgid "Standard Permissions"
msgstr "Permisos estándares"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "El formato de impresión estándar no se puede actualizar"
@@ -24723,6 +24851,7 @@ msgstr "Iniciar el"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24858,7 +24987,7 @@ msgstr "Pasos para verificar su inicio de sesión"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24888,7 +25017,7 @@ msgstr "Uso de almacenamiento por tabla"
msgid "Store Attached PDF Document"
msgstr "Almacenar documento PDF adjunto"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24986,7 +25115,7 @@ msgstr "Asunto"
msgid "Subject Field"
msgstr "Campo de Asunto"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "El tipo de campo de asunto debe ser Datos, Texto, Texto largo, Texto pequeño, Editor de texto"
@@ -25000,6 +25129,7 @@ msgstr "Cola de envío"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25008,10 +25138,11 @@ msgstr "Cola de envío"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Validar"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Validar"
@@ -25021,7 +25152,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Validar"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Validar"
@@ -25069,7 +25200,7 @@ msgstr "Valide este documento para completar este paso."
msgid "Submit this document to confirm"
msgstr "Valide este documento para confirmar"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "¿Validar {0} documentos?"
@@ -25119,7 +25250,7 @@ msgstr "Subtitular"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25334,7 +25465,7 @@ msgstr "Sincronización"
msgid "Syncing {0} of {1}"
msgstr "Sincronizando {0} de {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Error de sintaxis"
@@ -25645,7 +25776,7 @@ msgstr "Tabla Multi-selección"
msgid "Table Trimmed"
msgstr "Tabla recortada"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabla actualiza"
@@ -25862,7 +25993,7 @@ msgstr "Gracias"
msgid "The Auto Repeat for this document has been disabled."
msgstr "La repetición automática para este documento ha sido deshabilitada."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "El formato CSV es sensible a mayúsculas y minúsculas"
@@ -25879,7 +26010,7 @@ msgstr "El ID de cliente obtenido de la Consola de Google Cloud en "
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -26048,7 +26179,7 @@ msgstr "El enlace para restablecer la contraseña ha caducado"
msgid "The reset password link has either been used before or is invalid"
msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "El recurso que está buscando no está disponible"
@@ -26060,7 +26191,7 @@ msgstr "El Rol {0} debe ser un Rol personalizado."
msgid "The selected document {0} is not a {1}."
msgstr "El documento seleccionado {0} no es un {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "El sistema se está actualizando. Por favor, actualice de nuevo después de unos momentos."
@@ -26121,12 +26252,12 @@ msgstr "No hay próximos eventos para usted."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "No hay {0} para este {1}, ¿Por qué no empiezas uno?"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "Ya hay {0} con los mismos filtros en la cola:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Sólo puede haber 9 campos de salto de página en un formulario web"
@@ -26150,11 +26281,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr "No hay nada nuevo que mostrarle en este momento."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Hay un poco de problema con la url del archivo: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Ya hay {0} con los mismos filtros en la cola:"
@@ -26166,7 +26297,7 @@ msgstr "Debe haber al menos una regla de permiso."
msgid "There was an error building this page"
msgstr "Se produjo un error al crear esta página."
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Hubo un error al guardar los filtros"
@@ -26223,7 +26354,7 @@ msgstr "Autenticación por otros medios"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Esta divisa está deshabilitada. Debe habilitarla para utilizarla en las transacciones"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Este tablero Kanban será privado"
@@ -26231,6 +26362,10 @@ msgstr "Este tablero Kanban será privado"
msgid "This Month"
msgstr "Este mes"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Este trimestre"
@@ -26256,6 +26391,11 @@ msgstr "Esta acción solo está permitida para {}"
msgid "This cannot be undone"
msgstr "Esto no se puede deshacer"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26274,7 +26414,7 @@ msgstr "Este doctype no tiene campos huérfanos que recortar"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Este doctype tiene migraciones pendientes, ejecute 'bench migrate' antes de modificar el doctype para evitar perder los cambios."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Este documento no puede ser borrado en este momento, ya que está siendo modificado por otro usuario. Por favor, inténtelo de nuevo pasado un tiempo."
@@ -26320,7 +26460,7 @@ msgstr "Este campo sólo aparecerá si el nombre de campo definido aquí tiene v
"eval:doc.myfield=='Mi valor'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26355,7 +26495,7 @@ msgstr "Este proveedor de geolocalización aún no es compatible."
msgid "This goes above the slideshow."
msgstr "Esto va encima de la presentación de diapositivas."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo."
@@ -26405,7 +26545,7 @@ msgstr "Esto puede imprimirse en varias páginas."
msgid "This month"
msgstr "Este mes"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar."
@@ -26413,7 +26553,7 @@ msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en
msgid "This report was generated on {0}"
msgstr "Este informe fue generado el {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Este reporte fue generado {0}."
@@ -26555,9 +26695,11 @@ msgstr "Ventana de tiempo (segundos)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26824,7 +26966,7 @@ msgstr "Para exportar este paso como JSON, vincúlelo en un documento de tutoria
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Para obtener el reporte actualizado, hacer clic en {0}."
@@ -26899,7 +27041,7 @@ msgstr "Alternar Vista de Cuadrícula"
msgid "Toggle Sidebar"
msgstr "Alternar Barra Lateral"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Alternar Barra Lateral"
@@ -27025,7 +27167,7 @@ msgstr "Tema"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Total"
@@ -27148,7 +27290,7 @@ msgstr "Seguimiento de los hitos de cualquier documento"
msgid "Tracking"
msgstr "Seguimiento"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL de seguimiento generada y copiada en el portapapeles"
@@ -27184,7 +27326,7 @@ msgstr "Transiciones"
msgid "Translatable"
msgstr "Traducible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27346,7 +27488,7 @@ msgstr "Método de autenticación de dos factores"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27440,7 +27582,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL para documentación o ayuda"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "La URL debe comenzar con http:// o https://"
@@ -27543,7 +27685,7 @@ msgstr "No se puede enviar el correo porque falta una cuenta de correo electrón
msgid "Unable to update event"
msgstr "No se puede actualizar evento"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Incapaz de escribir el formato de archivo para {0}"
@@ -27552,7 +27694,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}"
msgid "Unassign Condition"
msgstr "Desasignar condición"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Excepción no controlada"
@@ -27568,7 +27710,7 @@ msgstr "Deshacer"
msgid "Undo last action"
msgstr "Deshacer última acción"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27615,7 +27757,7 @@ msgstr "Columna desconocida: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Método de Redondeo desconocido: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Usuario Desconocido"
@@ -27681,8 +27823,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr "No suscrito"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27716,7 +27858,7 @@ msgstr "Eventos para hoy"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Actualizar"
@@ -27750,6 +27892,11 @@ msgstr "Actualizar orden"
msgid "Update Password"
msgstr "Actualizar contraseña"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27808,7 +27955,7 @@ msgstr "Actualizado a una nueva versión 🎉"
msgid "Updated successfully"
msgstr "Actualizado exitosamente"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Actualización"
@@ -27965,11 +28112,7 @@ msgstr "Utilice un correo electrónico diferente"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "El uso de la función {0} en el campo está restringido"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "El uso de la sub-query o función está restringido"
@@ -28191,12 +28334,12 @@ msgstr "Permiso de Usuario"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Permisos de Usuario"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Permisos de Usuario"
@@ -28340,7 +28483,7 @@ msgstr "Usuario {0} suplantado como {1}"
msgid "User {0} is disabled"
msgstr "El usuario {0} está deshabilitado"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Usuario {0} está deshabilitado. Por favor, póngase en contacto con su administrador del sistema."
@@ -28468,8 +28611,8 @@ msgstr "Validez"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28501,7 +28644,7 @@ msgstr "Valor Cambiado"
msgid "Value To Be Set"
msgstr "Valor a Establecer"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "El valor no puede ser cambiado para {0}"
@@ -28517,11 +28660,11 @@ msgstr "El valor no puede ser negativo para {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Valor para un campo de verificación puede ser 0 o 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "El valor del campo {0} es demasiado largo en {1}. La longitud debe ser inferior a {2} caracteres"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Valor para {0} no puede ser una lista"
@@ -28546,7 +28689,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Valor para validar"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Valor demasiado grande"
@@ -28638,7 +28781,7 @@ msgstr "Ver Todo"
msgid "View Audit Trail"
msgstr "Ver registros de auditoría"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Ver permisos del doctype"
@@ -28650,7 +28793,7 @@ msgstr "Ver Archivo"
msgid "View Full Log"
msgstr "Ver Registro completo"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Ver Lista"
@@ -28660,7 +28803,7 @@ msgstr "Ver Lista"
msgid "View Log"
msgstr "Ver registro"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Ver Documentos Permitidos"
@@ -28776,6 +28919,7 @@ msgid "Warehouse"
msgstr "Almacén"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Advertencia"
@@ -28870,7 +29014,7 @@ msgstr "Página Web"
msgid "Web Page Block"
msgstr "Bloque de página web"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL de Página Web"
@@ -29260,7 +29404,7 @@ msgstr "sólo se mostrará si se habilitan los títulos de sección"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Con Membrete"
@@ -29421,7 +29565,7 @@ msgstr "Flujo de trabajo actualizado correctamente"
msgid "Workspace"
msgstr "Área de Trabajo"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "El Área de Trabajo {0} no existe"
@@ -29514,7 +29658,7 @@ msgstr "Terminando"
msgid "Write"
msgstr "Escribir"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Valor incorrecto de recuperación"
@@ -29543,7 +29687,7 @@ msgstr "Campos del eje Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Campo Y"
@@ -29605,7 +29749,7 @@ msgstr "Amarillo"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Si"
@@ -29641,6 +29785,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Estás conectado a internet."
@@ -29679,12 +29827,12 @@ msgstr "No tiene permiso para editar el informe."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "No está permitido exportar {} doctype"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Usted no está autorizado a imprimir este informe"
@@ -29692,7 +29840,7 @@ msgstr "Usted no está autorizado a imprimir este informe"
msgid "You are not allowed to send emails related to this document"
msgstr "No tiene permisos para enviar correos electrónicos relacionados con este documento"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Usted no está autorizado para modificar este formulario web"
@@ -29765,11 +29913,11 @@ msgstr "Puedes cambiar la política de retención de {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Puede continuar con el tutorial después de explorar esta página"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Puede desactivar este {0} en lugar de borrarlo."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Puede aumentar el límite desde Ajustes del sistema."
@@ -29819,11 +29967,11 @@ msgstr "Puede utilizar Formularios Personalizados para establecer niveles en cam
msgid "You can use wildcard %"
msgstr "Puede usar % como comodín"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "No puedes establecer 'Opciones' para el campo {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "No puedes establecer 'Traducible' para el campo {0}"
@@ -29841,7 +29989,7 @@ msgstr "Cancelaste este documento {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "No puede crear un gráfico de tablero a partir de DocTypes individuales"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "No se puede desmarcar 'solo lectura' para el campo {0}"
@@ -29884,15 +30032,15 @@ msgstr "No tienes permisos de lectura o selección para {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Usted no tiene suficientes permisos para completar la acción"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "No tienes permiso para acceder a {0}: {1}."
@@ -29904,11 +30052,11 @@ msgstr "No tiene permisos para cancelar todos los documentos vinculados."
msgid "You don't have access to Report: {0}"
msgstr "Usted no tiene acceso al Reporte: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "No tienes permiso para acceder al DocType {0} ."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Usted no tiene permiso para acceder a este archivo"
@@ -29928,7 +30076,7 @@ msgstr "Tienes un nuevo mensaje de:"
msgid "You have been successfully logged out"
msgstr "Ha sido desconectado exitosamente"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Ha alcanzado el límite de tamaño de fila en la tabla de la base de datos: {0}"
@@ -29956,7 +30104,7 @@ msgstr "No has visto a {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Aún no ha añadido ningún Tablero de datos o ningún Widget numérico."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "Aún no ha creado un {0}"
@@ -29973,11 +30121,11 @@ msgstr "Usted editó esto por última vez"
msgid "You must add atleast one link."
msgstr "Debe añadir al menos un enlace."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Debe iniciar sesión para utilizar este formulario."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Debes iniciar sesión para enviar este formulario"
@@ -30001,7 +30149,7 @@ msgstr "Tiene que estar registrado para acceder a esta página."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Usted necesita estar en el modo de programador para editar un formulario Web Estándar"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad."
@@ -30092,6 +30240,10 @@ msgstr "Has dejado de seguir este documento"
msgid "You viewed this"
msgstr "Ya has visto esto"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -30137,7 +30289,7 @@ msgstr "Tus atajos"
msgid "Your account has been deleted"
msgstr "Su cuenta ha sido eliminada"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Su cuenta ha sido bloqueada y se reanudará después de {0} segundos"
@@ -30199,11 +30351,11 @@ msgstr "El nombre de la organización y dirección para el pie de página del co
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar."
@@ -30511,7 +30663,7 @@ msgstr "juan@example.com"
msgid "just now"
msgstr "justo ahora"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "etiqueta"
@@ -30540,7 +30692,7 @@ msgstr "lista"
msgid "logged in"
msgstr "conectado"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "login_required"
@@ -30878,7 +31030,7 @@ msgstr "a través de la importación de datos"
msgid "via Google Meet"
msgstr "vía Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "vía notificación"
@@ -30988,7 +31140,7 @@ msgstr "{0} Gráfico"
msgid "{0} Dashboard"
msgstr "{0} Panel de control"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31029,7 +31181,7 @@ msgstr "{0} Mapa"
msgid "{0} Name"
msgstr "{0} Nombre"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} No se permite cambiar {1} después del envío de {2} a {3}"
@@ -31039,7 +31191,7 @@ msgstr "{0} No se permite cambiar {1} después del envío de {2} a {3}"
msgid "{0} Report"
msgstr "{0} Informe"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} Informes"
@@ -31095,7 +31247,7 @@ msgstr "{0} y {1}"
msgid "{0} are currently {1}"
msgstr "{0} son actualmente {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} son obligatorios"
@@ -31112,7 +31264,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} adjunto {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} no puede ser más de {1}"
@@ -31189,7 +31341,7 @@ msgstr "{0} no existe en el renglón {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31234,7 +31386,7 @@ msgstr "{0} en la fila {1} no puede tener tanto URL como elementos hijos"
msgid "{0} is a mandatory field"
msgstr "{0} es un campo obligatorio"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} no es un archivo zip válido"
@@ -31283,7 +31435,7 @@ msgstr "{0} es como {1}"
msgid "{0} is mandatory"
msgstr "{0} es obligatorio"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31303,12 +31455,12 @@ msgstr "{0} no es un Calendario válido. Redirigiendo al Calendario por defecto.
msgid "{0} is not a valid Cron expression."
msgstr "{0} no es una expresión Cron válida."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} no es un DocType válido para Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} no es una dirección de correo electrónico válida"
@@ -31316,11 +31468,11 @@ msgstr "{0} no es una dirección de correo electrónico válida"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} no es un código ISO 3166 ALFA-2 válido."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} no es un nombre válido"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} no es un número de teléfono válido"
@@ -31340,7 +31492,7 @@ msgstr "{0} no es un campo padre válido para {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} no es un formato de informe válido. El formato del informe debe ser uno de los siguientes {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} no es un archivo zip"
@@ -31364,7 +31516,7 @@ msgstr "{0} no es uno de {1}"
msgid "{0} is not set"
msgstr "{0} no está establecido"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ahora es el formato de impresión predeterminado para el doctype {1}"
@@ -31374,8 +31526,8 @@ msgstr "{0} es uno de {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} es requerido"
@@ -31388,7 +31540,7 @@ msgstr "{0} está establecido"
msgid "{0} is within {1}"
msgstr "{0} está dentro de {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} elementos seleccionados"
@@ -31445,11 +31597,11 @@ msgstr "{0} debe ser uno de {1}"
msgid "{0} must be one of {1}"
msgstr "{0} debe ser uno de {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} debe establecerse primero"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} debe ser único"
@@ -31474,11 +31626,11 @@ msgid "{0} not found"
msgstr "{0} no encontrado"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} de {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} de {1} ({2} filas con hijos)"
@@ -31528,7 +31680,7 @@ msgstr "{0} eliminado su asignación."
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "{0} el rol no tiene permiso sobre ningún doctype"
@@ -31602,7 +31754,7 @@ msgstr "{0} a {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} dejó de compartir este documento con {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} actualizado"
@@ -31638,11 +31790,11 @@ msgstr "{0} {1} agregado"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} agregado al panel {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} ya existe"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} no puede ser \"{2}\". Debe ser uno de \"{3}\""
@@ -31662,11 +31814,11 @@ msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} no encontrado"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: el registro enviado no se puede eliminar. Primero debe {2} cancelarlo {3}."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Fila {1}"
@@ -31674,35 +31826,35 @@ msgstr "{0}, Fila {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} completo | Deje esta pestaña abierta hasta que se complete."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) se truncará, ya que el máximo de caracteres permitidos es {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: no se puede establecer \"corregir\" sin cancelar"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: no se puede establecer \"asignar corrección\" si no es enviable"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: no se puede establecer \"asignar envío\" si no es enviable"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: no se puede establecer \"cancelar\" sin enviar"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: no se puede establecer \"importar\" sin crear primero"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: no se puede establecer \"enviar\", \"cancelar\" o \"corregir\" sin escribir primero"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: no se puede establecer \"importar\" puesto que {1} no es importable"
@@ -31730,11 +31882,11 @@ msgstr "{0}: el nombre de campo {1} aparece varias veces en las filas {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: El tipo de campo {1} para {2} no puede ser único"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: no se ha definido ningún conjunto de permisos básicos"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: sólo se permite una regla con el mismo rol, nivel y {1}"
@@ -31754,7 +31906,7 @@ msgstr "{0}: Las opciones {1} deben ser las mismas que el nombre del doctype {2}
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: También pueden aplicarse otras reglas de permiso"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: el Permiso en el nivel 0 debe ser establecido antes de establecer niveles superiores"
@@ -31775,7 +31927,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} está configurado para indicar {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
@@ -31811,11 +31963,11 @@ msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_na
msgid "{} Complete"
msgstr "{} Completo"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Código python inválido en la línea {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Código python posiblemente inválido.
{}"
@@ -31841,7 +31993,7 @@ msgstr "{} ha sido deshabilitado. Solo se puede habilitar si {} está marcado."
msgid "{} is not a valid date string."
msgstr "{} no es una cadena de fecha válida."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "¡{} no encontrado en PATH! Esto es necesario para acceder a la consola."
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index d39fa902fa..6f9dbc7856 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:02\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-11 00:22\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "در جستجوی سراسری برای نوع {0} در ردیف {1} م
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "در نمای فهرست برای فیلد {0} از نوع {1} مجاز نیست"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز نیست"
@@ -86,11 +86,11 @@ msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز
msgid "'Recipients' not specified"
msgstr "دریافت کنندگان مشخص نشده است"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "{0} یک URL معتبر نیست"
@@ -122,7 +122,7 @@ msgstr "0 - پیشنویس؛ 1 - ارسال شده؛ 2 - لغو شده"
msgid "0 is highest"
msgstr "0 بالاترین است"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = درست و 0 = نادرست"
@@ -141,11 +141,11 @@ msgstr "1 روز"
msgid "1 Google Calendar Event synced."
msgstr "1 رویداد تقویم Google همگامسازی شد."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 گزارش"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 روز پیش"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 ساعت"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 ساعت پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 دقیقه پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 ماه پیش"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "1 ثانیه پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 هفته قبل"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 سال پیش"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "2 ساعت پیش"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "2 ماه پیش"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "2 هفته پیش"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "2 سال پیش"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 دقیقه پیش"
@@ -232,7 +232,7 @@ msgstr "4 ساعت"
msgid "5 Records"
msgstr "5 رکورد"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 روز پیش"
@@ -268,6 +268,16 @@ msgstr "{0} یک URL معتبر نیست"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "لطفاً آن را به روز نکنید زیرا ممکن است فرم شما را به هم بریزد. از سفارشیسازی فرم View و Custom Fields برای تنظیم ویژگی ها استفاده کنید!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -569,11 +579,16 @@ msgstr "نام DocType باید با یک حرف شروع شود و فقط شا
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "یک لینک دانلود حاوی اطلاعات شما به آدرس ایمیل مرتبط با حساب کاربریتان ارسال خواهد شد."
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "فیلدی با نام {0} از قبل در {1} وجود دارد"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "فایلی با همین نام {} از قبل وجود دارد"
@@ -695,7 +710,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -714,7 +729,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr "کلید API قابل بازسازی نیست"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "کلیدهای API"
@@ -738,7 +753,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -824,7 +839,7 @@ msgstr "توکن دسترسی"
msgid "Access Token URL"
msgstr "URL توکن دسترسی"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "دسترسی از این آدرس IP مجاز نیست"
@@ -940,7 +955,7 @@ msgstr "عمل {0} در {1} {2} ناموفق بود. مشاهده آن {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "اقدامات"
@@ -997,7 +1012,7 @@ msgstr "لاگ فعالیت"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1008,7 +1023,7 @@ msgstr "لاگ فعالیت"
msgid "Add"
msgstr "افزودن"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "اضافه / حذف ستون ها"
@@ -1040,7 +1055,7 @@ msgstr "افزودن حاشیه در پایین"
msgid "Add Border at Top"
msgstr "افزودن حاشیه در بالا"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "افزودن کارت به داشبورد"
@@ -1053,8 +1068,8 @@ msgid "Add Child"
msgstr "افزودن فرزند"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1148,7 +1163,7 @@ msgstr "افزودن مشترکین"
msgid "Add Tags"
msgstr "افزودن تگ"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "افزودن تگ"
@@ -1323,6 +1338,7 @@ msgstr "مجوزهای اضافی"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1331,6 +1347,7 @@ msgstr "آدرس"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "آدرس خط 1"
@@ -1338,6 +1355,7 @@ msgstr "آدرس خط 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "آدرس خط 2"
@@ -1499,7 +1517,7 @@ msgstr "پس از ارسال"
msgid "After Submit"
msgstr "پس از ارسال"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "برای ایجاد کارت شماره، فیلد مجموع لازم است"
@@ -1526,11 +1544,11 @@ msgstr "هشدار"
msgid "Alerts and Notifications"
msgstr "هشدارها و اعلان ها"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1601,7 +1619,7 @@ msgstr "همه موارد ارسالی"
#: frappe/custom/doctype/customize_form/customize_form.js:452
msgid "All customizations will be removed. Please confirm."
-msgstr "تمام سفارشی سازی ها حذف خواهند شد. لطفا تایید کنید."
+msgstr "تمام سفارشی سازی ها حذف خواهند شد. لطفا تأیید کنید."
#: frappe/templates/includes/comments/comments.html:158
msgid "All fields are necessary to submit the comment."
@@ -1753,7 +1771,7 @@ msgstr "اجازه نقش ها"
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "اجازه تایید خود"
+msgstr "اجازه تأیید خود"
#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -1764,7 +1782,7 @@ msgstr "اجازه ارسال دادههای استفاده برای بهبو
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "اجازه تایید برای ایجاد کننده سند"
+msgstr "اجازه تأیید برای ایجاد کننده سند"
#. Label of the allow_comments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1978,6 +1996,12 @@ msgstr "همچنین افزودن فیلد وابستگی به وضعیت {0}"
msgid "Alternative Email ID"
msgstr "شناسه ایمیل جایگزین"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "همیشه"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2054,6 +2078,11 @@ msgstr "اصلاحیه مجاز نیست"
msgid "Amendment naming rules updated."
msgstr "قوانین نامگذاری اصلاحیه به روز شد."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "ایمیلی برای تأیید درخواست شما به آدرس ایمیل شما ارسال شده است. لطفاً برای تکمیل فرآیند، درخواست خود را تأیید کنید."
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "هنگام تنظیم پیشفرضهای نشست خطایی روی داد"
@@ -2236,7 +2265,7 @@ msgstr "اعمال شد"
msgid "Apply"
msgstr "درخواست دادن"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "اعمال قانون تخصیص"
@@ -2290,7 +2319,7 @@ msgstr "درخواست: {0}"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
-msgstr "تایید لازم است"
+msgstr "تأیید لازم است"
#. Label of a standard navbar item
#. Type: Route
@@ -2321,7 +2350,7 @@ msgstr "ستون های بایگانی شده"
msgid "Are you sure you want to cancel the invitation?"
msgstr "آیا مطمئن هستید که میخواهید دعوت را لغو کنید؟"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "آیا مطمئن هستید که میخواهید واگذاری ها را پاک کنید؟"
@@ -2357,7 +2386,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "آیا مطمئن هستید که میخواهید تغییرات را نادیده بگیرید؟"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "آیا مطمئن هستید که میخواهید یک گزارش جدید ایجاد کنید؟"
@@ -2365,7 +2394,7 @@ msgstr "آیا مطمئن هستید که میخواهید یک گزارش ج
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "آیا مطمئنید که میخواهید {0} را با {1} ادغام کنید؟"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "آیا مطمئن هستید که میخواهید ادامه دهید؟"
@@ -2420,6 +2449,12 @@ msgstr "از آنجایی که اشتراکگذاری سند غیرفعال
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "طبق درخواست شما، حساب و داده های شما در {0} مرتبط با ایمیل {1} برای همیشه حذف شده است"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "بپرس"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2429,7 +2464,7 @@ msgstr "تعیین شرط"
msgid "Assign To"
msgstr "اختصاص دادن به"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "اختصاص دادن به"
@@ -2570,9 +2605,9 @@ msgstr "تکالیف"
#. Task'
#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
msgid "Asynchronous"
-msgstr ""
+msgstr "ناهمزمان"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "حداقل یک ستون برای نمایش در شبکه مورد نیاز است."
@@ -2652,7 +2687,7 @@ msgstr "پیوست به فیلد"
msgid "Attached To Name"
msgstr "پیوست به نام"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "پیوست به نام باید یک رشته یا یک عدد صحیح باشد"
@@ -2668,7 +2703,7 @@ msgstr "پیوست"
msgid "Attachment Limit (MB)"
msgstr "محدودیت پیوست (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "به محدودیت پیوست رسید"
@@ -2690,11 +2725,11 @@ msgstr "پیوست حذف شد"
msgid "Attachments"
msgstr "پیوست ها"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "تلاش برای اتصال به سینی QZ..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "تلاش برای راهاندازی QZ Tray..."
@@ -3530,7 +3565,7 @@ msgstr "ساخت"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
-msgstr ""
+msgstr "گزارشها، قالبهای چاپ و داشبوردهای خودتان را بسازید. برای پیمایش آسانتر، فضاهای کاری شخصیسازیشده ایجاد کنید"
#: frappe/workflow/doctype/workflow/workflow_list.js:18
msgid "Build {0}"
@@ -3553,15 +3588,15 @@ msgstr "حذف انبوه"
msgid "Bulk Edit"
msgstr "ویرایش انبوه"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "ویرایش انبوه {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "عملیات انبوه ناموفق بود"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "عملیات انبوه با موفقیت انجام شد"
@@ -3785,7 +3820,7 @@ msgid "Camera"
msgstr "دوربین"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3845,7 +3880,7 @@ msgstr "نمیتوان نام {0} را به {1} تغییر داد زیرا {0
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3853,7 +3888,7 @@ msgstr "نمیتوان نام {0} را به {1} تغییر داد زیرا {0
msgid "Cancel"
msgstr "لغو"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "لغو"
@@ -3871,7 +3906,7 @@ msgstr "لغو همه"
msgid "Cancel All Documents"
msgstr "لغو تمام اسناد"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "{0} سند لغو شود؟"
@@ -3920,11 +3955,11 @@ msgstr "نمیتوان مقادیر را واکشی کرد"
msgid "Cannot Remove"
msgstr "نمیتوان حذف کرد"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "پس از ارسال امکان بهروزرسانی وجود ندارد"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "دسترسی به مسیر فایل {0} امکان پذیر نیست"
@@ -3968,11 +4003,11 @@ msgstr "نمیتوان یک {0} در برابر سند فرزند ایجاد
msgid "Cannot create private workspace of other users"
msgstr "نمیتوان محیط کار خصوصی از سایر کاربران ایجاد کرد"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "نمیتوان پوشههای Home و Attachments را حذف کرد"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "نمیتوان حذف یا لغو کرد زیرا {0} {1} با {2} {3} {4} پیوند داده شده است"
@@ -4035,8 +4070,8 @@ msgstr "نمیتوان سند لغو شده را ویرایش کرد"
msgid "Cannot edit filters for standard charts"
msgstr "نمیتوان فیلترها را برای نمودارهای استاندارد ویرایش کرد"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4048,19 +4083,19 @@ msgstr "نمیتوان فیلدهای استاندارد را ویرایش ک
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "نمیتوان {0} را برای یک نوع سند غیر قابل ارسال فعال کرد"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "نمیتوان فایل {} را روی دیسک پیدا کرد"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "محتویات فایل یک پوشه را نمیتوان دریافت کرد"
#: frappe/printing/page/print/print.js:884
msgid "Cannot have multiple printers mapped to a single print format."
-msgstr "نمیتوان چندین چاپگر را به یک قالب چاپی نگاشت کرد."
+msgstr "نمیتوان چندین چاپگر را به یک قالب چاپ واحد نگاشت کرد."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4076,7 +4111,7 @@ msgstr "نمیتوان نگاشت کرد زیرا شرایط زیر نامو
msgid "Cannot match column {0} with any field"
msgstr "ستون {0} با هیچ فیلدی مطابقت ندارد"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "نمیتوان ردیف را جابجا کرد"
@@ -4105,11 +4140,11 @@ msgstr "نمیتوان {0} را ارسال کرد."
msgid "Cannot update {0}"
msgstr "نمیتوان {0} را به روز کرد"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "اینجا نمیتوان از پرسمان فرعی استفاده کرد."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "نمیتوان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد"
@@ -4208,7 +4243,7 @@ msgstr "تغییر گذرواژه"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
-msgstr "تغییر فرمت چاپ"
+msgstr "تغییر قالب چاپ"
#. Description of the 'Update Series Counter' (Section Break) field in DocType
#. 'Document Naming Settings'
@@ -4382,11 +4417,11 @@ msgstr "جدول فرزند {0} برای فیلد {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده میشوند"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4415,6 +4450,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "روش احراز هویت را برای استفاده توسط همه کاربران انتخاب کنید"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "شهر"
@@ -4441,7 +4477,7 @@ msgstr "پاک کردن و افزودن الگو"
msgid "Clear All"
msgstr "همه را پاک کن"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "پاک کردن واگذاری"
@@ -4481,7 +4517,7 @@ msgstr "روی Customize کلیک کنید تا اولین ویجت خود را
#: frappe/templates/emails/user_invitation.html:8
msgid "Click below to get started:"
-msgstr ""
+msgstr "برای شروع، روی گزینه زیر کلیک کنید:"
#: frappe/website/doctype/web_form/templates/web_form.html:154
msgid "Click here"
@@ -4497,7 +4533,7 @@ msgstr "برای ورود به {0} روی دکمه کلیک کنید"
#: frappe/templates/emails/data_deletion_approval.html:2
msgid "Click on the link below to approve the request"
-msgstr "برای تایید درخواست روی لینک زیر کلیک کنید"
+msgstr "برای تأیید درخواست روی لینک زیر کلیک کنید"
#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
@@ -4509,7 +4545,7 @@ msgstr "برای دانلود اطلاعات خود روی لینک زیر کل
#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
-msgstr "برای تایید درخواست خود روی لینک زیر کلیک کنید"
+msgstr "برای تأیید درخواست خود روی لینک زیر کلیک کنید"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
@@ -4518,24 +4554,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "برای ایجاد Refresh Token روی {0} کلیک کنید."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "برای ویرایش روی جدول کلیک کنید"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "برای تنظیم فیلترهای پویا کلیک کنید"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "برای تنظیم فیلترها کلیک کنید"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "برای مرتب سازی بر اساس {0} کلیک کنید"
@@ -4713,7 +4749,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "جمع شدن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "جمع کردن همه"
@@ -4768,7 +4804,7 @@ msgstr "تاشو بستگی دارد به (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4824,11 +4860,11 @@ msgstr "نام ستون"
msgid "Column Name cannot be empty"
msgstr "نام ستون نمیتواند خالی باشد"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "عرض ستون"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "عرض ستون نمیتواند صفر باشد."
@@ -4855,7 +4891,7 @@ msgstr "ستونها"
msgid "Columns / Fields"
msgstr "ستون ها / فیلدها"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "ستون ها بر اساس"
@@ -5070,8 +5106,8 @@ msgstr "فشرده شده"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5107,7 +5143,7 @@ msgstr "شرایط"
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Config"
-msgstr ""
+msgstr "پیکربندی"
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
@@ -5119,7 +5155,7 @@ msgstr "پیکربندی"
msgid "Configure Chart"
msgstr "نمودار را پیکربندی کنید"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "پیکربندی ستون ها"
@@ -5146,15 +5182,15 @@ msgstr "نحوه نامگذاری اسناد اصلاحشده را پیکرب
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
-msgstr "تایید"
+msgstr "تأیید"
#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
-msgstr "تایید"
+msgstr "تأیید"
#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
@@ -5163,30 +5199,30 @@ msgstr "تأیید دسترسی"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
-msgstr "حذف اکانت را تایید کنید"
+msgstr "حذف اکانت را تأیید کنید"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "گذرواژه جدید را تأیید کنید"
#: frappe/www/update-password.html:55
msgid "Confirm Password"
-msgstr "گذرواژه را تایید کنید"
+msgstr "گذرواژه را تأیید کنید"
#: frappe/templates/emails/data_deletion_approval.html:6
#: frappe/templates/emails/delete_data_confirmation.html:7
msgid "Confirm Request"
-msgstr "درخواست را تایید کنید"
+msgstr "درخواست را تأیید کنید"
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "الگوی ایمیل تایید"
+msgstr "الگوی ایمیل تأیید"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
-msgstr "تایید شده"
+msgstr "تأیید شده"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
@@ -5210,8 +5246,8 @@ msgstr "برنامه متصل"
msgid "Connected User"
msgstr "کاربر متصل"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "به سینی QZ متصل شد!"
@@ -5262,6 +5298,10 @@ msgstr "محدودیت ها"
msgid "Contact"
msgstr "مخاطب"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5325,7 +5365,7 @@ msgstr "حاوی {0} اصلاحات امنیتی است"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5414,7 +5454,7 @@ msgstr "کپی خطا در کلیپ بورد"
msgid "Copy to Clipboard"
msgstr "کپی به کلیپ بورد"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "کپی کردن توکن در کلیپ بورد"
@@ -5423,7 +5463,7 @@ msgstr "کپی کردن توکن در کلیپ بورد"
msgid "Copyright"
msgstr "کپی رایت"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Core DocTypes را نمیتوان سفارشی کرد."
@@ -5447,7 +5487,7 @@ msgstr "{0} پیدا نشد"
msgid "Could not map column {0} to field {1}"
msgstr "ستون {0} به فیلد {1} نگاشت نشد"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5500,13 +5540,14 @@ msgstr "شمارنده"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "کشور"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "کد کشور مورد نیاز است"
@@ -5538,13 +5579,13 @@ msgstr "بس"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "ایجاد کردن"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "ایجاد و ادامه"
@@ -5558,7 +5599,7 @@ msgid "Create Card"
msgstr "ایجاد کارت"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "نمودار ایجاد کنید"
@@ -5592,12 +5633,12 @@ msgstr "ایجاد لاگ"
msgid "Create New"
msgstr "ایجاد جدید"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "ایجاد جدید"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "DocType جدید ایجاد کنید"
@@ -5605,7 +5646,7 @@ msgstr "DocType جدید ایجاد کنید"
msgid "Create New Kanban Board"
msgstr "صفحه کانبان جدید ایجاد کنید"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "ایجاد ایمیل کاربر"
@@ -5628,8 +5669,8 @@ msgstr "یک رکورد جدید ایجاد کنید"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "ایجاد یک {0} جدید"
@@ -5639,13 +5680,13 @@ msgstr "یک حساب {0} ایجاد کنید"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
-msgstr "ایجاد یا ویرایش فرمت چاپ"
+msgstr "ایجاد یا ویرایش قالب چاپ"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
msgid "Create or Edit Workflow"
msgstr "ایجاد یا ویرایش گردش کار"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "اولین {0} خود را ایجاد کنید"
@@ -5655,7 +5696,7 @@ msgstr "گردش کار خود را به صورت بصری با استفاده
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "ایجاد شده"
@@ -5992,7 +6033,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "سفارشی؟"
@@ -6027,7 +6068,7 @@ msgstr "سفارشی سازی برای {0} صادر شده به:
{1}"
msgid "Customize"
msgstr "شخصی سازی"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "شخصی سازی"
@@ -6046,7 +6087,7 @@ msgstr "داشبورد را سفارشی کنید"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "سفارشیسازی فرم"
@@ -6277,7 +6318,7 @@ msgstr "لاگ درونبُرد داده"
msgid "Data Import Template"
msgstr "الگوی درونبُرد داده"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "داده خیلی طولانی است"
@@ -6308,7 +6349,7 @@ msgstr "استفاده از اندازه ردیف پایگاه داده"
msgid "Database Storage Usage By Tables"
msgstr "استفاده از ذخیرهسازی پایگاه داده بر اساس جداول"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "محدودیت اندازه ردیف جدول پایگاه داده"
@@ -6534,7 +6575,7 @@ msgstr "صفحه اصلی پورتال پیشفرض"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "فرمت چاپ پیشفرض"
+msgstr "قالب چاپ پیشفرض"
#. Label of the default_print_language (Link) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -6678,13 +6719,13 @@ msgstr "با تاخیر"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "حذف"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "حذف"
@@ -6717,7 +6758,7 @@ msgstr "حذف ستون"
msgid "Delete Data"
msgstr "حذف داده ها"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "صفحه کانبان را حذف کنید"
@@ -6731,7 +6772,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "حذف تب"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "حذف و ایجاد جدید"
@@ -6773,12 +6814,12 @@ msgstr "حذف تب"
msgid "Delete this record to allow sending to this email address"
msgstr "این سابقه را حذف کنید تا امکان ارسال به این آدرس ایمیل فراهم شود"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "{0} مورد برای همیشه حذف شود؟"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} مورد برای همیشه حذف شود؟"
@@ -6814,7 +6855,7 @@ msgstr "اسناد حذف شده"
msgid "Deleted Name"
msgstr "نام حذف شده"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "تمام اسناد با موفقیت حذف شد"
@@ -6822,7 +6863,7 @@ msgstr "تمام اسناد با موفقیت حذف شد"
msgid "Deleted!"
msgstr "حذف شده!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "در حال حذف {0}"
@@ -7275,10 +7316,14 @@ msgstr "کاربر جدید ایجاد نکنید"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "اگر کاربر با ایمیل در سیستم وجود ندارد، کاربر جدیدی ایجاد نکنید"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "سرصفحه هایی را که در قالب از پیش تنظیم شده اند ویرایش نکنید"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "دوباره در مورد {0} به من هشدار نده"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "آیا هنوز میخواهید ادامه دهید؟"
@@ -7702,13 +7747,13 @@ msgstr "عنوان سند"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "نوع سند"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "نوع و عملکرد سند برای ایجاد کارت شماره مورد نیاز است"
@@ -7753,15 +7798,15 @@ msgstr "قفل سند باز شد"
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "سند لغو شده است"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "سند ارسال شده است"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "سند در حالت پیشنویس است"
@@ -7903,7 +7948,7 @@ msgstr "دونات"
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7936,7 +7981,7 @@ msgstr "لینک دانلود"
msgid "Download PDF"
msgstr "دانلود PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "دانلود گزارش"
@@ -8032,7 +8077,7 @@ msgstr "ورود تکراری"
msgid "Duplicate Filter Name"
msgstr "نام فیلتر تکراری"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "نام تکراری"
@@ -8136,8 +8181,8 @@ msgstr "خروج"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8149,7 +8194,7 @@ msgstr "خروج"
msgid "Edit"
msgstr "ویرایش"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "ویرایش"
@@ -8159,7 +8204,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "ویرایش"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "ویرایش"
@@ -8188,7 +8233,7 @@ msgstr "ویرایش HTML سفارشی"
msgid "Edit DocType"
msgstr "ویرایش DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "ویرایش DocType"
@@ -8206,7 +8251,7 @@ msgstr "ویرایش فیلترها"
msgid "Edit Footer"
msgstr "ویرایش پاورقی"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "ویرایش فرمت"
@@ -8250,7 +8295,7 @@ msgstr "ویرایش آشناسازی"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24
msgid "Edit Print Format"
-msgstr "ویرایش فرمت چاپ"
+msgstr "ویرایش قالب چاپ"
#: frappe/www/me.html:38
msgid "Edit Profile"
@@ -8308,7 +8353,7 @@ msgstr "ویرایش {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "شبکه قابل ویرایش"
@@ -8353,6 +8398,8 @@ msgstr "انتخابگر عنصر"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8371,6 +8418,8 @@ msgstr "انتخابگر عنصر"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "ایمیل"
@@ -8412,7 +8461,7 @@ msgstr "حساب ایمیل تنظیم نشده است. لطفاً یک حساب
#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
-msgstr ""
+msgstr "حساب ایمیل {0} غیرفعال شد"
#. Label of the email_id (Data) field in DocType 'Address'
#. Label of the email_id (Data) field in DocType 'Contact'
@@ -8490,6 +8539,7 @@ msgid "Email IDs"
msgstr "شناسه های ایمیل"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "آدرس ایمیل"
@@ -8575,7 +8625,7 @@ msgstr "گزینه همگام سازی ایمیل"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
-msgstr "قالب ایمیل"
+msgstr "الگوی ایمیل"
#. Label of the enable_email_threads_on_assigned_document (Check) field in
#. DocType 'Notification Settings'
@@ -8601,7 +8651,7 @@ msgstr "ایمیل به عنوان هرزنامه علامت گذاری شده
msgid "Email has been moved to trash"
msgstr "ایمیل به سطل زباله منتقل شد"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "ایمیل برای ایجاد ایمیل کاربر الزامی است"
@@ -8644,7 +8694,7 @@ msgstr "ایمیلها با اقدامات بعدی ممکن در گردش ک
msgid "Embed code copied"
msgstr "کد جاسازی کپی شد"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8652,7 +8702,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9080,7 +9130,7 @@ msgstr "لاگهای خطا"
msgid "Error Message"
msgstr "پیام خطا"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "خطا در اتصال به برنامه QZ Tray...
برای استفاده از ویژگی Raw Print، باید برنامه QZ Tray را نصب و اجرا کنید.
برای دانلود و نصب QZ Tray اینجا را کلیک کنید.
برای اطلاعات بیشتر در مورد چاپ خام اینجا را کلیک کنید."
@@ -9108,9 +9158,9 @@ msgstr "خطا در اسکریپت کلاینت."
msgid "Error in Header/Footer Script"
msgstr "خطا در اسکریپت سرصفحه/پانویس"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "خطا در اعلان"
@@ -9130,19 +9180,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr "خطا هنگام اتصال به حساب ایمیل {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "خطا هنگام ارزیابی اعلان {0}. لطفا قالب خود را اصلاح کنید."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "خطا: مقدار از دست رفته برای {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9285,13 +9335,13 @@ msgstr "اجرای اسکریپت کنسول"
#: frappe/public/js/frappe/ui/dropdown_console.js:132
msgid "Executing Code"
-msgstr ""
+msgstr "در حال اجرای کد"
#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
msgstr "در حال اجرا..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "زمان اجرا: {0} ثانیه"
@@ -9317,12 +9367,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "بسط دادن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "گسترش همه"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9380,13 +9430,13 @@ msgstr "زمان انقضای صفحه تصویر کد QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "برونبُرد"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "برونبُرد"
@@ -9579,7 +9629,7 @@ msgstr "محاسبه بدنه درخواست ناموفق بود: {}"
msgid "Failed to connect to server"
msgstr "اتصال به سرور ممکن نشد"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "رمزگشایی توکن انجام نشد، لطفاً یک توکن رمزگذاری شده معتبر base64 ارائه دهید."
@@ -9587,7 +9637,7 @@ msgstr "رمزگشایی توکن انجام نشد، لطفاً یک توکن
msgid "Failed to decrypt key {0}"
msgstr "رمزگشایی کلید {0} انجام نشد"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9743,7 +9793,7 @@ msgstr "در حال واکشی اسناد جستجوی سراسری پیشف
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9826,7 +9876,7 @@ msgstr "فیلد {0} به نوع سند موجود {1} اشاره دارد."
msgid "Field {0} not found."
msgstr "فیلد {0} یافت نشد."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9844,7 +9894,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "نام فیلد"
@@ -9857,7 +9907,7 @@ msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})"
@@ -9873,11 +9923,11 @@ msgstr "نام فیلد که DocType برای این فیلد پیوند خوا
msgid "Fieldname {0} appears multiple times"
msgstr "نام فیلد {0} چندین بار ظاهر میشود"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "نام فیلد {0} نمیتواند نویسه های خاصی مانند {1} داشته باشد"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "نام فیلد {0} با متا شی در تضاد است"
@@ -9917,7 +9967,7 @@ msgstr "فیلدها"
msgid "Fields Multicheck"
msgstr "چند بررسی فیلدها"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File تنظیم شوند"
@@ -9925,7 +9975,7 @@ msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File ت
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9953,7 +10003,7 @@ msgstr "نوع فیلد"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "نوع فیلد را نمیتوان از {0} به {1} تغییر داد"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "نوع فیلد را نمیتوان از {0} به {1} در ردیف {2} تغییر داد"
@@ -10019,7 +10069,7 @@ msgstr "آدرس فایل"
msgid "File backup is ready"
msgstr "پشتیبان گیری از فایل آماده است"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "نام فایل نمیتواند دارای {0} باشد"
@@ -10027,7 +10077,7 @@ msgstr "نام فایل نمیتواند دارای {0} باشد"
msgid "File not attached"
msgstr "فایل پیوست نشده است"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "اندازه فایل از حداکثر اندازه مجاز {0} مگابایت بیشتر است"
@@ -10036,11 +10086,11 @@ msgstr "اندازه فایل از حداکثر اندازه مجاز {0} مگا
msgid "File too big"
msgstr "فایل خیلی بزرگ است"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "نوع فایل {0} مجاز نیست"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "فایل {0} وجود ندارد"
@@ -10054,8 +10104,8 @@ msgstr "فایل ها"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10094,11 +10144,11 @@ msgstr "نام فیلتر"
msgid "Filter Values"
msgstr "مقادیر فیلتر"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10175,7 +10225,7 @@ msgstr "بخش فیلترها"
msgid "Filters applied for {0}"
msgstr "فیلترهای اعمال شده برای {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "فیلترها ذخیره شدند"
@@ -10223,8 +10273,12 @@ msgstr "اولین روز هفته"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "نام کوچک"
@@ -10305,7 +10359,7 @@ msgstr "نام پوشه"
msgid "Folder name should not include '/' (slash)"
msgstr "نام پوشه نباید شامل '/' (اسلش) باشد"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "پوشه {0} خالی نیست"
@@ -10412,7 +10466,7 @@ msgstr "جزئیات پاورقی"
msgid "Footer HTML"
msgstr "پاورقی HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "تنظیم HTML پاورقی از پیوست {0}"
@@ -10507,7 +10561,7 @@ msgstr "برای کاربر"
msgid "For Value"
msgstr "برای مقدار"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "برای مقایسه، از >5، <10 یا =324 استفاده کنید. برای محدوده ها، از 5:10 (برای مقادیر بین 5 و 10) استفاده کنید."
@@ -10548,7 +10602,7 @@ msgstr "برای چندین آدرس، آدرس را در خطوط مختلف و
msgid "For updating, you can update only selective columns."
msgstr "برای بهروزرسانی، میتوانید فقط ستون های انتخابی را به روز کنید."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "برای {0} در سطح {1} در {2} در ردیف {3}"
@@ -10697,11 +10751,11 @@ msgstr "Frappe"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Frappe Blog"
-msgstr ""
+msgstr "بلاگ Frappe"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Frappe Forum"
-msgstr ""
+msgstr "انجمن Frappe"
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Frappe Framework"
@@ -10792,7 +10846,7 @@ msgstr "از تاریخ"
msgid "From Date Field"
msgstr "از فیلد تاریخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "از نوع سند"
@@ -10854,13 +10908,13 @@ msgstr "عملکرد بر اساس"
msgid "Function {0} is not whitelisted."
msgstr "تابع {0} در لیست سفید قرار ندارد."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "گرههای بیشتر را فقط میتوان تحت گرههای نوع «گروهی» ایجاد کرد"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "زیرگروههای بیشتر فقط میتوانند تحت رکوردهایی که با عنوان «گروه» مشخص شدهاند، ایجاد شوند"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -10919,7 +10973,7 @@ msgstr "عمومی"
msgid "Generate Keys"
msgstr "ایجاد کلیدها"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "ایجاد گزارش جدید"
@@ -10934,7 +10988,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "ایجاد URL پیگیری"
@@ -11141,10 +11195,6 @@ msgstr "IP ناشناس گوگل آنالیتیکس"
msgid "Google Calendar"
msgstr "تقویم گوگل"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Calendar - مخاطب / ایمیل یافت نشد. شرکت کننده برای -
{0} اضافه نشد"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Calendar - تقویم برای {0} ایجاد نشد، کد خطا {1}."
@@ -11339,14 +11389,10 @@ msgstr "گروه بر اساس نوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "برای ایجاد نمودار داشبورد فیلد Group By لازم است"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "گره گروه"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11406,7 +11452,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11511,7 +11557,7 @@ msgstr "سرصفحه"
msgid "Header HTML"
msgstr "سربرگ HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "تنظیم HTML سرصفحه از پیوست {0}"
@@ -11640,7 +11686,7 @@ msgstr "هلوتیکا"
msgid "Helvetica Neue"
msgstr "هلوتیکا نو"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "در اینجا URL پیگیری شما است"
@@ -11676,7 +11722,7 @@ msgstr "پنهان شده است"
msgid "Hidden Fields"
msgstr "فیلدهای پنهان"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11788,7 +11834,7 @@ msgstr "نوار کناری، منو و دیدگاهها را پنهان کن
msgid "Hide Standard Menu"
msgstr "مخفی کردن منوی استاندارد"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "پنهان کردن تگها"
@@ -11948,7 +11994,7 @@ msgstr ""
msgid "ID"
msgstr "شناسه"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12045,9 +12091,9 @@ msgstr "اگر Apply Strict User Permission علامت زده شود و اجاز
msgid "If Checked workflow status will not override status in list view"
msgstr "اگر وضعیت گردش کار بررسی شده وضعیت را در نمای فهرست لغو نمیکند"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "اگر مالک"
@@ -12275,8 +12321,8 @@ msgstr "برنامه های نادیده گرفته شده"
msgid "Illegal Document Status for {0}"
msgstr "وضعیت سند غیرقانونی برای {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "پرسمان SQL غیر قانونی"
@@ -12363,11 +12409,11 @@ msgstr "تصاویر"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "جعل هویت"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "جعل هویت به عنوان {0}"
@@ -12397,7 +12443,7 @@ msgstr "ضمنی"
msgid "Import"
msgstr "درونبُرد"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "درونبُرد"
@@ -12552,7 +12598,7 @@ msgstr "در پیش نمایش"
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
-msgstr "در حال پیش رفت"
+msgstr "در حال انجام"
#: frappe/database/database.py:287
msgid "In Read Only Mode"
@@ -12625,15 +12671,16 @@ msgstr "شامل تم از برنامه ها"
msgid "Include Web View Link in Email"
msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "شامل فیلترها"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "شامل تورفتگی"
@@ -12680,7 +12727,7 @@ msgstr "حساب ایمیل ورودی صحیح نیست"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "پیادهسازی Virtual Doctype ناقص"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "جزئیات ورود ناقص"
@@ -12791,7 +12838,7 @@ msgstr "درج در بالا"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "درج بعد"
@@ -12829,8 +12876,8 @@ msgstr "درج سبک"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "{0} را از Marketplace نصب کنید"
@@ -12864,7 +12911,7 @@ msgstr "دستورالعمل ها ایمیل شد"
msgid "Insufficient Permission Level for {0}"
msgstr "سطح مجوز ناکافی برای {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "مجوز ناکافی برای {0}"
@@ -12980,7 +13027,7 @@ msgid "Invalid"
msgstr "بی اعتبار"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12990,7 +13037,7 @@ msgstr "عبارت \"depends_on\" نامعتبر است"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "عبارت \"depends_on\" نامعتبر تنظیم شده در فیلتر {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "عبارت \"mandatory_depends_on\" نامعتبر است"
@@ -13034,14 +13081,14 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr "نام فیلد نامعتبر است"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "URL فایل نامعتبر است"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
-msgstr ""
+msgstr "فیلتر نامعتبر"
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
@@ -13093,7 +13140,7 @@ msgstr "سرور یا درگاه ایمیل خروجی نامعتبر: {0}"
msgid "Invalid Output Format"
msgstr "فرمت خروجی نامعتبر است"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13107,11 +13154,11 @@ msgstr "پارامترهای نامعتبر"
msgid "Invalid Password"
msgstr "گذرواژه نامعتبر"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "شماره تلفن نامعتبر"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "درخواست نامعتبر"
@@ -13128,7 +13175,7 @@ msgstr "نام فیلد جدول نامعتبر است"
msgid "Invalid Transition"
msgstr "انتقال نامعتبر است"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13151,7 +13198,7 @@ msgstr "راز Webhook نامعتبر است"
msgid "Invalid aggregate function"
msgstr "تابع تجمیع نامعتبر است"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13159,19 +13206,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13179,11 +13226,11 @@ msgstr ""
msgid "Invalid column"
msgstr "ستون نامعتبر است"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13199,23 +13246,23 @@ msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "نام فیلد نامعتبر {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13227,11 +13274,11 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است"
msgid "Invalid file path: {0}"
msgstr "مسیر فایل نامعتبر: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13239,11 +13286,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "فیلتر نامعتبر: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13280,23 +13327,27 @@ msgstr "محتوای نامعتبر یا خراب برای درونبُرد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "آرگومان های درخواست نامعتبر"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "Invalid request body"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13400,7 +13451,7 @@ msgstr "تقویم و گانت است"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "جدول فرزند است"
@@ -13453,6 +13504,10 @@ msgstr "پوشه است"
msgid "Is Global"
msgstr "سراسری است"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "گروه است"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13479,8 +13534,13 @@ msgstr "حالت اختیاری است"
msgid "Is Primary"
msgstr "اصلی است"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "آدرس اصلی است"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "تماس اصلی است"
@@ -13536,7 +13596,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "مجرد است"
@@ -13572,7 +13632,7 @@ msgstr "استاندارد است"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "قابل ارسال است"
@@ -13778,11 +13838,11 @@ msgstr "ستون نمودار کانبان"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "نام نمودار کانبان"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "تنظیمات کانبان"
@@ -14072,7 +14132,7 @@ msgstr "برچسب اجباری است"
msgid "Landing Page"
msgstr "صفحه فرود"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "افقی"
@@ -14080,10 +14140,13 @@ msgstr "افقی"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "زبان"
@@ -14171,8 +14234,12 @@ msgstr "ماه گذشته"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "نام خانوادگی"
@@ -14318,7 +14385,7 @@ msgstr "طول"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "طول آرایه داده ارسال شده بیشتر از مقدار حداکثر نقاط برچسب مجاز است!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "طول {0} باید بین 1 تا 1000 باشد"
@@ -14368,7 +14435,7 @@ msgstr "نامه"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14396,7 +14463,7 @@ msgstr "نام سربرگ"
msgid "Letter Head Scripts"
msgstr "اسکریپت های سربرگ"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Letter Head هم نمیتواند غیرفعال و هم پیشفرض باشد"
@@ -14413,7 +14480,7 @@ msgstr "سربرگ در HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "سطح"
@@ -14706,7 +14773,7 @@ msgstr "فیلتر لیست"
msgid "List Settings"
msgstr "تنظیمات لیست"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "تنظیمات لیست"
@@ -14757,7 +14824,7 @@ msgid "Load Balancing"
msgstr "تعادل بار"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "بارگذاری بیشتر"
@@ -14777,7 +14844,7 @@ msgstr "بارگذاری بیشتر"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "بارگذاری"
@@ -14920,7 +14987,7 @@ msgstr "کد تأیید ورود از {}"
msgid "Login and view in Browser"
msgstr "وارد شوید و در مرورگر مشاهده کنید"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "ورود به سیستم برای مشاهده لیست فرم وب مورد نیاز است. برای مشاهده تنظیمات لیست، {0} را فعال کنید"
@@ -14928,7 +14995,7 @@ msgstr "ورود به سیستم برای مشاهده لیست فرم وب مو
msgid "Login link sent to your email"
msgstr "لینک ورود به ایمیل شما ارسال شد"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "ورود به سیستم در حال حاضر مجاز نیست"
@@ -14981,7 +15048,7 @@ msgstr "با لینک ایمیل وارد شوید"
msgid "Login with email link expiry (in minutes)"
msgstr "ورود با انقضای لینک ایمیل (بر حسب دقیقه)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "ورود با نام کاربری و گذرواژه مجاز نمی باشد."
@@ -15000,7 +15067,7 @@ msgstr ""
msgid "Logout"
msgstr "خروج"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "خروج از تمام نشستها"
@@ -15104,7 +15171,10 @@ msgid "Major"
msgstr "عمده"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "نام را در جستجوی سراسری قابل جستجو کنید"
@@ -15180,7 +15250,7 @@ msgstr "اجباری بستگی دارد"
msgid "Mandatory Depends On (JS)"
msgstr "اجباری بستگی دارد به (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "اطلاعات اجباری از دست رفته:"
@@ -15192,11 +15262,11 @@ msgstr "فیلد اجباری: تعیین نقش برای"
msgid "Mandatory field: {0}"
msgstr "فیلد اجباری: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "فیلدهای اجباری در جدول {0}، ردیف {1} مورد نیاز است"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "فیلدهای اجباری مورد نیاز در {0}"
@@ -15367,7 +15437,7 @@ msgstr "حداکثر گزارش ایمیل خودکار برای هر کاربر
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max signups allowed per hour"
-msgstr ""
+msgstr "حداکثر تعداد مجاز ثبت نام در هر ساعت"
#: frappe/core/doctype/doctype/doctype.py:1343
msgid "Max width for type Currency is 100px in row {0}"
@@ -15378,7 +15448,7 @@ msgstr "حداکثر عرض برای نوع ارز 100 پیکسل در ردیف
msgid "Maximum"
msgstr "بیشترین"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "حداکثر محدودیت پیوست {0} برای {1} {2} رسیده است."
@@ -15402,7 +15472,7 @@ msgstr "معنی ارسال، لغو، اصلاح"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15621,7 +15691,7 @@ msgstr "روش"
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "روش برای ایجاد کارت شماره مورد نیاز است"
@@ -15637,6 +15707,11 @@ msgstr "مرکز میانی"
msgid "Middle Name"
msgstr "نام میانی"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "نام میانی (اختیاری)"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15707,7 +15782,7 @@ msgstr "DocType وجود ندارد"
msgid "Missing Field"
msgstr "فیلد جا افتاده"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "فیلدهای گمشده"
@@ -15743,6 +15818,11 @@ msgstr "تلفن همراه"
msgid "Mobile No"
msgstr "شماره موبایل"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "شماره موبایل"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15768,7 +15848,7 @@ msgstr "ماشه مدال"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15944,10 +16024,12 @@ msgstr "اطلاعات بیشتر"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "اطلاعات بیشتر"
@@ -15977,7 +16059,7 @@ msgstr "به احتمال زیاد گذرواژه شما خیلی طولانی
msgid "Move"
msgstr "حرکت"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "حرکت به"
@@ -16013,7 +16095,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "به شماره ردیف بروید"
@@ -16063,7 +16145,7 @@ msgstr "باید در \"()\" محصور شود و شامل \"{0}\" باشد که
msgid "Must be of type \"Attach Image\""
msgstr "باید از نوع «پیوست تصویر» باشد"
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "برای دسترسی به این گزارش باید مجوز گزارش را داشته باشد."
@@ -16081,7 +16163,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16203,7 @@ msgstr "توجه: این جعبه به دلیل استهلاک است. لطفا
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16223,12 +16305,12 @@ msgstr "الگوی نوار ناوبری"
msgid "Navbar Template Values"
msgstr "مقادیر الگوی نوار ناوبری"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "پیمایش لیست به پایین"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "پیمایش لیست به بالا"
@@ -16243,6 +16325,10 @@ msgstr "به محتوای اصلی بروید"
msgid "Navigation Settings"
msgstr "تنظیمات ناوبری"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "به کمک نیاز دارید؟"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید"
@@ -16251,7 +16337,7 @@ msgstr "برای ویرایش محیط کار خصوصی سایر کاربران
msgid "Negative Value"
msgstr "مقدار منفی"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16264,6 +16350,12 @@ msgstr "خطای مجموعه تو در تو. لطفا با ادمین تماس
msgid "Network Printer Settings"
msgstr "تنظیمات چاپگر شبکه"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "هرگز"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16272,7 +16364,7 @@ msgstr "تنظیمات چاپگر شبکه"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16304,7 +16396,7 @@ msgstr "بلوک سفارشی جدید"
#: frappe/printing/page/print/print.js:308
#: frappe/printing/page/print/print.js:355
msgid "New Custom Print Format"
-msgstr "فرمت چاپ سفارشی جدید"
+msgstr "قالب چاپ سفارشی جدید"
#. Label of the new_document_form (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -16333,7 +16425,7 @@ msgstr "رویداد جدید"
msgid "New Folder"
msgstr "پوشه جدید"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "نمودار کانبان جدید"
@@ -16368,7 +16460,7 @@ msgstr "کارت شماره جدید"
msgid "New Onboarding"
msgstr "آشناسازی جدید"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "گذرواژه جدید"
@@ -16464,7 +16556,7 @@ msgstr "مقدار جدیدی که باید تنظیم شود"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "{0} جدید"
@@ -16616,7 +16708,7 @@ msgstr "بعد روی کلیک کنید"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "خیر"
@@ -16721,7 +16813,7 @@ msgstr "نامی برای {0} مشخص نشده است"
msgid "No New notifications"
msgstr "بدون اعلان جدید"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "هیچ مجوزی مشخص نشده است"
@@ -16765,7 +16857,7 @@ msgstr "نتیجه ای پیدا نشد"
msgid "No Roles Specified"
msgstr "هیچ نقشی مشخص نشده است"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "فیلد انتخابی یافت نشد"
@@ -16773,7 +16865,7 @@ msgstr "فیلد انتخابی یافت نشد"
msgid "No Suggestions"
msgstr "بدون پیشنهاد"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "بدون تگ"
@@ -16849,7 +16941,7 @@ msgstr ""
msgid "No failed logs"
msgstr "هیچ لاگ ناموفقی نیست"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "هیچ فیلدی یافت نشد که بتوان از آن به عنوان ستون Kanban استفاده کرد. از فرم سفارشی برای افزودن یک فیلد سفارشی از نوع \"انتخاب\" استفاده کنید."
@@ -16873,7 +16965,7 @@ msgstr "هیچ رکورد دیگری وجود ندارد"
msgid "No matching records. Search something new"
msgstr "هیچ رکورد منطبقی وجود ندارد. چیز جدیدی را جستجو کنید"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "موارد دیگری برای نمایش وجود ندارد"
@@ -16917,7 +17009,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "بدون مجوز برای \"{0}\" {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "بدون اجازه خواندن {0}"
@@ -16929,7 +17021,7 @@ msgstr "بدون مجوز برای {0} {1} {2}"
msgid "No records deleted"
msgstr "هیچ رکوردی حذف نشد"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "هیچ رکوردی در {0} وجود ندارد"
@@ -16965,11 +17057,11 @@ msgstr "نه {0}"
msgid "No {0} Found"
msgstr "هیچ {0} یافت نشد"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "هیچ {0} یافت نشد"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "هیچ {0} با فیلترهای منطبق پیدا نشد. برای دیدن همه {0} فیلترها را پاک کنید."
@@ -16978,7 +17070,7 @@ msgid "No {0} mail"
msgstr "نامه {0} وجود ندارد"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "شماره"
@@ -17042,7 +17134,7 @@ msgstr "زیرمجموعهاش نیست"
msgid "Not Equals"
msgstr "برابر نیست با"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "پیدا نشد"
@@ -17068,9 +17160,9 @@ msgstr "به هیچ رکوردی مرتبط نیست"
msgid "Not Nullable"
msgstr "غیرقابل تهی"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17089,7 +17181,7 @@ msgstr "منتشر نشده"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17140,7 +17232,7 @@ msgstr "غیر فعال"
msgid "Not allowed for {0}: {1}"
msgstr "برای {0} مجاز نیست: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "مجاز به پیوست کردن سند {0} نیست، لطفاً Allow Print For {0} را در تنظیمات چاپ فعال کنید"
@@ -17172,12 +17264,12 @@ msgstr "در حالت توسعه دهنده نیست"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "در حالت توسعه دهنده نیست! در site_config.json تنظیم کنید یا DocType را «Custom» بسازید."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غیر مجاز"
@@ -17223,7 +17315,7 @@ msgstr "توجه: برای بهترین نتیجه، تصاویر باید از
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "توجه: نشستهای متعدد در مورد دستگاه تلفن همراه مجاز خواهد بود"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "توجه: این با کاربر به اشتراک گذاشته خواهد شد."
@@ -17295,15 +17387,15 @@ msgstr "سند ثبت شده اعلان"
msgid "Notification sent to"
msgstr "اعلان ارسال شد به"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17417,7 +17509,7 @@ msgstr "تعداد پرسمانها"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "تعداد فیلدهای پیوست بیش از {} است، محدودیت به {} به روز شده است."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "تعداد نسخه های پشتیبان باید بیشتر از صفر باشد."
@@ -17689,7 +17781,7 @@ msgstr "تکمیل آشناسازی"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "پس از ارسال، اسناد قابل ارسال قابل تغییر نیستند. آنها فقط میتوانند لغو و اصلاح شوند."
@@ -17778,11 +17870,11 @@ msgstr "فقط گزارش هایی از نوع Report Builder قابل حذف ه
msgid "Only reports of type Report Builder can be edited"
msgstr "فقط گزارشهایی از نوع Report Builder قابل ویرایش هستند"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "فقط DocType های استاندارد مجاز به سفارشی سازی از سفارشیسازی فرم هستند."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17878,7 +17970,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr "باز کردن در یک تب جدید"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "مورد فهرست را باز کنید"
@@ -17927,7 +18019,7 @@ msgstr "باز شد"
msgid "Operation"
msgstr "عملیات"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "اپراتور باید یکی از {0} باشد"
@@ -17973,6 +18065,7 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17981,6 +18074,7 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "گزینهها"
@@ -18010,7 +18104,7 @@ msgstr "گزینههای {0} باید قبل از تنظیم مقدار پی
msgid "Options is required for field {0} of type {1}"
msgstr "گزینهها برای فیلد {0} از نوع {1} لازم است"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "گزینهها برای فیلد پیوند {0} تنظیم نشده است"
@@ -18026,7 +18120,7 @@ msgstr "نارنجی"
msgid "Order"
msgstr "سفارش"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18042,7 +18136,7 @@ msgstr "تاریخچه سازمان"
msgid "Org History Heading"
msgstr "عنوان تاریخچه سازمان"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "جهت"
@@ -18124,7 +18218,7 @@ msgstr "پچ"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18157,10 +18251,6 @@ msgstr "عرض صفحه PDF (به میلیمتر)"
msgid "PDF Settings"
msgstr "تنظیمات PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "تولید PDF ناموفق بود"
@@ -18372,7 +18462,7 @@ msgstr "والد DocType"
msgid "Parent Document Type"
msgstr "نوع سند والد"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "برای ایجاد کارت شماره، نوع سند والد مورد نیاز است"
@@ -18476,8 +18566,8 @@ msgstr "منفعل"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18500,7 +18590,7 @@ msgstr "بازنشانی گذرواژه"
msgid "Password Reset Link Generation Limit"
msgstr "بازنشانی گذرواژه محدودیت تولید پیوند"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "گذرواژه را نمیتوان فیلتر کرد"
@@ -18519,7 +18609,7 @@ msgstr "گذرواژه لازم است یا در انتظار گذرواژه ر
#: frappe/www/update-password.html:94
msgid "Password is valid. 👍"
-msgstr ""
+msgstr "گذرواژه معتبر است. 👍"
#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
@@ -18537,7 +18627,7 @@ msgstr ""
msgid "Password set"
msgstr "تنظیم گذرواژه"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است"
@@ -18549,7 +18639,7 @@ msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بی
msgid "Passwords do not match"
msgstr "گذرواژهها مطابقت ندارند"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "گذرواژهها مطابقت ندارند!"
@@ -18633,7 +18723,7 @@ msgstr "انتظار"
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "در انتظار تایید"
+msgstr "در انتظار تأیید"
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -18650,7 +18740,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "در انتظار تایید"
+msgstr "در انتظار تأیید"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -18700,7 +18790,7 @@ msgstr "برای همیشه {0} ارسال شود؟"
msgid "Permanently delete {0}?"
msgstr "{0} برای همیشه حذف شود؟"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "خطای مجوز"
@@ -18760,16 +18850,16 @@ msgstr "نوع مجوز"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "مجوزها"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "خطای مجوزها"
@@ -18831,15 +18921,18 @@ msgstr "درخواست دانلود داده های شخصی"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18852,11 +18945,11 @@ msgstr "تلفن"
msgid "Phone No."
msgstr "شماره تلفن"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18938,11 +19031,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr "لطفا ابتدا یک فایل پیوست کنید."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "لطفاً یک فایل تصویری برای تنظیم HTML برای پاورقی پیوست کنید."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "لطفاً یک فایل تصویری را برای تنظیم HTML برای Letter Head پیوست کنید."
@@ -18954,13 +19047,13 @@ msgstr "لطفا بسته را پیوست کنید"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودار داشبورد را بررسی کنید: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید"
#: frappe/core/doctype/user/user.py:1074
msgid "Please check your email for verification"
-msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
+msgstr "لطفا ایمیل خود را برای تأیید بررسی کنید"
#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
@@ -18994,7 +19087,7 @@ msgstr "لطفاً اقدام خود را در {0} این سند تأیید کن
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "لطفا ابتدا کارت ایجاد کنید"
@@ -19010,11 +19103,11 @@ msgstr "لطفاً فیلد را از {0} حذف کنید یا نوع doctype م
msgid "Please do not change the template headings."
msgstr "لطفا عناوین قالب را تغییر ندهید."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "لطفاً برای ایجاد تغییرات این را کپی کنید"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتماعی یا LDAP یا ورود با پیوند ایمیل را قبل از غیرفعال کردن ورود مبتنی بر نام کاربری/گذرواژه فعال کنید."
@@ -19023,7 +19116,7 @@ msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتما
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "لطفا پنجره های بازشو را فعال کنید"
@@ -19138,7 +19231,7 @@ msgstr "لطفا ابتدا گزارش را ذخیره کنید"
msgid "Please save to edit the template."
msgstr "لطفا برای ویرایش الگو ذخیره کنید."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "لطفا ابتدا DocType را انتخاب کنید"
@@ -19146,15 +19239,15 @@ msgstr "لطفا ابتدا DocType را انتخاب کنید"
msgid "Please select Entity Type first"
msgstr "لطفا ابتدا Entity Type را انتخاب کنید"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "لطفاً یک کد کشور برای فیلد {1} انتخاب کنید."
@@ -19178,7 +19271,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید"
msgid "Please select applicable Doctypes"
msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "لطفاً حداقل 1 ستون از {0} برای مرتبسازی/گروهبندی انتخاب کنید"
@@ -19208,7 +19301,7 @@ msgstr "لطفا آدرس ایمیل را تنظیم کنید"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی در تنظیمات چاپگر تنظیم کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "لطفا فیلترها را تنظیم کنید"
@@ -19228,7 +19321,7 @@ msgstr "لطفاً ابتدا اسناد زیر را در این داشبورد
msgid "Please set the series to be used."
msgstr "لطفاً سریال مورد استفاده را تنظیم کنید."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک روش احراز هویت، از طریق تنظیمات پیامک تنظیم کنید"
@@ -19343,7 +19436,7 @@ msgstr "آیتم منوی پورتال"
msgid "Portal Settings"
msgstr "تنظیمات پورتال"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "عمودی"
@@ -19371,6 +19464,7 @@ msgstr "پستی"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "کد پستی"
@@ -19379,7 +19473,7 @@ msgstr "کد پستی"
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19394,6 +19488,10 @@ msgstr ""
msgid "Precision"
msgstr "دقت، درستی"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "دقت باید بین 1 تا 6 باشد"
@@ -19442,7 +19540,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "کاربر گزارش آماده شده"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "ارائه گزارش آماده انجام نشد"
@@ -19577,13 +19675,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "چاپ"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "چاپ"
@@ -19606,7 +19704,7 @@ msgstr "چاپ اسناد"
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
-msgstr "فرمت چاپ"
+msgstr "قالب چاپ"
#. Label of a Link in the Tools Workspace
#. Label of the print_format_builder (Check) field in DocType 'Print Format'
@@ -19631,7 +19729,7 @@ msgstr "فرمت ساز چاپ بتا"
#: frappe/utils/pdf.py:63
msgid "Print Format Error"
-msgstr "خطای فرمت چاپ"
+msgstr "خطای قالب چاپ"
#. Name of a DocType
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
@@ -19651,9 +19749,9 @@ msgstr "راهنما قالب چاپ"
#. Label of the print_format_type (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr "نوع فرمت چاپ"
+msgstr "نوع قالب چاپ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19692,7 +19790,7 @@ msgstr "اگر مقدار نداشت در پرینت نمایش داده نشو
msgid "Print Language"
msgstr "زبان چاپ"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "چاپ برای چاپگر ارسال شد!"
@@ -19710,7 +19808,7 @@ msgstr "سرور چاپ"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "تنظیمات چاپ"
@@ -19834,11 +19932,11 @@ msgstr "نکته پیشنهادی: برای ارسال مرجع سند،
msgid "Proceed"
msgstr "ادامه دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "در هر صورت انجام شود"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "در حال پردازش"
@@ -19855,11 +19953,21 @@ msgstr "پروفسور"
msgid "Profile"
msgstr "نمایه"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "تصویر نمایه"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "نمایه با موفقیت بهروزرسانی شد."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "پیشرفت"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "پروژه"
@@ -19903,7 +20011,7 @@ msgstr "نوع ویژگی"
msgid "Protect Attached Files"
msgstr "محافظت از فایل های پیوست شده"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "فایل محافظت شده"
@@ -20076,7 +20184,7 @@ msgstr "کد QR"
msgid "QR Code for Login Verification"
msgstr "کد QR برای تأیید ورود"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "سینی QZ ناموفق بود:"
@@ -20283,7 +20391,7 @@ msgstr "رتبه بندی"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "دستورات خام"
@@ -20409,11 +20517,11 @@ msgstr ""
msgid "Reason"
msgstr "دلیل"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "بازسازی"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "بازسازی درخت"
@@ -20557,7 +20665,7 @@ msgstr ""
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
-msgstr "پس از تایید موفقیت آمیز به این URL تغییر مسیر دهید."
+msgstr "پس از تأیید موفقیت آمیز به این URL تغییر مسیر دهید."
#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -20794,8 +20902,8 @@ msgstr "ارجاع دهنده"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20826,13 +20934,13 @@ msgstr ""
msgid "Refresh Token"
msgstr "Refresh Token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "تازه کردن"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "تازه کردن..."
@@ -21145,8 +21253,8 @@ msgstr "پاسخ به همه"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21217,11 +21325,11 @@ msgstr "مدیر گزارش"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "نام گزارش"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "نام گزارش، فیلد گزارش و عملکرد برای ایجاد کارت شماره مورد نیاز است"
@@ -21255,21 +21363,21 @@ msgstr "نمای گزارش"
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "گزارش را نمیتوان برای انواع تک تنظیم کرد"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "گزارش داده ای ندارد، لطفاً فیلترها را تغییر دهید یا نام گزارش را تغییر دهید"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گزارش را تغییر دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید"
@@ -21289,7 +21397,7 @@ msgstr "گزارش با موفقیت به روز شد"
msgid "Report was not saved (there were errors)"
msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد."
@@ -21325,7 +21433,7 @@ msgstr "گزارش ها"
msgid "Reports & Masters"
msgstr "گزارش ها و مستندات"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "گزارشها از قبل در صف هستند"
@@ -21344,7 +21452,10 @@ msgid "Request Body"
msgstr "درخواست بدن"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "درخواست داده"
@@ -21396,6 +21507,11 @@ msgstr "درخواست مهلت زمانی"
msgid "Request URL"
msgstr "درخواست URL"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "درخواست حذف حساب کاربری"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21451,7 +21567,7 @@ msgstr "بازنشانی سفارشی سازی داشبورد"
msgid "Reset Fields"
msgstr "بازنشانی فیلدها"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "بازنشانی گذرواژه LDAP"
@@ -21459,11 +21575,11 @@ msgstr "بازنشانی گذرواژه LDAP"
msgid "Reset Layout"
msgstr "بازنشانی چیدمان"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "بازنشانی OTP Secret"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21498,7 +21614,7 @@ msgstr ""
msgid "Reset sorting"
msgstr "بازنشانی مرتبسازی"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "بازنشانی به حالت پیشفرض"
@@ -21638,7 +21754,7 @@ msgstr "به صفحه تأیید بازگردید و کد نمایش داده ش
msgid "Reverse Icon Color"
msgstr "رنگ نماد معکوس"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "در حال برگرداندن طول به {0} برای «{1}» در «{2}». تنظیم طول به عنوان {3} باعث کوتاه شدن داده ها میشود."
@@ -21750,7 +21866,7 @@ msgstr "مجوز نقش برای صفحه و گزارش"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "مجوزهای نقش"
@@ -21760,7 +21876,7 @@ msgstr "مجوزهای نقش"
msgid "Role Permissions Manager"
msgstr "مدیر مجوزهای نقش"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "مدیر مجوزهای نقش"
@@ -21905,7 +22021,7 @@ msgstr "تغییر مسیرها"
msgid "Route: Example \"/app\""
msgstr "مسیر: مثال \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "ردیف"
@@ -21913,12 +22029,12 @@ msgstr "ردیف"
msgid "Row #"
msgstr "ردیف #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "ردیف # {0}: کاربر غیر ادمین نمیتواند نقش {1} را روی Doctype سفارشی تنظیم کند"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "ردیف #{0}:"
@@ -21953,11 +22069,11 @@ msgstr "مقادیر ردیف تغییر کرد"
msgid "Row {0}"
msgstr "ردیف {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "ردیف {0}: غیرفعال کردن الزامی برای فیلدهای استاندارد مجاز نیست"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "ردیف {0}: مجاز به فعال کردن Allow on Submit برای فیلدهای استاندارد نیست"
@@ -21976,7 +22092,10 @@ msgid "Rows Removed"
msgstr "ردیف ها حذف شدند"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22184,8 +22303,8 @@ msgstr "شنبه"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22208,11 +22327,11 @@ msgstr "ذخیره به عنوان"
msgid "Save Customizations"
msgstr "سفارشی سازی ها را ذخیره کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "ذخیره گزارش"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "ذخیره فیلترها"
@@ -22584,7 +22703,7 @@ msgstr "تنظیمات امنیتی"
msgid "See all Activity"
msgstr "مشاهده تمام فعالیت ها"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "مشاهده تمام گزارش های گذشته"
@@ -22648,7 +22767,7 @@ msgstr "انتخاب کردن"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "انتخاب همه"
@@ -22669,7 +22788,7 @@ msgid "Select Column"
msgstr "ستون را انتخاب کنید"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "ستون ها را انتخاب کنید"
@@ -22728,7 +22847,7 @@ msgstr "فیلد را انتخاب کنید"
msgid "Select Field..."
msgstr "انتخاب فیلد..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "فیلدها را انتخاب کنید"
@@ -22848,14 +22967,14 @@ msgid "Select a field to edit its properties."
msgstr "یک فیلد را برای ویرایش ویژگیهای آن انتخاب کنید."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "ابتدا یک گره گروهی را انتخاب کنید."
+msgid "Select a group {0} first."
+msgstr "ابتدا یک گروه {0} انتخاب کنید."
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "یک فیلد فرستنده معتبر برای ایجاد اسناد از ایمیل انتخاب کنید"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "یک فیلد موضوع معتبر برای ایجاد اسناد از ایمیل انتخاب کنید"
@@ -22885,13 +23004,13 @@ msgstr "حداقل 1 رکورد برای چاپ انتخاب کنید"
msgid "Select atleast 2 actions"
msgstr "حداقل 2 عمل را انتخاب کنید"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "مورد فهرست را انتخاب کنید"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "چندین مورد از فهرست را انتخاب کنید"
@@ -22927,7 +23046,7 @@ msgstr "انتخاب {0}"
#: frappe/model/workflow.py:120
msgid "Self approval is not allowed"
-msgstr "تایید خود مجاز نیست"
+msgstr "تأیید خود مجاز نیست"
#: frappe/www/contact.html:41
msgid "Send"
@@ -23109,7 +23228,7 @@ msgstr "ایمیل فرستنده"
msgid "Sender Email Field"
msgstr "فیلد ایمیل فرستنده"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "فیلد فرستنده باید گزینههای ایمیل را داشته باشد"
@@ -23213,7 +23332,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است"
msgid "Server Action"
msgstr "اقدام سرور"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطای سرور"
@@ -23279,7 +23398,7 @@ msgstr "پیشفرضهای نشست"
msgid "Session Defaults Saved"
msgstr "پیشفرضهای نشست ذخیره شد"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "نشست منقضی شده"
@@ -23288,14 +23407,14 @@ msgstr "نشست منقضی شده"
msgid "Session Expiry (idle timeout)"
msgstr "انقضای نشست (تایم بیکار)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "انقضای نشست باید در قالب {0} باشد"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "تنظیم"
@@ -23321,12 +23440,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "گزینههای پیشفرض را برای همه نمودارها در این داشبورد تنظیم کنید (مثلاً: \"colors\": [\"#d1d8dd\"، \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "فیلترهای پویا را تنظیم کنید"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23337,7 +23456,7 @@ msgstr "فیلترها را تنظیم کنید"
msgid "Set Filters for {0}"
msgstr "تنظیم فیلترها برای {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23391,7 +23510,7 @@ msgstr "تنظیم مقدار"
msgid "Set Role For"
msgstr "تنظیم نقش برای"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "تنظیم مجوزهای کاربر"
@@ -23410,7 +23529,7 @@ msgstr "تنظیم همه به عنوان خصوصی"
msgid "Set all public"
msgstr "تنظیم همه به عنوان عمومی"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "تنظیم به عنوان پیشفرض"
@@ -23429,18 +23548,21 @@ msgstr "توسط کاربر تنظیم شده است"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "دقت غیر استاندارد را برای فیلد شناور یا ارز تنظیم کنید"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23550,7 +23672,7 @@ msgstr "راهاندازی > کاربر"
msgid "Setup > User Permissions"
msgstr "راهاندازی > مجوزهای کاربر"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "تنظیم ایمیل خودکار"
@@ -23691,6 +23813,12 @@ msgstr "نمایش سند"
msgid "Show Error"
msgstr "نمایش خطا"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "نمایش هشدار لینک خارجی"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "نمایش نام فیلد (برای کپی در کلیپ بورد کلیک کنید)"
@@ -23819,7 +23947,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "نمایش برچسب ها"
@@ -23987,7 +24115,7 @@ msgstr "نوار کناری و دیدگاهها"
#. DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
-msgstr "ثبت نام و تایید"
+msgstr "ثبت نام و تأیید"
#: frappe/core/doctype/user/user.py:1029
msgid "Sign Up is disabled"
@@ -24026,36 +24154,36 @@ msgstr "ثبت نام غیرفعال شد"
msgid "Signups have been disabled for this website."
msgstr "ثبت نام برای این وب سایت غیرفعال شده است."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "عبارت ساده پایتون، مثال: Status in (\"بسته\"، \"لغو\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "عبارت ساده پایتون، مثال: وضعیت در (\"نامعتبر\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "عبارت ساده پایتون، مثال: status == \"Invalid\""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "عبارت ساده پایتون، مثال: status == 'Open' و نوع == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "عبارت ساده پایتون، مثال: status == 'Open' and issue_type == 'Bug'"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "عبارت ساده پایتون، مثال: status in (\"Closed\", \"Cancelled\")"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "نشستهای همزمان"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Single DocType ها را نمیتوان سفارشی کرد."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Single Type ها فقط یک رکورد دارند و هیچ جدولی مرتبط نیست. مقادیر در tabSingles ذخیره میشوند"
@@ -24063,7 +24191,7 @@ msgstr "Single Type ها فقط یک رکورد دارند و هیچ جدولی
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr "سایت در حالت فقط خواندنی برای نگهداری یا بهروزرسانی سایت در حال اجرا است، این عمل در حال حاضر قابل انجام نیست. لطفاً بعداً دوباره امتحان کنید."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "اندازه"
@@ -24250,12 +24378,12 @@ msgstr ""
#. Label of the software_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Software ID"
-msgstr ""
+msgstr "شناسه نرمافزار"
#. Label of the software_version (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Software Version"
-msgstr ""
+msgstr "نسخه نرمافزار"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
@@ -24323,7 +24451,7 @@ msgstr "فیلد مرتب سازی {0} باید یک نام فیلد معتبر
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24390,8 +24518,8 @@ msgstr ""
msgid "Splash Image"
msgstr "تصویر اسپلش"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "پدر"
@@ -24423,7 +24551,7 @@ msgstr "ردیابی پشته"
msgid "Standard"
msgstr "استاندارد"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "DocType استاندارد را نمیتوان حذف کرد."
@@ -24439,7 +24567,7 @@ msgstr "استاندارد تنظیم نشده است"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "قالب استاندارد چاپ را نمیتوان به روز کرد"
@@ -24557,6 +24685,7 @@ msgstr "شروع میشود"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24688,11 +24817,11 @@ msgstr "مراحل"
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr "مراحل تایید ورود شما"
+msgstr "مراحل تأیید ورود شما"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "چسبنده"
@@ -24722,7 +24851,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr "سند PDF پیوست شده را ذخیره کنید"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24820,7 +24949,7 @@ msgstr "موضوع"
msgid "Subject Field"
msgstr "زمینه موضوعی"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "نوع فیلد موضوع باید داده، متن، متن طولانی، متن کوچک، ویرایشگر متن باشد"
@@ -24834,6 +24963,7 @@ msgstr "صف ارسال"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24842,10 +24972,11 @@ msgstr "صف ارسال"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "ارسال"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "ارسال"
@@ -24855,7 +24986,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "ارسال"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "ارسال"
@@ -24901,9 +25032,9 @@ msgstr "برای تکمیل این مرحله این سند را ارسال کن
#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr "برای تایید این سند را ارسال کنید"
+msgstr "برای تأیید این سند را ارسال کنید"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} سند ارسال شود؟"
@@ -24953,7 +25084,7 @@ msgstr "عنوان فرعی"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25168,7 +25299,7 @@ msgstr "در حال همگام سازی"
msgid "Syncing {0} of {1}"
msgstr "در حال همگام سازی {0} از {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "اشتباه نوشتاری"
@@ -25479,7 +25610,7 @@ msgstr "جدول MultiSelect"
msgid "Table Trimmed"
msgstr "جدول بریده شده"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "جدول به روز شد"
@@ -25571,7 +25702,7 @@ msgstr "تله متری"
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr "قالب"
+msgstr "الگو"
#: frappe/core/doctype/data_import/importer.py:483
#: frappe/core/doctype/data_import/importer.py:610
@@ -25694,7 +25825,7 @@ msgstr "با تشکر"
msgid "The Auto Repeat for this document has been disabled."
msgstr "تکرار خودکار برای این سند غیرفعال شده است."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "قالب CSV به حروف بزرگ و کوچک حساس است"
@@ -25709,7 +25840,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr "شرط \"{0}\" نامعتبر است"
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr "URL فایلی که وارد کرده اید نادرست است"
@@ -25762,7 +25893,7 @@ msgstr "نظر نمیتواند خالی باشد"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "تعداد نشان داده شده یک تعداد تخمینی است. برای مشاهده شمارش دقیق اینجا کلیک کنید."
@@ -25792,7 +25923,7 @@ msgstr "نوع سند انتخاب شده یک جدول فرزند است، بن
msgid "The field {0} is mandatory"
msgstr "فیلد {0} اجباری است"
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr "نام فیلدی که در Attached To Field مشخص کرده اید نامعتبر است"
@@ -25863,7 +25994,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25874,7 +26005,7 @@ msgstr "پیوند بازنشانی گذرواژه منقضی شده است"
msgid "The reset password link has either been used before or is invalid"
msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "منبع مورد نظر شما در دسترس نیست"
@@ -25886,7 +26017,7 @@ msgstr "نقش {0} باید یک نقش سفارشی باشد."
msgid "The selected document {0} is not a {1}."
msgstr "سند انتخاب شده {0} یک {1} نیست."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "سیستم در حال بهروزرسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید."
@@ -25947,12 +26078,12 @@ msgstr "هیچ رویداد پیش رویی برای شما وجود ندارد.
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "هیچ {0} برای این {1} وجود ندارد، چرا یکی را شروع نمیکنید!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "در یک فرم وب فقط 9 فیلد شکستگی صفحه وجود دارد"
@@ -25976,11 +26107,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr "در حال حاضر چیز جدیدی برای نشان دادن شما وجود ندارد."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "آدرس فایل مشکلی دارد: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:"
@@ -25992,7 +26123,7 @@ msgstr "حداقل یک قانون مجوز باید وجود داشته باش
msgid "There was an error building this page"
msgstr "در ساخت این صفحه خطایی روی داد"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "هنگام ذخیره فیلترها خطایی روی داد"
@@ -26049,7 +26180,7 @@ msgstr "احراز هویت شخص ثالث"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "این ارز غیرفعال است. فعال کردن برای استفاده در معاملات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "این نمودار کانبان خصوصی خواهد بود"
@@ -26057,6 +26188,10 @@ msgstr "این نمودار کانبان خصوصی خواهد بود"
msgid "This Month"
msgstr "این ماه"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "این سهماهه"
@@ -26082,6 +26217,11 @@ msgstr "این عمل فقط برای {} مجاز است"
msgid "This cannot be undone"
msgstr "این قابل بازگشت نیست"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26100,7 +26240,7 @@ msgstr "این doctype هیچ زمینه یتیمی برای اصلاح ندار
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "این سند در حال حاضر قابل حذف نیست زیرا توسط کاربر دیگری در حال تغییر است. لطفا بعد از مدتی دوباره امتحان کنید."
@@ -26142,7 +26282,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "این فایل به یک سند محافظت شده پیوست شده است و قابل حذف نیست."
@@ -26177,7 +26317,7 @@ msgstr "این ارائه دهنده موقعیت جغرافیایی هنوز پ
msgid "This goes above the slideshow."
msgstr "این بالاتر از نمایش اسلاید است."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید."
@@ -26227,7 +26367,7 @@ msgstr "این ممکن است در چندین صفحه چاپ شود"
msgid "This month"
msgstr "این ماه"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26235,13 +26375,13 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "این گزارش در {0} ایجاد شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "این گزارش در {0} ایجاد شد."
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr "این درخواست هنوز توسط کاربر تایید نشده است."
+msgstr "این درخواست هنوز توسط کاربر تأیید نشده است."
#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
@@ -26377,9 +26517,11 @@ msgstr "پنجره زمانی (ثانیه)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26640,7 +26782,7 @@ msgstr "برای صادر کردن این مرحله به عنوان JSON، آن
msgid "To generate password click {0}"
msgstr "برای ایجاد رمز عبور، روی {0} کلیک کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "برای دریافت گزارش به روز شده، روی {0} کلیک کنید."
@@ -26715,7 +26857,7 @@ msgstr "تغییر نمای شبکهای"
msgid "Toggle Sidebar"
msgstr "تغییر وضعیت نوار کناری"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "تغییر وضعیت نوار کناری"
@@ -26841,7 +26983,7 @@ msgstr "موضوع"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "جمع"
@@ -26964,7 +27106,7 @@ msgstr "ردیابی نقاط عطف برای هر سند"
msgid "Tracking"
msgstr "رهگیری"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL ردیابی تولید و در کلیپ بورد کپی شد"
@@ -27000,9 +27142,9 @@ msgstr "انتقال ها"
msgid "Translatable"
msgstr "قابل ترجمه"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
-msgstr ""
+msgstr "ترجمه دادهها"
#. Label of the translated_doctype (Check) field in DocType 'DocType'
#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
@@ -27162,7 +27304,7 @@ msgstr "روش احراز هویت دو عاملی"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27255,7 +27397,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL برای مستندات یا کمک"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL باید با http:// یا https:// شروع شود"
@@ -27358,7 +27500,7 @@ msgstr "به دلیل وجود حساب ایمیل از دست رفته امکا
msgid "Unable to update event"
msgstr "رویداد بهروزرسانی نشد"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد"
@@ -27367,7 +27509,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد
msgid "Unassign Condition"
msgstr "شرط لغو اختصاص"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27383,7 +27525,7 @@ msgstr "واگرد"
msgid "Undo last action"
msgstr "واگرد آخرین اقدام"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27430,7 +27572,7 @@ msgstr "ستون ناشناخته: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "روش گرد کردن نامشخص: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "کاربر ناشناس"
@@ -27496,8 +27638,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr "لغو اشتراک شده"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27531,7 +27673,7 @@ msgstr "رویدادهای آینده برای امروز"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "بهروزرسانی"
@@ -27565,6 +27707,11 @@ msgstr "سفارش بهروزرسانی"
msgid "Update Password"
msgstr "بهروزرسانی گذرواژه"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "بهروزرسانی نمایه"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27623,7 +27770,7 @@ msgstr "بهروزرسانی به نسخه جدید 🎉"
msgid "Updated successfully"
msgstr "با موفقیت به روز شد"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "در حال بروز رسانی"
@@ -27662,7 +27809,7 @@ msgstr "در حال بهروزرسانی {0} از {1}، {2}"
#: frappe/public/js/billing.bundle.js:131
msgid "Upgrade plan"
-msgstr ""
+msgstr "طرح ارتقا"
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
@@ -27780,11 +27927,7 @@ msgstr "از شناسه ایمیل متفاوت استفاده کنید"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "استفاده کنید اگر تنظیمات پیشفرض به درستی دادههای شما را شناسایی نمیکنند"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "استفاده از تابع {0} در فیلد محدود شده است"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "استفاده از زیرپرسمان یا تابع محدود شده است"
@@ -28006,12 +28149,12 @@ msgstr "مجوز کاربر"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "مجوزهای کاربر"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "مجوزهای کاربر"
@@ -28155,7 +28298,7 @@ msgstr "کاربر {0} جعل هویت به عنوان {1}"
msgid "User {0} is disabled"
msgstr "کاربر {0} غیرفعال است"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "کاربر {0} غیرفعال است. لطفا با مدیر سیستم خود تماس بگیرید."
@@ -28258,7 +28401,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Validate SSL Certificate"
-msgstr "تایید گواهی SSL"
+msgstr "تأیید گواهی SSL"
#: frappe/public/js/frappe/web_form/web_form.js:384
msgid "Validation Error"
@@ -28283,8 +28426,8 @@ msgstr "اعتبار"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28316,7 +28459,7 @@ msgstr "ارزش تغییر کرد"
msgid "Value To Be Set"
msgstr "ارزش تنظیم شود"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "مقدار برای {0} قابل تغییر نیست"
@@ -28332,11 +28475,11 @@ msgstr "مقدار نمیتواند برای {0} منفی باشد: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "مقدار یک فیلد چک میتواند 0 یا 1 باشد"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "مقدار فیلد {0} در {1} خیلی طولانی است. طول باید کمتر از {2} کاراکتر باشد"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "مقدار {0} نمیتواند یک لیست باشد"
@@ -28361,7 +28504,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "ارزش برای اعتبارسنجی"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "ارزش خیلی بزرگ است"
@@ -28405,12 +28548,12 @@ msgstr "ایمیل کد تأیید ارسال نشد. لطفا با مدیر ت
#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr "کد تایید به آدرس ایمیل ثبت شده شما ارسال شده است."
+msgstr "کد تأیید به آدرس ایمیل ثبت شده شما ارسال شده است."
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "تایید شده است"
+msgstr "تأیید شده است"
#: frappe/public/js/frappe/ui/messages.js:359
#: frappe/templates/includes/login/login.js:337
@@ -28453,7 +28596,7 @@ msgstr "مشاهده همه"
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "مشاهده مجوزهای Doctype"
@@ -28465,7 +28608,7 @@ msgstr "نمایش فایل"
msgid "View Full Log"
msgstr "مشاهده لاگ کامل"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "مشاهده لیست"
@@ -28475,7 +28618,7 @@ msgstr "مشاهده لیست"
msgid "View Log"
msgstr "مشاهده لاگ"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "مشاهده اسناد مجاز"
@@ -28591,6 +28734,7 @@ msgid "Warehouse"
msgstr "انبار"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "هشدار"
@@ -28685,7 +28829,7 @@ msgstr "صفحه وب"
msgid "Web Page Block"
msgstr "مسدود کردن صفحه وب"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL صفحه وب"
@@ -29075,7 +29219,7 @@ msgstr "فقط در صورتی نشان داده میشود که سرفصل
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "برای سایتهای غیرفعال، کارهای زمانبندیشده فقط یکبار در روز اجرا خواهند شد. برای جلوگیری از غیرفعال شدن خودکار زمانبندی، مقدار آن را روی 0 تنظیم کنید."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "با سربرگ"
@@ -29236,7 +29380,7 @@ msgstr "گردش کار با موفقیت به روز شد"
msgid "Workspace"
msgstr "فضای کار"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "محیط کار {0} وجود ندارد"
@@ -29329,7 +29473,7 @@ msgstr "بسته شدن"
msgid "Write"
msgstr "نوشتن"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "واکشی اشتباه از مقدار"
@@ -29358,7 +29502,7 @@ msgstr "فیلدهای محور Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "فیلد Y"
@@ -29420,7 +29564,7 @@ msgstr "زرد"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "بله"
@@ -29456,6 +29600,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "شما در حال باز کردن یک لینک خارجی هستید. برای تأیید، دوباره روی لینک کلیک کنید."
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "شما به اینترنت متصل هستید."
@@ -29494,12 +29642,12 @@ msgstr "شما مجاز به ویرایش گزارش نیستید."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "شما مجاز به برونبُرد {} doctype نیستید"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "شما مجاز به چاپ این گزارش نیستید"
@@ -29507,7 +29655,7 @@ msgstr "شما مجاز به چاپ این گزارش نیستید"
msgid "You are not allowed to send emails related to this document"
msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "شما مجاز به بهروزرسانی این سند فرم وب نیستید"
@@ -29525,7 +29673,7 @@ msgstr "شما اجازه دسترسی به این صفحه را ندارید."
#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
-msgstr ""
+msgstr "شما اجازه دسترسی به این منبع را ندارید. برای دسترسی وارد شوید"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
@@ -29580,11 +29728,11 @@ msgstr "میتوانید خط مشی حفظ را از {0} تغییر دهید
msgid "You can continue with the onboarding after exploring this page"
msgstr "پس از کاوش در این صفحه میتوانید به آشناسازی ادامه دهید"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "میتوانید به جای حذف این {0} آن را غیرفعال کنید."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "میتوانید از تنظیمات سیستم محدودیت را افزایش دهید."
@@ -29634,11 +29782,11 @@ msgstr "برای تنظیم سطوح فیلدها میتوانید از سف
msgid "You can use wildcard %"
msgstr "میتوانید از نویسه جانشین % استفاده کنید"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "نمیتوانید «گزینهها» را برای فیلد {0} تنظیم کنید"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "نمیتوانید «قابل ترجمه» را برای فیلد {0} تنظیم کنید"
@@ -29656,7 +29804,7 @@ msgstr "شما این سند را لغو کردید {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "شما نمیتوانید یک نمودار داشبورد از تک DocType ایجاد کنید"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "نمیتوانید «فقط خواندن» را برای فیلد {0} لغو تنظیم کنید"
@@ -29699,15 +29847,15 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "شما مجوز کافی برای تکمیل عمل را ندارید"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
@@ -29719,11 +29867,11 @@ msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید."
msgid "You don't have access to Report: {0}"
msgstr "شما به گزارش دسترسی ندارید: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "شما اجازه دسترسی به {0} DocType را ندارید."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "شما اجازه دسترسی به این فایل را ندارید"
@@ -29743,7 +29891,7 @@ msgstr "شما یک پیام جدید دارید از:"
msgid "You have been successfully logged out"
msgstr "شما با موفقیت از سیستم خارج شدید"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "شما به محدودیت اندازه ردیف در جدول پایگاه داده رسیده اید: {0}"
@@ -29771,7 +29919,7 @@ msgstr "شما {0} را ندیده اید"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "شما هنوز نمودار داشبورد یا کارت شماره اضافه نکردهاید."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "شما هنوز یک {0} ایجاد نکردهاید"
@@ -29788,11 +29936,11 @@ msgstr "شما آخرین بار این را ویرایش کردید"
msgid "You must add atleast one link."
msgstr "شما باید حداقل یک لینک اضافه کنید."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "برای استفاده از این فرم باید وارد سیستم شوید."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "برای ارسال این فرم باید وارد شوید"
@@ -29816,7 +29964,7 @@ msgstr "برای دسترسی به این صفحه باید کاربر سیست
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "برای ویرایش یک فرم وب استاندارد، باید در حالت توسعه دهنده باشید"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "برای اینکه بتوانید به نسخههای پشتیبان دسترسی داشته باشید، باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید."
@@ -29907,6 +30055,10 @@ msgstr "شما این سند را لغو دنبال کردید"
msgid "You viewed this"
msgstr "شما این را مشاهده کردید"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "شما هدایت خواهید شد به:"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29952,7 +30104,7 @@ msgstr "میانبرهای شما"
msgid "Your account has been deleted"
msgstr "حساب شما حذف شده است"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "حساب شما قفل شده است و پس از {0} ثانیه از سر گرفته میشود"
@@ -30014,11 +30166,11 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل.
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید."
@@ -30326,7 +30478,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "همین الان"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "برچسب"
@@ -30355,7 +30507,7 @@ msgstr "فهرست"
msgid "logged in"
msgstr "وارد شده"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "login_required"
@@ -30693,7 +30845,7 @@ msgstr "از طریق درونبُرد داده"
msgid "via Google Meet"
msgstr "از طریق Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "از طریق اطلاع رسانی"
@@ -30803,7 +30955,7 @@ msgstr "{0} نمودار"
msgid "{0} Dashboard"
msgstr "داشبورد {0}"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30844,7 +30996,7 @@ msgstr "{0} نقشه"
msgid "{0} Name"
msgstr "{0} نام"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3} نیست"
@@ -30854,7 +31006,7 @@ msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3}
msgid "{0} Report"
msgstr "گزارش {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} گزارش ها"
@@ -30910,7 +31062,7 @@ msgstr "{0} و {1}"
msgid "{0} are currently {1}"
msgstr "{0} در حال حاضر {1} هستند"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} مورد نیاز است"
@@ -30927,7 +31079,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} پیوست {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} نمیتواند بیشتر از {1} باشد"
@@ -31004,7 +31156,7 @@ msgstr "{0} در ردیف {1} وجود ندارد"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "فیلد {0} را نمیتوان در {1} منحصربهفرد تنظیم کرد، زیرا مقادیر موجود غیر منحصر به فردی وجود دارد"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31049,7 +31201,7 @@ msgstr "{0} در ردیف {1} نمیتواند هم URL و هم موارد ف
msgid "{0} is a mandatory field"
msgstr "{0} یک فیلد اجباری است"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} یک فایل فشرده معتبر نیست"
@@ -31098,7 +31250,7 @@ msgstr "{0} مانند {1} است"
msgid "{0} is mandatory"
msgstr "{0} اجباری است"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31118,12 +31270,12 @@ msgstr "{0} یک تقویم معتبر نیست. تغییر مسیر به تقو
msgid "{0} is not a valid Cron expression."
msgstr "{0} یک عبارت Cron معتبر نیست."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} یک DocType معتبر برای پیوند پویا نیست"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} یک آدرس ایمیل معتبر نیست"
@@ -31131,11 +31283,11 @@ msgstr "{0} یک آدرس ایمیل معتبر نیست"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} یک کد ISO 3166 ALPHA-2 معتبر نیست."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} یک نام معتبر نیست"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} یک شماره تلفن معتبر نیست"
@@ -31155,7 +31307,7 @@ msgstr "{0} یک فیلد والد معتبر برای {1} نیست"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش باید یکی از موارد زیر باشد {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} یک فایل فشرده نیست"
@@ -31179,7 +31331,7 @@ msgstr "{0} یکی از {1} نیست"
msgid "{0} is not set"
msgstr "{0} تنظیم نشده است"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} اکنون قالب چاپ پیشفرض برای {1} doctype است"
@@ -31189,8 +31341,8 @@ msgstr "{0} یکی از {1} است"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} مورد نیاز است"
@@ -31203,7 +31355,7 @@ msgstr "{0} تنظیم شده است"
msgid "{0} is within {1}"
msgstr "{0} در محدوده {1} است"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} مورد انتخاب شد"
@@ -31260,11 +31412,11 @@ msgstr "{0} نباید هیچ یک از {1} باشد"
msgid "{0} must be one of {1}"
msgstr "{0} باید یکی از {1} باشد"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "ابتدا باید {0} تنظیم شود"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} باید منحصر به فرد باشد"
@@ -31289,11 +31441,11 @@ msgid "{0} not found"
msgstr "{0} یافت نشد"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} از {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} از {1} ({2} ردیف با فرزندان)"
@@ -31343,7 +31495,7 @@ msgstr "{0} تخصیص خود را حذف کرد."
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد"
@@ -31417,7 +31569,7 @@ msgstr "{0} تا {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} لغو اشتراکگذاری این سند با {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} به روز شد"
@@ -31453,11 +31605,11 @@ msgstr "{0} {1} اضافه شد"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} به داشبورد اضافه شد {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} از قبل وجود دارد"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} نمیتواند \"{2}\" باشد. باید یکی از \"{3}\" باشد"
@@ -31477,11 +31629,11 @@ msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده
msgid "{0} {1} not found"
msgstr "{0} {1} یافت نشد"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: رکورد ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو {3} کنید."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}، ردیف {1}"
@@ -31489,35 +31641,35 @@ msgstr "{0}، ردیف {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: «{1}» ({3}) کوتاه میشود، زیرا حداکثر کاراکتر مجاز {2} است."
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: نمیتوان Amend را بدون لغو تنظیم کرد"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: اگر قابل ارسال نباشد، نمیتوان Assign Amend را تنظیم کرد"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: در صورتی که قابل ارسال نباشد، نمیتوان تخصیص ارسال را تنظیم کرد"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: لغو بدون ارسال قابل تنظیم نیست"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: نمیتوان Import را بدون ایجاد تنظیم کرد"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: ارسال، لغو، اصلاح بدون نوشتن امکانپذیر نیست"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: نمیتوان درونبُرد را به عنوان {1} تنظیم کرد، قابل درونبُرد نیست"
@@ -31545,11 +31697,11 @@ msgstr "{0}: نام فیلد {1} چندین بار در ردیفهای {2} ظ
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: نوع فیلد {1} برای {2} نمیتواند منحصر به فرد باشد"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: هیچ مجوز اولیه تنظیم نشده است"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: فقط یک قانون با همان نقش، سطح و {1} مجاز است"
@@ -31569,7 +31721,7 @@ msgstr "{0}: گزینههای {1} باید با نام doctype {2} برای
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: سایر قوانین مجوز نیز ممکن است اعمال شوند"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: مجوز در سطح 0 باید قبل از تنظیم سطوح بالاتر تنظیم شود"
@@ -31590,7 +31742,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} روی حالت {2} تنظیم شده است"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} در مقابل {2}"
@@ -31626,11 +31778,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{
msgid "{} Complete"
msgstr "{} کامل"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} کد پایتون نامعتبر در خط {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}"
@@ -31656,7 +31808,7 @@ msgstr "{} غیر فعال شده است. فقط در صورتی میتوان
msgid "{} is not a valid date string."
msgstr "{} یک رشته تاریخ معتبر نیست."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} در PATH یافت نشد! این برای دسترسی به کنسول مورد نیاز است."
diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po
index 21a7e75369..9f1ae2cdb4 100644
--- a/frappe/locale/fr.po
+++ b/frappe/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:58\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'Dans la vue liste' n'est pas autorisé pour le champ {0} de type {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {1}"
@@ -86,11 +86,11 @@ msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {
msgid "'Recipients' not specified"
msgstr "«Destinataires» non spécifiés"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' n'est pas une URL valide"
@@ -122,7 +122,7 @@ msgstr "0 - Brouillon; 1 - Validé; 2 - Annulé"
msgid "0 is highest"
msgstr "0 est le plus élevé"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Vrai & 0 = Faux"
@@ -141,11 +141,11 @@ msgstr "1 jour"
msgid "1 Google Calendar Event synced."
msgstr "1 événement Google Agenda synchronisé."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "Il y a 1 jour"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 heure"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "Il y a 1 heure"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "Il y a 1 minute"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "Il y a 1 mois"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "Il y a 1 seconde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "Il ya 1 semaine"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "Il y a 1 an"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "Il y a 2 heures"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "Il y a 2 mois"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "Il y a 2 semaines"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "Il y a 2 ans"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "Il y a 3 minutes"
@@ -232,7 +232,7 @@ msgstr "4 heures"
msgid "5 Records"
msgstr "5 enregistrements"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -268,6 +268,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Veuillez ne pas le mettre à jour car cela pourrait gâcher votre formulaire. Utilisez la vue Personnaliser Le Formulaire et les Champs Personnalisés pour définir les propriétés !
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -671,11 +681,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -797,7 +812,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -816,7 +831,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr "La clé API ne peut pas être régénérée"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -840,7 +855,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -926,7 +941,7 @@ msgstr "Jeton d'Accès"
msgid "Access Token URL"
msgstr "URL du jeton d'accès"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Accès non autorisé à partir de cette adresse IP"
@@ -1042,7 +1057,7 @@ msgstr "L'action {0} a échoué sur {1} {2}. Voir {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Actions"
@@ -1099,7 +1114,7 @@ msgstr "Historique d'activité"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1110,7 +1125,7 @@ msgstr "Historique d'activité"
msgid "Add"
msgstr "Ajouter"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1142,7 +1157,7 @@ msgstr "Ajouter une bordure en bas"
msgid "Add Border at Top"
msgstr "Ajouter une bordure en haut"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1155,8 +1170,8 @@ msgid "Add Child"
msgstr "Ajouter une Sous-Catégorie"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1250,7 +1265,7 @@ msgstr "Ajouter des Abonnés"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1425,6 +1440,7 @@ msgstr "Autorisations supplémentaires"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1433,6 +1449,7 @@ msgstr "Adresse"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresse Ligne 1"
@@ -1440,6 +1457,7 @@ msgstr "Adresse Ligne 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresse Ligne 2"
@@ -1601,7 +1619,7 @@ msgstr "Après la soumission"
msgid "After Submit"
msgstr "Après validation"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Le champ agrégé est requis pour créer une carte de numéro"
@@ -1628,11 +1646,11 @@ msgstr "Alerte"
msgid "Alerts and Notifications"
msgstr "Alertes et notifications"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -2080,6 +2098,12 @@ msgstr "Ajout également du champ de dépendance de statut {0}"
msgid "Alternative Email ID"
msgstr "Email de connexion alternatif"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2156,6 +2180,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr "Règles de nommage mises à jour."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Une erreur s'est produite lors de la définition des paramètres de session par défaut."
@@ -2338,7 +2367,7 @@ msgstr "Appliqué sur"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Appliquer la règle d'assignation"
@@ -2423,7 +2452,7 @@ msgstr "Colonnes Archivées"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2459,7 +2488,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2467,7 +2496,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Voulez-vous vraiment fusionner {0} avec {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2522,6 +2551,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2531,7 +2566,7 @@ msgstr "Attribuer une condition"
msgid "Assign To"
msgstr "Attribuer À"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Attribuer À"
@@ -2674,7 +2709,7 @@ msgstr "Affectations"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Au moins une colonne est requise pour s'afficher dans la grille."
@@ -2754,7 +2789,7 @@ msgstr "Attaché au champ"
msgid "Attached To Name"
msgstr "Joint Au Nom"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Le nom joint à un nom doit être une chaîne ou un entier"
@@ -2770,7 +2805,7 @@ msgstr "Pièce jointe"
msgid "Attachment Limit (MB)"
msgstr "Taille Maximale de la Pièce jointe (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Limite de pièces jointes atteinte"
@@ -2792,11 +2827,11 @@ msgstr "Pièce jointe retirée"
msgid "Attachments"
msgstr "Pièces jointes"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Tentative de connexion au bac QZ ..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Tenter de lancer QZ Tray ..."
@@ -3654,15 +3689,15 @@ msgstr "Suppression en masse"
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Modifier en Masse {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3886,7 +3921,7 @@ msgid "Camera"
msgstr "Caméra"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3946,7 +3981,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3954,7 +3989,7 @@ msgstr ""
msgid "Cancel"
msgstr "Annuler"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annuler"
@@ -3972,7 +4007,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "Annuler tous les documents"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Annuler les documents {0}?"
@@ -4021,11 +4056,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr "Ne peut être retiré"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -4069,11 +4104,11 @@ msgstr "Création impossible d'un {0} pour un document enfant: {1}"
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Impossible de supprimer les dossiers d’accueil et les pièces jointes"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Impossible de supprimer ou d'annuler, car {0} {1} est associé à {2} {3} {4}"
@@ -4136,8 +4171,8 @@ msgstr "Impossible de modifier un document annulé"
msgid "Cannot edit filters for standard charts"
msgstr "Impossible de modifier les filtres des graphiques standard"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4149,11 +4184,11 @@ msgstr "Impossible de modifier les champs standards"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4161,7 +4196,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Impossible d'imprimer plusieurs imprimantes sur un seul format d'impression."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4177,7 +4212,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr "Impossible de faire correspondre la colonne {0} avec un champ"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Impossible de déplacer la ligne"
@@ -4206,11 +4241,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr "Impossible de mettre à jour {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4337,7 +4372,7 @@ msgstr ""
#. Label of the changed_values (HTML) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Changes"
-msgstr ""
+msgstr "Modifications"
#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
@@ -4483,11 +4518,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4516,6 +4551,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Choisissez la méthode d'authentification qui sera utilisée par tous les utilisateurs"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Ville"
@@ -4542,7 +4578,7 @@ msgstr ""
msgid "Clear All"
msgstr "Tout effacer"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4619,24 +4655,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Cliquez sur {0} pour générer le jeton d'actualisation."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Cliquez sur la table pour modifier"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4814,7 +4850,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Réduire"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tout réduire"
@@ -4869,7 +4905,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4925,11 +4961,11 @@ msgstr "Nom de la Colonne"
msgid "Column Name cannot be empty"
msgstr "Nom de la Colonne ne peut pas être vide"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4956,7 +4992,7 @@ msgstr "Colonnes"
msgid "Columns / Fields"
msgstr "Colonnes / Champs"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Colonnes basées sur"
@@ -5171,8 +5207,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5220,7 +5256,7 @@ msgstr ""
msgid "Configure Chart"
msgstr "Configurer le graphique"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Configurer Les Colonnes"
@@ -5247,7 +5283,7 @@ msgstr "Configurez la manière dont les documents modifiés seront nommés.
\
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Confirmer"
@@ -5266,7 +5302,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Confirmer le nouveau mot de passe"
@@ -5311,8 +5347,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Connecté à QZ Tray!"
@@ -5363,6 +5399,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5426,7 +5466,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5515,7 +5555,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr "Copier vers le presse-papiers"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5524,7 +5564,7 @@ msgstr ""
msgid "Copyright"
msgstr "Droit d'Auteur"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Les DocTypes de base ne peuvent pas être personnalisés."
@@ -5548,7 +5588,7 @@ msgstr "Impossible de trouver {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Impossible de mapper la colonne {0} au champ {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5601,13 +5641,14 @@ msgstr "Compteur"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Pays"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5639,13 +5680,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Créer"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5659,7 +5700,7 @@ msgid "Create Card"
msgstr "Créer une carte"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Créer un graphique"
@@ -5693,12 +5734,12 @@ msgstr "Créer un journal"
msgid "Create New"
msgstr "Créer Nouveau(elle)"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Créer Nouveau(elle)"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5706,7 +5747,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Créer un Email Utilisateur"
@@ -5729,8 +5770,8 @@ msgstr "Créer un nouvel enregistrement"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Créer un(e) nouveau(elle) {0}"
@@ -5746,7 +5787,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Créez votre premier {0}"
@@ -5756,7 +5797,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Créé"
@@ -6093,7 +6134,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Personnaliser ?"
@@ -6128,7 +6169,7 @@ msgstr "Personnalisations pour {0} exportées vers:
{1}"
msgid "Customize"
msgstr "Personnaliser"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Personnaliser"
@@ -6147,7 +6188,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Personnaliser le formulaire"
@@ -6378,7 +6419,7 @@ msgstr ""
msgid "Data Import Template"
msgstr "Modèle d'importation de données"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Données trop longues"
@@ -6409,7 +6450,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6711,7 +6752,7 @@ msgstr ""
#. Description of the 'Currency' (Link) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Default display currency"
-msgstr ""
+msgstr "Devise d'affichage par défaut"
#: frappe/core/doctype/doctype/doctype.py:1377
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
@@ -6779,13 +6820,13 @@ msgstr "Différé"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Supprimer"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Supprimer"
@@ -6818,7 +6859,7 @@ msgstr ""
msgid "Delete Data"
msgstr "Suprimmer les données"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6832,7 +6873,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6874,12 +6915,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr "Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Supprimer {0} éléments de façon permanente?"
@@ -6915,7 +6956,7 @@ msgstr "Documents Supprimés"
msgid "Deleted Name"
msgstr "Nom Supprimé"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6923,7 +6964,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Supprimé!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Suppression de {0}"
@@ -7376,10 +7417,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Ne pas modifier les en-têtes prédéfinis dans le modèle"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7803,13 +7848,13 @@ msgstr "Titre du document"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Type de Document"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7854,15 +7899,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Document annule"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Document valide"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Document au statut brouillon"
@@ -7993,7 +8038,7 @@ msgstr "Vous n'avez pas de compte?"
#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
-msgstr ""
+msgstr "Terminé"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8004,7 +8049,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8037,7 +8082,7 @@ msgstr "Lien de téléchargement"
msgid "Download PDF"
msgstr "Télécharger au Format PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Télécharger le rapport"
@@ -8133,7 +8178,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr "Nom du filtre en double"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nom en double"
@@ -8237,8 +8282,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8250,7 +8295,7 @@ msgstr ""
msgid "Edit"
msgstr "modifier"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "modifier"
@@ -8260,7 +8305,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "modifier"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "modifier"
@@ -8289,7 +8334,7 @@ msgstr "Modifier HTML Personnalisé"
msgid "Edit DocType"
msgstr "Modifier le DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Modifier le DocType"
@@ -8307,7 +8352,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Modifier le Format"
@@ -8409,7 +8454,7 @@ msgstr "Modifier {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Grille Éditable"
@@ -8454,6 +8499,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8472,6 +8519,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "Courriel"
@@ -8591,6 +8640,7 @@ msgid "Email IDs"
msgstr "ID's E-mail"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Identifiant Email"
@@ -8702,7 +8752,7 @@ msgstr "L'Email a été marqué comme étant un spam"
msgid "Email has been moved to trash"
msgstr "L'Email a été déplacé dans la corbeille"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8745,7 +8795,7 @@ msgstr "Les e-mails seront envoyés lors des actions de workflow"
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8753,7 +8803,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9181,7 +9231,7 @@ msgstr ""
msgid "Error Message"
msgstr "Message d'erreur"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Erreur de connexion à l'application QZ Tray ...
Vous devez avoir installé et exécuté l'application QZ Tray pour utiliser la fonction d'impression brute.
Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ."
@@ -9209,9 +9259,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Erreur dans la notification"
@@ -9231,19 +9281,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr "Erreur lors de la connexion au compte Email {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Erreur lors de l'évaluation de la notification {0}. Veuillez corriger votre modèle."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Erreur: Valeur absente pour {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9392,7 +9442,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Temps d'exécution: {0} s"
@@ -9418,12 +9468,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Développer"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Développer Tout"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9481,13 +9531,13 @@ msgstr "Heure d'expiration de l'image du QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exporter"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exporter"
@@ -9680,7 +9730,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr "échec de connexion au serveur"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Échec du décodage du jeton, veuillez fournir un jeton encodé en base64 valide."
@@ -9688,7 +9738,7 @@ msgstr "Échec du décodage du jeton, veuillez fournir un jeton encodé en base6
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9844,7 +9894,7 @@ msgstr "Récupération des documents de recherche globale par défaut."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9927,7 +9977,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr "Champ {0} introuvable."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9945,7 +9995,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Nom du Champ"
@@ -9958,7 +10008,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Le Nom du champ est limité à 64 caractères ({0})"
@@ -9974,11 +10024,11 @@ msgstr "Nom du champ qui sera le DocType pour ce champ lié"
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Nom de champ {0} en conflit avec méta objet"
@@ -10018,7 +10068,7 @@ msgstr "Champ"
msgid "Fields Multicheck"
msgstr "Champs à choix multiples"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -10026,7 +10076,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10054,7 +10104,7 @@ msgstr "Type de Champ"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}"
@@ -10120,7 +10170,7 @@ msgstr "URL du fichier"
msgid "File backup is ready"
msgstr "La sauvegarde de fichier est prête"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Le nom de fichier ne peut pas avoir {0}"
@@ -10128,7 +10178,7 @@ msgstr "Le nom de fichier ne peut pas avoir {0}"
msgid "File not attached"
msgstr "Fichier joint manquant"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "La taille du fichier a dépassé la taille maximale autorisée de {0} Mo"
@@ -10137,11 +10187,11 @@ msgstr "La taille du fichier a dépassé la taille maximale autorisée de {0} Mo
msgid "File too big"
msgstr "Fichier trop grand"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Fichier {0} n'existe pas"
@@ -10155,8 +10205,8 @@ msgstr "Fichiers"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10195,11 +10245,11 @@ msgstr "Nom du filtre"
msgid "Filter Values"
msgstr "Valeurs du filtre"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10276,7 +10326,7 @@ msgstr "Section Filtres"
msgid "Filters applied for {0}"
msgstr "Filtres appliqués pour {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filtres sauvegardés"
@@ -10324,8 +10374,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Prénom"
@@ -10406,7 +10460,7 @@ msgstr "Nom du dossier"
msgid "Folder name should not include '/' (slash)"
msgstr "Le nom du Dossier ne doit pas inclure de '/' (slash)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Dossier {0} n’est pas vide"
@@ -10513,7 +10567,7 @@ msgstr ""
msgid "Footer HTML"
msgstr "Pied de page HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10608,7 +10662,7 @@ msgstr "Pour l\\'Utilisateur"
msgid "For Value"
msgstr "Pour la Valeur"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)."
@@ -10649,7 +10703,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr "Pour la mise à jour, vous pouvez mettre à jour uniquement une sélection colonnes."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Pour {0} au niveau {1} dans {2} à la ligne {3}"
@@ -10893,7 +10947,7 @@ msgstr "A partir du"
msgid "From Date Field"
msgstr "Champ date"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "De type de document"
@@ -10955,13 +11009,13 @@ msgstr "Fonction basée sur"
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11020,7 +11074,7 @@ msgstr "Général"
msgid "Generate Keys"
msgstr "Générer des clés"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Générer un nouveau rapport"
@@ -11035,7 +11089,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11242,10 +11296,6 @@ msgstr ""
msgid "Google Calendar"
msgstr "Google Agenda"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Agenda - Impossible de créer un agenda pour {0}, code d'erreur {1}."
@@ -11260,7 +11310,7 @@ msgstr "Google Agenda - Impossible d'extraire l'événement de Google Ag
#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
-msgstr ""
+msgstr "Google Agenda - Impossible de trouver l'agenda de {0}, code d'erreur {1}."
#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
@@ -11440,14 +11490,10 @@ msgstr "Regrouper par type"
msgid "Group By field is required to create a dashboard chart"
msgstr "Le champ Grouper par est requis pour créer un tableau de bord"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Niveau parent"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11507,7 +11553,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11612,7 +11658,7 @@ msgstr "En-Tête"
msgid "Header HTML"
msgstr "En-tête HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "En-tête HTML défini à partir de la pièce jointe {0}"
@@ -11741,7 +11787,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11777,7 +11823,7 @@ msgstr "Caché"
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11889,7 +11935,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr "Masquer le Menu Standard"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -12049,7 +12095,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12146,9 +12192,9 @@ msgstr "Si \"Appliquer des autorisations d'utilisateur strictes\" est coché et
msgid "If Checked workflow status will not override status in list view"
msgstr "Si coché, le statut du workflow ne remplacera pas le statut de la vue en liste"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Si Responsable"
@@ -12376,8 +12422,8 @@ msgstr "Applications ignorées"
msgid "Illegal Document Status for {0}"
msgstr "Statut de document non autorisé pour {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Requête SQL illégale"
@@ -12464,11 +12510,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12498,7 +12544,7 @@ msgstr "Implicite"
msgid "Import"
msgstr "Importer"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importer"
@@ -12726,15 +12772,16 @@ msgstr "Inclure le thème des applications"
msgid "Include Web View Link in Email"
msgstr "Envoyer le lien de la vue Web du document par e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Inclure l'indentation"
@@ -12781,7 +12828,7 @@ msgstr "Compte Email entrant incorrect"
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Détails de connexion incomplets"
@@ -12892,7 +12939,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Insérer Après"
@@ -12930,8 +12977,8 @@ msgstr "Insérez le Style"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12965,7 +13012,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Autorisation Insuffisante Pour {0}"
@@ -13081,7 +13128,7 @@ msgid "Invalid"
msgstr "Invalide"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13091,7 +13138,7 @@ msgstr "Expression \"depends_on\" non valide"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Expression "depend_on" non valide définie dans le filtre {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13135,12 +13182,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13194,7 +13241,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr "Format de Sortie Invalide"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13208,11 +13255,11 @@ msgstr ""
msgid "Invalid Password"
msgstr "Mot de Passe Invalide"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Requête Invalide"
@@ -13229,7 +13276,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13252,7 +13299,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13260,19 +13307,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13280,11 +13327,11 @@ msgstr ""
msgid "Invalid column"
msgstr "Colonne incorrecte"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13300,23 +13347,23 @@ msgstr "Expression non valide définie dans le filtre {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Expression non valide définie dans le filtre {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Nom de champ {0} invalide"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13328,11 +13375,11 @@ msgstr "Champ invalide '{0}' dans nom automatique"
msgid "Invalid file path: {0}"
msgstr "Chemin de fichier invalide : {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13340,11 +13387,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Filtre non valide: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13381,23 +13428,27 @@ msgstr "Contenu non valide ou corrompu pour l'importation"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13501,7 +13552,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Est Table Enfant"
@@ -13554,6 +13605,10 @@ msgstr "Est un Dossier"
msgid "Is Global"
msgstr "Est Global"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Est un Groupe"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13580,8 +13635,13 @@ msgstr "Est facultatif"
msgid "Is Primary"
msgstr "Est primaire"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Personne de Contact"
@@ -13637,7 +13697,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Est Seul"
@@ -13673,7 +13733,7 @@ msgstr "Est Standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Est Validable"
@@ -13879,11 +13939,11 @@ msgstr "Colonne Tableau Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Nom du Tableau Kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14173,7 +14233,7 @@ msgstr "L’Étiquette est obligatoire"
msgid "Landing Page"
msgstr "Page d'Accueil"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Paysage"
@@ -14181,10 +14241,13 @@ msgstr "Paysage"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Langue"
@@ -14272,8 +14335,12 @@ msgstr "Le mois dernier"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Nom de Famille"
@@ -14419,7 +14486,7 @@ msgstr "Longueur"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Longueur de {0} doit être comprise entre 1 et 1000"
@@ -14469,7 +14536,7 @@ msgstr "Lettre"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14497,7 +14564,7 @@ msgstr "Nom de l'En-Tête"
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14514,7 +14581,7 @@ msgstr "En-Tête en HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Niveau"
@@ -14807,7 +14874,7 @@ msgstr "Filtre de liste"
msgid "List Settings"
msgstr "Paramètres de liste"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Paramètres de liste"
@@ -14858,7 +14925,7 @@ msgid "Load Balancing"
msgstr "L'équilibrage de charge"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Charger plus"
@@ -14878,7 +14945,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Chargement"
@@ -15021,7 +15088,7 @@ msgstr "Code de Vérification de Connexion depuis {}"
msgid "Login and view in Browser"
msgstr "Connectez-vous et affichez la page dans le navigateur"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -15029,7 +15096,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Connexion non autorisée pour le moment"
@@ -15082,7 +15149,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -15101,7 +15168,7 @@ msgstr ""
msgid "Logout"
msgstr "Déconnecté"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Déconnecter toutes les sessions"
@@ -15205,7 +15272,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Rendre \"nom\" cherchable dans la Recherche Globale"
@@ -15281,7 +15351,7 @@ msgstr "Obligatoire dépend de"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Renseignements Obligatoires manquants :"
@@ -15293,11 +15363,11 @@ msgstr "Champ obligatoire : rôle défini pour"
msgid "Mandatory field: {0}"
msgstr "Champ obligatoire : {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Champs Obligatoires Requis dans la table {0}, Ligne {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Champs Obligatoires Requis : {0}"
@@ -15479,7 +15549,7 @@ msgstr "Largeur max pour le type Devise est 100px dans la ligne {0}"
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15503,7 +15573,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15722,7 +15792,7 @@ msgstr "Méthode"
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15738,6 +15808,11 @@ msgstr ""
msgid "Middle Name"
msgstr "Deuxième Nom"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15808,7 +15883,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Champs Manquants"
@@ -15844,6 +15919,11 @@ msgstr ""
msgid "Mobile No"
msgstr "N° Mobile"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15869,7 +15949,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16045,10 +16125,12 @@ msgstr "Plus d'infos"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Informations Complémentaires"
@@ -16078,7 +16160,7 @@ msgstr ""
msgid "Move"
msgstr "mouvement"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Déménager à"
@@ -16114,7 +16196,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Déplacer vers le numéro de ligne"
@@ -16164,7 +16246,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "Doit être de type \"Joindre l'Image\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Doit avoir l'autorisation d'accéder aux rapport dont celui-ci."
@@ -16182,7 +16264,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16222,7 +16304,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16324,12 +16406,12 @@ msgstr "Modèle de barre de navigation"
msgid "Navbar Template Values"
msgstr "Valeurs du modèle de barre de navigation"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Naviguer dans la liste"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Naviguer dans la liste en haut"
@@ -16344,6 +16426,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16352,7 +16438,7 @@ msgstr ""
msgid "Negative Value"
msgstr "Valeur négative"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16365,6 +16451,12 @@ msgstr "Erreur d'ensemble imbriqué. Veuillez contacter l'Administrateur."
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16373,7 +16465,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16434,7 +16526,7 @@ msgstr "Nouvel évènement"
msgid "New Folder"
msgstr "Nouveau Dossier"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Nouveau Tableau Kanban"
@@ -16469,7 +16561,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nouveau Mot de Passe"
@@ -16565,7 +16657,7 @@ msgstr "Nouvelle valeur à définir"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Nouveau(elle) {0}"
@@ -16717,7 +16809,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Non"
@@ -16822,7 +16914,7 @@ msgstr "Aucun nom spécifié pour {0}"
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Aucune Autorisation Spécifiée"
@@ -16866,7 +16958,7 @@ msgstr "Aucun résultat trouvs"
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16874,7 +16966,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Aucune balise"
@@ -16950,7 +17042,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16974,7 +17066,7 @@ msgstr "Pas d'autre enregistrements"
msgid "No matching records. Search something new"
msgstr "Aucun enregistrement correspondant. Recherchez autre chose."
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Pas plus d'articles à afficher"
@@ -17018,7 +17110,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Pas d'autorisation pour '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Pas d'autorisation pour lire {0}"
@@ -17030,7 +17122,7 @@ msgstr "Pas d'autorisation pour {0} {1} {2}"
msgid "No records deleted"
msgstr "Aucun enregistrement supprimé"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Aucun enregistrement présent dans {0}"
@@ -17066,11 +17158,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17079,7 +17171,7 @@ msgid "No {0} mail"
msgstr "Pas de courrier {0}"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "N°."
@@ -17143,7 +17235,7 @@ msgstr "Pas des descendants de"
msgid "Not Equals"
msgstr "Non égaux"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Non Trouvé"
@@ -17169,9 +17261,9 @@ msgstr "Lié à aucun enregistrement"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17190,7 +17282,7 @@ msgstr "Non Publié"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17241,7 +17333,7 @@ msgstr "Non actif"
msgid "Not allowed for {0}: {1}"
msgstr "Non autorisé pour {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Vous n'êtes pas autorisé à joindre un document {0}, veuillez activer Autoriser l'impression pour {0} dans les paramètres d'impression"
@@ -17273,12 +17365,12 @@ msgstr "Pas en Mode Développeur"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez un DocType 'Custom'."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Pas permis"
@@ -17324,7 +17416,7 @@ msgstr "Remarque: pour obtenir les meilleurs résultats, les images doivent avoi
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17396,15 +17488,15 @@ msgstr "Document souscrit à la notification"
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17518,7 +17610,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17790,7 +17882,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Une fois validé, les documents à valider ne peuvent plus être modifiés. Ils ne peuvent être annulés et modifiés (Nouv. version)."
@@ -17879,11 +17971,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Seuls les DocTypes standard peuvent être personnalisés à partir de Personnaliser le formulaire."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17979,7 +18071,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Ouvrir un élément de la liste"
@@ -18028,7 +18120,7 @@ msgstr "Ouvert"
msgid "Operation"
msgstr "Opération"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "L'Opérateur doit être parmi {0}"
@@ -18074,6 +18166,7 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18082,6 +18175,7 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18111,7 +18205,7 @@ msgstr "Les options pour {0} doivent être définies avant de définir la valeur
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Options non définis pour le champ lié {0}"
@@ -18127,7 +18221,7 @@ msgstr ""
msgid "Order"
msgstr "Commande"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18143,7 +18237,7 @@ msgstr "Histoire Org"
msgid "Org History Heading"
msgstr "Rubriques Histoire Org"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18225,7 +18319,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18258,10 +18352,6 @@ msgstr ""
msgid "PDF Settings"
msgstr "Paramètres PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "La génération de PDF a échoué"
@@ -18473,7 +18563,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18577,8 +18667,8 @@ msgstr "Passif"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18601,7 +18691,7 @@ msgstr "Réinitialisation du Mot de Passe"
msgid "Password Reset Link Generation Limit"
msgstr "Limite de génération de lien de réinitialisation de mot de passe"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18638,7 +18728,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18650,7 +18740,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Les mots de passe ne correspondent pas!"
@@ -18801,7 +18891,7 @@ msgstr "Valider de Manière Permanente {0} ?"
msgid "Permanently delete {0}?"
msgstr "Supprimer de Manière Permanente {0} ?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Erreur d'autorisation"
@@ -18861,16 +18951,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Autorisations"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18932,15 +19022,18 @@ msgstr "Demande de téléchargement de données personnelles"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18953,11 +19046,11 @@ msgstr "Téléphone"
msgid "Phone No."
msgstr "N° de Téléphone."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19039,11 +19132,11 @@ msgstr "Veuillez demander à votre administrateur de vérifier votre inscription
msgid "Please attach a file first."
msgstr "Veuillez d’abord joindre un fichier."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19055,7 +19148,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bord: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
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}"
@@ -19095,7 +19188,7 @@ msgstr "Veuillez confirmer votre action sur {0} ce document."
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Veuillez d'abord créer la carte"
@@ -19111,11 +19204,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr "Veuillez ne pas modifier les sections du modèle."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Veuillez créer un duplicata pour faire des changements"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19124,7 +19217,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Veuillez autoriser les pop-ups"
@@ -19239,7 +19332,7 @@ msgstr "Veuillez d’abord enregistrer le rapport"
msgid "Please save to edit the template."
msgstr "Veuillez enregistrer pour modifier le modèle."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Veuillez d’abord sélectionner un DocType"
@@ -19247,15 +19340,15 @@ msgstr "Veuillez d’abord sélectionner un DocType"
msgid "Please select Entity Type first"
msgstr "Veuillez d'abord sélectionner le type d'entité"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19279,7 +19372,7 @@ msgstr "Veuillez sélectionner un filtre de date valide"
msgid "Please select applicable Doctypes"
msgstr "Veuillez sélectionner les types de docteurs applicables"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper"
@@ -19309,7 +19402,7 @@ msgstr "Veuillez définir une Adresse Email"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Veuillez définir un mappage d'imprimante pour ce format d'impression dans les paramètres de l'imprimante."
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Veuillez définir des filtres"
@@ -19329,7 +19422,7 @@ msgstr "Veuillez d'abord définir les documents suivants dans ce tableau de
msgid "Please set the series to be used."
msgstr "Veuillez définir la série à utiliser."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Veuillez configurer les SMS avant de les choisir comme méthode d'authentification"
@@ -19444,7 +19537,7 @@ msgstr "Article du Menu Portail"
msgid "Portal Settings"
msgstr "Paramètres du Portail"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19472,6 +19565,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "code postal"
@@ -19480,7 +19574,7 @@ msgstr "code postal"
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19495,6 +19589,10 @@ msgstr ""
msgid "Precision"
msgstr "Précision"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "La précision doit être comprise entre 1 et 6"
@@ -19543,7 +19641,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Utilisateur du rapport préparé"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19678,13 +19776,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Impression"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Impression"
@@ -19754,7 +19852,7 @@ msgstr "Aide pour le Format d'Impression"
msgid "Print Format Type"
msgstr "Type de Format d'Impression"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19793,7 +19891,7 @@ msgstr "Cacher à l’Impression si Aucune Valeur"
msgid "Print Language"
msgstr "Langue d’Impression"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Imprimer Envoyé à l'imprimante!"
@@ -19811,7 +19909,7 @@ msgstr "Serveur d'imprimante"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Paramètres d'impression"
@@ -19935,11 +20033,11 @@ msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Continuer malgré tout"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "En traitement"
@@ -19956,11 +20054,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil mis à jour avec succès."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Progression"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projet"
@@ -20004,7 +20112,7 @@ msgstr "Type de Propriété"
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20177,7 +20285,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr "QR Code pour la Vérification de Connexion"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20384,7 +20492,7 @@ msgstr "Évaluation"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Commandes brutes"
@@ -20510,11 +20618,11 @@ msgstr ""
msgid "Reason"
msgstr "Raison"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Reconstruire"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20895,8 +21003,8 @@ msgstr "Référent"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20927,13 +21035,13 @@ msgstr ""
msgid "Refresh Token"
msgstr "Jeton de Rafraîchissement"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Actualisation..."
@@ -21246,8 +21354,8 @@ msgstr "Répondre à Tous"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21318,11 +21426,11 @@ msgstr "Gestionnaire de Rapports"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Nom du Rapport"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21356,21 +21464,21 @@ msgstr "Vue rapport"
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Le Rapport ne peut pas être défini pour les types Uniques"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Le rapport ne contient aucune donnée, veuillez modifier les filtres ou changer le nom du rapport"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21390,7 +21498,7 @@ msgstr "Rapport mis à jour avec succès"
msgid "Report was not saved (there were errors)"
msgstr "Le Rapport n'a pas été sauvegardé (il y a eu des erreurs)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Paysage."
@@ -21426,7 +21534,7 @@ msgstr "Rapports"
msgid "Reports & Masters"
msgstr "Ecrans principaux et Rapports"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Rapports déjà en file d'attente"
@@ -21445,7 +21553,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Données de la requête"
@@ -21497,6 +21608,11 @@ msgstr ""
msgid "Request URL"
msgstr "URL de Demande"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21552,7 +21668,7 @@ msgstr ""
msgid "Reset Fields"
msgstr "Réinitialisation des champs"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Réinitialiser le mot de passe LDAP"
@@ -21560,11 +21676,11 @@ msgstr "Réinitialiser le mot de passe LDAP"
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Réinitialiser le Secret OTP"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21599,7 +21715,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21739,7 +21855,7 @@ msgstr "Revenez à l'écran de vérification et entrez le code affiché par votr
msgid "Reverse Icon Color"
msgstr "Inverser la Couleur de l'Icône"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Rétablissement de la longueur à {0} pour "{1}" dans "{2}". La définition de la longueur sur {3} entraînera la troncature des données."
@@ -21851,7 +21967,7 @@ msgstr "Autorisation du Rôle pour la Page et le Rapport"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Autorisations du Rôle"
@@ -21861,7 +21977,7 @@ msgstr "Autorisations du Rôle"
msgid "Role Permissions Manager"
msgstr "Gestionnaire d’Autorisations du Rôle"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Gestionnaire d’Autorisations du Rôle"
@@ -22006,7 +22122,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Ligne"
@@ -22014,12 +22130,12 @@ msgstr "Ligne"
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Ligne # {0} :"
@@ -22054,11 +22170,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Ligne {0}: impossible de désactiver Obligatoire pour les champs standard"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Ligne {0} : Il n’est pas autorisé d’activer Autoriser à la Validation pour les champs standards"
@@ -22077,7 +22193,10 @@ msgid "Rows Removed"
msgstr "Lignes Supprimées"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22285,8 +22404,8 @@ msgstr "Samedi"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22309,11 +22428,11 @@ msgstr "Enregistrer Sous"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Enregistrer le rapport"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Enregistrer les filtres"
@@ -22685,7 +22804,7 @@ msgstr "Paramètres de Sécurité"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Voir tous les rapports passés."
@@ -22749,7 +22868,7 @@ msgstr "Sélectionner"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22770,7 +22889,7 @@ msgid "Select Column"
msgstr "Sélectionner la colonne"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Sélectionner des Colonnes"
@@ -22829,7 +22948,7 @@ msgstr "Sélectionner un champ"
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Sélectionnez les champs"
@@ -22949,14 +23068,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Sélectionner d'abord un niveau parent"
+msgid "Select a group {0} first."
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Sélectionnez un champ d'expéditeur valide pour créer des documents à partir d'un e-mail"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Sélectionnez un champ Objet valide pour créer des documents à partir d'un e-mail"
@@ -22986,13 +23105,13 @@ msgstr "Sélectionner au moins 1 enregistrement pour l'impression"
msgid "Select atleast 2 actions"
msgstr "Sélectionnez au moins 2 actions"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Sélectionner un élément de la liste"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Sélectionner plusieurs éléments de liste"
@@ -23210,7 +23329,7 @@ msgstr "Email d'expéditeur"
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Le champ de l'expéditeur doit avoir un e-mail dans les options"
@@ -23314,7 +23433,7 @@ msgstr "Séries {0} déjà utilisé dans {1}"
msgid "Server Action"
msgstr "Action du serveur"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Erreur du Serveur"
@@ -23380,7 +23499,7 @@ msgstr "Session par défaut"
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "La Session a Expiré"
@@ -23389,14 +23508,14 @@ msgstr "La Session a Expiré"
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Expiration de Session doit être au format {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Définir"
@@ -23422,12 +23541,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Définir les options par défaut pour tous les graphiques de ce tableau de bord (par exemple: "couleurs": ["# d1d8dd", "# ff5858"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Définir des filtres dynamiques"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23438,7 +23557,7 @@ msgstr "Définir les filtres"
msgid "Set Filters for {0}"
msgstr "Définir des filtres pour {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23492,7 +23611,7 @@ msgstr "Définir Quantité"
msgid "Set Role For"
msgstr "Définir le Rôle Pour"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Définir les Autorisations des Utilisateurs"
@@ -23511,7 +23630,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Définir par défaut"
@@ -23530,18 +23649,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Définir la précision non standard pour un champ Flottant ou Devise"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23651,7 +23773,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Configuration Auto Email"
@@ -23792,6 +23914,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23920,7 +24048,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Voir les étiquettes"
@@ -24127,36 +24255,36 @@ msgstr "Inscription désactivée"
msgid "Signups have been disabled for this website."
msgstr "Les inscriptions ont été désactivées pour ce site Web."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Expression Python simple, Exemple: Statut dans ("Fermé", "Annulé")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Expression Python simple, Exemple: Statut dans ("non valide")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Expression Python simple, Exemple: status == 'Open' et tapez == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Sessions Simultanées"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Un seul DocTypes ne peut pas être personnalisé."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Types Simples ont un seul enregistrement aucunes tables associées. Les valeurs sont stockées dans tabSingles"
@@ -24164,7 +24292,7 @@ msgstr "Types Simples ont un seul enregistrement aucunes tables associées. Les
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24424,7 +24552,7 @@ msgstr "Champ de tri {0} doit être un nom de champ valide"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24491,8 +24619,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24524,7 +24652,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24540,7 +24668,7 @@ msgstr "Standard non défini"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Le Format d'Impression Standard ne peut pas être mis à jour"
@@ -24658,6 +24786,7 @@ msgstr "Commence le"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24793,7 +24922,7 @@ msgstr "Étapes pour vérifier votre connexion"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24823,7 +24952,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24921,7 +25050,7 @@ msgstr "Sujet"
msgid "Subject Field"
msgstr "Champ de sujet"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Le type de champ Objet doit être Données, Texte, Texte long, Petit texte, Éditeur de texte"
@@ -24935,6 +25064,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24943,10 +25073,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Valider"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Valider"
@@ -24956,7 +25087,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Valider"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Valider"
@@ -25004,7 +25135,7 @@ msgstr "Validez ce document pour terminer cette étape."
msgid "Submit this document to confirm"
msgstr "Valider ce document pour confirmer"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Valider {0} documents ?"
@@ -25054,7 +25185,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25203,7 +25334,7 @@ msgstr "Passer Au Bureau"
#: frappe/public/js/frappe/list/list_sidebar.js:319
msgid "Switch to Frappe CRM for smarter sales"
-msgstr ""
+msgstr "Passez à Frappe CRM pour des ventes plus intelligentes"
#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
@@ -25269,7 +25400,7 @@ msgstr "Synchronisation"
msgid "Syncing {0} of {1}"
msgstr "Synchroniser {0} sur {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25580,7 +25711,7 @@ msgstr "Tableau MultiSelect"
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Table Mise à Jour"
@@ -25795,7 +25926,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr "La répétition automatique de ce document a été désactivée."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "Le format CSV est sensible à la casse"
@@ -25810,7 +25941,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr "La Condition '{0}' est invalide"
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25863,7 +25994,7 @@ msgstr "Le commentaire ne peut pas être vide"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25893,7 +26024,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25964,7 +26095,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25975,7 +26106,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "La ressource que vous recherchez n'est pas disponible"
@@ -25987,7 +26118,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26048,12 +26179,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -26077,11 +26208,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Il y a un problème avec l'url du fichier : {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26093,7 +26224,7 @@ msgstr "Il doit y avoir au moins une règle d'autorisation."
msgid "There was an error building this page"
msgstr "Une erreur s'est produite lors de la construction de cette page"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Une erreur s'est produite lors de l'enregistrement des filtres"
@@ -26150,7 +26281,7 @@ msgstr "Authentification Tierce"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Cette devise est désactivée. Activez la pour l'utiliser dans les transactions"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Ce Tableau Kanban sera privé"
@@ -26158,6 +26289,10 @@ msgstr "Ce Tableau Kanban sera privé"
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26183,6 +26318,11 @@ msgstr "Cette action n'est autorisée que pour {}"
msgid "This cannot be undone"
msgstr "Ça ne peut pas être annulé"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26201,7 +26341,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26243,7 +26383,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26278,7 +26418,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Ceci va au-dessus du diaporama."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ceci est un rapport de fond. Veuillez définir les filtres appropriés, puis en générer un nouveau."
@@ -26328,7 +26468,7 @@ msgstr "Cela peut être imprimé sur plusieurs pages"
msgid "This month"
msgstr "Ce mois-ci"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26336,7 +26476,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "Ce rapport a été généré le {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Ce rapport a été généré {0}."
@@ -26478,9 +26618,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26743,7 +26885,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Pour obtenir le rapport mis à jour, cliquez sur {0}."
@@ -26818,7 +26960,7 @@ msgstr "Afficher/Cacher la vue en grille"
msgid "Toggle Sidebar"
msgstr "Afficher/Cacher la barre latérale"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Afficher/Cacher la barre latérale"
@@ -26944,7 +27086,7 @@ msgstr "Sujet"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -27065,7 +27207,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27101,7 +27243,7 @@ msgstr ""
msgid "Translatable"
msgstr "Traduisible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27263,7 +27405,7 @@ msgstr "Méthode d'Authentification à Double Facteur"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27356,7 +27498,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr "URL de documentation ou d'aide"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27459,7 +27601,7 @@ msgstr "Impossible d'envoyer du courrier en raison d'un compte de messagerie man
msgid "Unable to update event"
msgstr "Impossible de mettre à jour l'événement"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Impossible d'écrire le format de fichier pour {0}"
@@ -27468,7 +27610,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}"
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27484,7 +27626,7 @@ msgstr "Annuler l'action"
msgid "Undo last action"
msgstr "Annuler l'action précédente"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27531,7 +27673,7 @@ msgstr "Colonne Inconnue : {0}"
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Utilisateur Inconnu"
@@ -27597,8 +27739,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Désinscrit"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27632,7 +27774,7 @@ msgstr "Événements À Venir Aujourd'hui"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Mettre à Jour"
@@ -27666,6 +27808,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27724,7 +27871,7 @@ msgstr "Mise à jour vers une nouvelle version 🎉"
msgid "Updated successfully"
msgstr "Mis à jour avec succés"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Réactualisation"
@@ -27767,7 +27914,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
-msgstr ""
+msgstr "Améliorez votre expérience d'assistance avec Frappe Helpdesk"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144
@@ -27881,11 +28028,7 @@ msgstr "Utiliser une authentification email différente"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "L'utilisation de la sous-requête ou de la fonction est restreinte"
@@ -28107,12 +28250,12 @@ msgstr "Autorisation de l'Utilisateur"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Autorisations des Utilisateurs"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Autorisations des Utilisateurs"
@@ -28256,7 +28399,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr "Utilisateur {0} est désactivé"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28384,8 +28527,8 @@ msgstr "Validité"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28417,7 +28560,7 @@ msgstr "Valeur Modifiée"
msgid "Value To Be Set"
msgstr "Valeur à Définir"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Valeur ne peut pas être modifiée pour {0}"
@@ -28433,11 +28576,11 @@ msgstr "La valeur ne peut pas être négative pour {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "La valeur pour un champ de contrôle peut être 0 ou 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "La valeur du champ {0} est trop longue dans {1}. La longueur doit être inférieure à {2} caractères"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Valeur pour {0} ne peut pas être une liste"
@@ -28462,7 +28605,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Valeur à valider"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Valeur trop grande"
@@ -28554,7 +28697,7 @@ msgstr "Tout voir"
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28566,7 +28709,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Voir La Liste"
@@ -28576,7 +28719,7 @@ msgstr "Voir La Liste"
msgid "View Log"
msgstr "Voir le journal"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Afficher les Documents Autorisés"
@@ -28692,6 +28835,7 @@ msgid "Warehouse"
msgstr "Entrepôt"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Avertissement"
@@ -28786,7 +28930,7 @@ msgstr "Page Web"
msgid "Web Page Block"
msgstr "Bloc de page Web"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29176,7 +29320,7 @@ msgstr "Ne seront montrés que si les titres de section sont activés"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Avec en-tête de Lettre"
@@ -29337,7 +29481,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29430,7 +29574,7 @@ msgstr "Emballer"
msgid "Write"
msgstr "Écrire"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Valeur d'extraction incorrecte"
@@ -29459,7 +29603,7 @@ msgstr "Champs de l'Axe Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Champ Y"
@@ -29521,7 +29665,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Oui"
@@ -29557,6 +29701,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Vous êtes connecté à Internet."
@@ -29595,12 +29743,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Vous n'êtes pas autorisé à exporter {} doctype"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Vous n'êtes pas autorisé à imprimer ce rapport"
@@ -29608,7 +29756,7 @@ msgstr "Vous n'êtes pas autorisé à imprimer ce rapport"
msgid "You are not allowed to send emails related to this document"
msgstr "Vous n'êtes pas autorisé à envoyer un email en relation avec ce document"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web"
@@ -29681,11 +29829,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29735,11 +29883,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Vous ne pouvez pas configurer 'Options' pour le champ {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Vous ne pouvez pas définir \"Traduisible\" pour le champ {0}"
@@ -29757,7 +29905,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Vous ne pouvez pas créer un graphique de tableau de bord à partir de DocTypes uniques"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}\""
@@ -29800,15 +29948,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29820,11 +29968,11 @@ msgstr "Vous n'êtes pas autorisé à annuler tous les documents liés."
msgid "You don't have access to Report: {0}"
msgstr "Vous n'avez pas accès au Rapport : {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier"
@@ -29844,7 +29992,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr "Vous avez été déconnecté avec succès"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29872,7 +30020,7 @@ msgstr "Vous avez invisible {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29889,11 +30037,11 @@ msgstr "Vous avez édité ceci pour la dernière fois"
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Vous devez vous connecter pour valider ce formulaire"
@@ -29917,7 +30065,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Vous devez être en Mode Développeur pour modifier un Formulaire Web Standard"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes."
@@ -30008,6 +30156,10 @@ msgstr "Vous avez non suivi ce document"
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -30053,7 +30205,7 @@ msgstr "Vos raccourcis"
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Votre compte a été verrouillé et reprendra après {0} secondes"
@@ -30115,11 +30267,11 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer."
@@ -30427,7 +30579,7 @@ msgstr ""
msgid "just now"
msgstr "juste maintenant"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30456,7 +30608,7 @@ msgstr "liste"
msgid "logged in"
msgstr "connecté"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30794,7 +30946,7 @@ msgstr "via importation de données"
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "via notification"
@@ -30904,7 +31056,7 @@ msgstr "Graphique {0}"
msgid "{0} Dashboard"
msgstr "{0} Tableau de bord"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30945,7 +31097,7 @@ msgstr ""
msgid "{0} Name"
msgstr "{0} Nom"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30955,7 +31107,7 @@ msgstr ""
msgid "{0} Report"
msgstr "Rapport {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -31011,7 +31163,7 @@ msgstr "{0} et {1}"
msgid "{0} are currently {1}"
msgstr "{0} sont actuellement {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} sont obligatoires"
@@ -31028,7 +31180,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31105,7 +31257,7 @@ msgstr "{0} n'existe pas dans la ligne {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31150,7 +31302,7 @@ msgstr "{0} à la ligne {1} ne peut pas avoir à la fois une URL et des sous-art
msgid "{0} is a mandatory field"
msgstr "{0} est un champ obligatoire"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31199,7 +31351,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} est obligatoire"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31219,12 +31371,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr "{0} n'est pas une expression Cron valide."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} n'est pas un DocType valide pour Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} n’est pas une Adresse Email valide"
@@ -31232,11 +31384,11 @@ msgstr "{0} n’est pas une Adresse Email valide"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} n'est pas un nom valide"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} n'est pas un numéro de téléphone valide"
@@ -31256,7 +31408,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} n'est pas un format de rapport valide. Le format du rapport doit être l'un des {1} suivants"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31280,7 +31432,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} est maintenant le format d'impression par défaut pour le type de document {1}"
@@ -31290,8 +31442,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} est nécessaire"
@@ -31304,7 +31456,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} articles sélectionnés"
@@ -31361,11 +31513,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr "{0} doit être l'un des {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} doit être défini en premier"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} doit être unique"
@@ -31390,11 +31542,11 @@ msgid "{0} not found"
msgstr "{0} introuvable"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} sur {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} sur {1} ({2} lignes avec des enfants)"
@@ -31444,7 +31596,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31518,7 +31670,7 @@ msgstr "{0} à {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} ne partage plus ce document avec {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} mis(e) à jour"
@@ -31554,11 +31706,11 @@ msgstr "{0} {1} ajouté"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} ajouté au tableau de bord {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} existe déjà"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne peut pas être \"{2}\". Il devrait être l'un de \"{3}\""
@@ -31578,11 +31730,11 @@ msgstr "{0} {1} est lié aux documents validés suivants: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} introuvable"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: l'enregistrement validé ne peut pas être supprimé. Vous devez d'abord {2} l'annuler {3}."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Ligne {1}"
@@ -31590,35 +31742,35 @@ msgstr "{0}, Ligne {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0} : {1} '({3}) sera tronqué car le nombre de caractères max est {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0} : Impossible de choisir Nouv. version sans Annuler"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0} : Impossible de définir ‘Assigner Nouv. version’ si non Validable"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0} : Impossible de définir ‘Assigner Valider’ si non Validable"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0} : Impossible de choisir Annuler sans Valider"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0} : Impossible de choisir Import sans Créer"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0} : Vous ne pouvez pas choisir Valider, Annuler, Nouv. version sans Écrire"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0} : Impossible de choisir import car {1} n'est pas importable"
@@ -31646,11 +31798,11 @@ msgstr "{0}: le nom de champ {1} apparaît plusieurs fois dans les lignes {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: le type de champ {1} pour {2} ne peut pas être unique"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0} : Aucune autorisation de base définie"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0} : Une seule règle est permise avec le même Rôle, Niveau et {1}"
@@ -31670,7 +31822,7 @@ msgstr "{0}: les options {1} doivent être identiques au nom de type de document
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0} : L'Autorisation au niveau 0 doit être définie avant que les niveaux plus élevés soient parametrés"
@@ -31691,7 +31843,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} est passé au statut {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} contre {2}"
@@ -31727,11 +31879,11 @@ msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{fi
msgid "{} Complete"
msgstr "{} Achevée"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31757,7 +31909,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr "{} n'est pas une chaîne de date valide."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po
index 6fd07c083b..fc3e482745 100644
--- a/frappe/locale/hr.po
+++ b/frappe/locale/hr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:02\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'U Globalnom Pretraživanju' nije dopušteno za tip {0} u retku {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'U Prikazu Liste' nije dopušteno za polje {0} tipa {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}"
@@ -86,11 +86,11 @@ msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primatelji' nisu navedeni"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' nije valjani IBAN broj"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano"
msgid "0 is highest"
msgstr "0 je najviše"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Točno & 0 = Netočno"
@@ -141,11 +141,11 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinkroniziran je 1 događaj Google Kalendara."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Izvješće"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "prije 1 dan"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "prije 1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "prije 1 minutu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "prije 1 mjesec"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr "1 red do {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "prije 1 sekundu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "prije 1 tjedan"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "prije 1 godinu"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "prije 2 sata"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "prije 2 mjeseca"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "prije 2 tjedna"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "prije 2 godine"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "prije 3 minute"
@@ -232,7 +232,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 Zapisa"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "prije 5 dana"
@@ -270,6 +270,16 @@ msgstr "{0} nije važeći URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Nemojažurirati jer može pokvarit vaš obrazac. Koristi Prilagodi Prikaz Obrasca i Prilagođena Polja za postavljanje svojstava!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr "Zatražite datoteku koja sadrži vaše osobne podatke (PII) koji su pohranjeni u našem sustavu. Datoteka će biti u JSON formatu i bit će vam poslana e-poštom. Ako želite da se vaši PII izbrišu iz našeg sustava, molimo vas da podnesete zahtjev za brisanje podataka.
"
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr "Pošaljite zahtjev za brisanje vašeg računa i osobnih podataka (PII) koji su pohranjeni u našem sustavu. Primit ćete e-poštu za potvrdu vašeg zahtjeva. Nakon što zahtjev bude potvrđen, pobrinut ćemo se za brisanje vaših PII podataka. Ako samo želite provjeriti koje smo PII podatke pohranili, možete zatražiti svoje podatke.
"
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -754,11 +764,16 @@ msgstr "Ime DocType treba započeti slovom i može se sastojati samo od slova, b
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "Instanca Sustava može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri."
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "Veza za preuzimanje s vašim podacima bit će poslana na adresu e-pošte povezanu s vašim računom."
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Polje s imenom {0} već postoji u {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Datoteka s istim imenom {} već postoji"
@@ -882,7 +897,7 @@ msgstr "Argumenti krajnje API točke trebaju biti valjani JSON"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -901,7 +916,7 @@ msgstr "API Ključ i tajna za interakciju s relejnim poslužiteljem. Oni će se
msgid "API Key cannot be regenerated"
msgstr "API Ključ se ne može regenerirati"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API Ključevi"
@@ -925,7 +940,7 @@ msgstr "Zapisnik API zahtjeva"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1011,7 +1026,7 @@ msgstr "Pristupni Token"
msgid "Access Token URL"
msgstr "URL Pristupnog Tokena"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Pristup nije dozvoljen s ove IP adrese"
@@ -1127,7 +1142,7 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Radnje"
@@ -1184,7 +1199,7 @@ msgstr "Zapisnik Aktivnosti"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1195,7 +1210,7 @@ msgstr "Zapisnik Aktivnosti"
msgid "Add"
msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Dodaj/Ukloni Stupce"
@@ -1227,7 +1242,7 @@ msgstr "Dodaj Obrub na Dno"
msgid "Add Border at Top"
msgstr "Dodaj Obrub na Vrh"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Dodaj Karticu na Nadzornu Ploču"
@@ -1240,8 +1255,8 @@ msgid "Add Child"
msgstr "Dodaj Podređeni"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1335,7 +1350,7 @@ msgstr "Dodaj Pretplatnike"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj Oznake"
@@ -1510,6 +1525,7 @@ msgstr "Dodatna Dopuštenja"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1518,6 +1534,7 @@ msgstr "Adresa"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresna Linija 1"
@@ -1525,6 +1542,7 @@ msgstr "Adresna Linija 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresna Linija 2"
@@ -1686,7 +1704,7 @@ msgstr "Nakon Podnošenja"
msgid "After Submit"
msgstr "Nakon Podnošenja"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Agregatno Polje je obavezno za kreiranje kartice sa brojevima"
@@ -1713,11 +1731,11 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i Obavještenja"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Alias ne može biti SQL ključna riječ: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Alias mora biti niz"
@@ -2165,6 +2183,12 @@ msgstr "Takođe se dodaje polje statusne zavisnosti {0}"
msgid "Alternative Email ID"
msgstr "Alternativni ID e-pošte"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "Uvijek"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2241,6 +2265,11 @@ msgstr "Izmjena nije Dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila Izmjene Imenovanje ažurirana"
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "E-pošta za potvrdu vašeg zahtjeva poslana je na vašu adresu e-pošte. Molimo vas da potvrdite svoj zahtjev kako biste dovršili postupak."
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije"
@@ -2423,7 +2452,7 @@ msgstr "Primijenjeno na"
msgid "Apply"
msgstr "Primjeni"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primijeni Pravilo Dodjele"
@@ -2508,7 +2537,7 @@ msgstr "Arhivirane Kolone"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Jeste li sigurni da želite otkazati pozivnicu?"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "Jeste li sigurni da želite izbrisati zadatke?"
@@ -2544,7 +2573,7 @@ msgstr "Jeste li sigurni da želite izbrisati ovaj zapis?"
msgid "Are you sure you want to discard the changes?"
msgstr "Jeste li sigurni da želite odbaciti promjene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
@@ -2552,7 +2581,7 @@ msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Jeste li sigurni da želite nastaviti?"
@@ -2607,6 +2636,12 @@ msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozv
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "Pitaj"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2616,7 +2651,7 @@ msgstr "Dodijeli Uslov"
msgid "Assign To"
msgstr "Dodijeli"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodijeli"
@@ -2759,7 +2794,7 @@ msgstr "Dodjele"
msgid "Asynchronous"
msgstr "Asinkrono"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži."
@@ -2839,7 +2874,7 @@ msgstr "U Prilogu Polja"
msgid "Attached To Name"
msgstr "Priloženo Imenu"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo Imenu mora biti niz ili cijeli broj"
@@ -2855,7 +2890,7 @@ msgstr "Prilog"
msgid "Attachment Limit (MB)"
msgstr "Ograničenje Priloga (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Dostignuto Ograničenje Priloga"
@@ -2877,11 +2912,11 @@ msgstr "Prilog Uklonjen"
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušaj povezivanja na QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušaj pokretanja QZ Tray..."
@@ -3739,15 +3774,15 @@ msgstr "Grupno Brisanje"
msgid "Bulk Edit"
msgstr "Grupno Uređivanje"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Grupno uređivanje {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Grupna operacija nije uspjela"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Grupna operacija uspješna"
@@ -3971,7 +4006,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4031,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji."
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4039,7 +4074,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji."
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4057,7 +4092,7 @@ msgstr "Otkaži"
msgid "Cancel All Documents"
msgstr "Otkaži Sve Dokumente"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4106,11 +4141,11 @@ msgstr "Nije Moguće Preuzeti Vrijednosti"
msgid "Cannot Remove"
msgstr "Nije Moguće Ukloniti"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Nije Moguće Ažurirati Nakon Podnošenja"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "Nije moguće pristupiti putu datoteke {0}"
@@ -4154,11 +4189,11 @@ msgstr "Nije moguće kreirati {0} naspram podređenog dokumenta: {1}"
msgid "Cannot create private workspace of other users"
msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće izbrisati mape Početna i Prilozi"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}"
@@ -4221,8 +4256,8 @@ msgstr "Nije moguće uređivati otkazani dokument"
msgid "Cannot edit filters for standard charts"
msgstr "Nije moguće uređivati filtere za standardne grafikone"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Nije moguće uređivati filtere za standardne numeričke kartice"
@@ -4234,11 +4269,11 @@ msgstr "Nije moguće uređivati standardna polja"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "Nije moguće pronaći datoteku {} na disku"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "Nije moguće dobiti sadržaj mape"
@@ -4246,7 +4281,7 @@ msgstr "Nije moguće dobiti sadržaj mape"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvesti tablicu s više od 5000 redaka."
@@ -4262,7 +4297,7 @@ msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:"
msgid "Cannot match column {0} with any field"
msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Nije moguće pomjeriti red"
@@ -4291,11 +4326,11 @@ msgstr "Nije moguće podnijeti {0}."
msgid "Cannot update {0}"
msgstr "Nije moguće ažurirati {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "Ovdje se ne može koristiti podupit."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po"
@@ -4568,11 +4603,11 @@ msgstr "Podređena tabela {0} za polje {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Podređena polja upita za '{0}' moraju biti popis ili torka."
@@ -4601,6 +4636,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Odaberite način autentifikacije koji će koristiti svi korisnici"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Grad"
@@ -4627,7 +4663,7 @@ msgstr "Očisti & Dodaj Šablon"
msgid "Clear All"
msgstr "Obriši Sve"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Obriši Dodjelu"
@@ -4704,24 +4740,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Klikni na {0} za generisanje tokena osvježavanja."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klikni na tabelu za uređivanje"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Klikni da Postavite Dinamičke Filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Klikni da Postavite Filtere"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Klikni da sortirate po {0}"
@@ -4899,7 +4935,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -4954,7 +4990,7 @@ msgstr "Sklopivo Zavisi Od (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5010,11 +5046,11 @@ msgstr "Naziv Kolone"
msgid "Column Name cannot be empty"
msgstr "Naziv Kolone ne može biti prazan"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Širina Kolone"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Širina kolone ne može biti nula."
@@ -5041,7 +5077,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5256,8 +5292,8 @@ msgstr "Komprimirano"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5305,7 +5341,7 @@ msgstr "Konfiguracija"
msgid "Configure Chart"
msgstr "Konfiguriši Grafikon"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Konfiguriši Kolone"
@@ -5332,7 +5368,7 @@ msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n"
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Potvrdi"
@@ -5351,7 +5387,7 @@ msgstr "Potvrdi Pristup"
msgid "Confirm Deletion of Account"
msgstr "Potvrdi Brisanje Računa"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Potvrdi Novu Lozinku"
@@ -5396,8 +5432,8 @@ msgstr "Povezana Aplikacija"
msgid "Connected User"
msgstr "Povezani Korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Povezano na QZ Tray!"
@@ -5448,6 +5484,10 @@ msgstr "Ograničenja"
msgid "Contact"
msgstr "Kontakt"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "Kontakt/e-pošta nije pronađena. Nije dodan sudionik za -
{0}"
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5511,7 +5551,7 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5600,7 +5640,7 @@ msgstr "Greška pri kopiranju u međuspremnik"
msgid "Copy to Clipboard"
msgstr "Kopiraj u Međuspremnik"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "Kopiraj token u međuspremnik"
@@ -5609,7 +5649,7 @@ msgstr "Kopiraj token u međuspremnik"
msgid "Copyright"
msgstr "Autorska prava"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Osnovni DocTypes se ne mogu prilagoditi."
@@ -5633,7 +5673,7 @@ msgstr "Nije moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije moguće mapirati kolonu {0} na polje {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "Nije moguće parsati polje: {0}"
@@ -5686,13 +5726,14 @@ msgstr "Brojač"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Zemlja"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Kod Zemlje Obavezan"
@@ -5724,13 +5765,13 @@ msgstr "Potražuje"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Kreiraj"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Kreiraj & Nastavi"
@@ -5744,7 +5785,7 @@ msgid "Create Card"
msgstr "Kreiraj Karticu"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Kreiraj Grafikon"
@@ -5778,12 +5819,12 @@ msgstr "Kreiraj Zapisnik"
msgid "Create New"
msgstr "Kreiraj"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Kreiraj"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Kreiraj Novi DocType"
@@ -5791,7 +5832,7 @@ msgstr "Kreiraj Novi DocType"
msgid "Create New Kanban Board"
msgstr "Kreiraj Novu Natpisnu Tablu"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Kreiraj Korisničku e-poštu"
@@ -5814,8 +5855,8 @@ msgstr "Kreiraj novi zapis"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "+ {0}"
@@ -5831,7 +5872,7 @@ msgstr "Kreiraj ili Uredi Format Ispisa"
msgid "Create or Edit Workflow"
msgstr "Kreiraj ili Uredi Radni Tok"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "+ {0}"
@@ -5841,7 +5882,7 @@ msgstr "Kreiraj Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Kreirano"
@@ -6178,7 +6219,7 @@ msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Prilagođeno?"
@@ -6213,7 +6254,7 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}"
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6232,7 +6273,7 @@ msgstr "Prilagodi nadzornu ploču"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Prilagodi Formu"
@@ -6463,7 +6504,7 @@ msgstr "Zapisnik Uvoza Podataka"
msgid "Data Import Template"
msgstr "Šablon Uvoza Podataka"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Predugi Podaci"
@@ -6494,7 +6535,7 @@ msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka"
msgid "Database Storage Usage By Tables"
msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Ograničenje Veličine Reda Tabele Baze Podataka"
@@ -6864,13 +6905,13 @@ msgstr "Odgođeno"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Izbriši"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Izbriši"
@@ -6903,7 +6944,7 @@ msgstr "Izbriši Kolonu"
msgid "Delete Data"
msgstr "Izbriši Podatke"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Izbriši Natpisnu Tablu"
@@ -6917,7 +6958,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Izbriši Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Izbriši i Generiši Novi"
@@ -6959,12 +7000,12 @@ msgstr "Izbriši karticu"
msgid "Delete this record to allow sending to this email address"
msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno izbriši stavku {0}?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno izbriši {0} stavke?"
@@ -7000,7 +7041,7 @@ msgstr "Izbrisani Dokumenti"
msgid "Deleted Name"
msgstr "Izbrisano Ime"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Svi dokumenti su uspješno izbrisani"
@@ -7008,7 +7049,7 @@ msgstr "Svi dokumenti su uspješno izbrisani"
msgid "Deleted!"
msgstr "Izbrisano!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Brisanje {0} u toku"
@@ -7461,10 +7502,14 @@ msgstr "Nemoj kreirati novog korisnika"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "Nemoj me više upozoravati o {0}"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Želiš li i dalje nastaviti?"
@@ -7891,13 +7936,13 @@ msgstr "Naziv Dokumenta"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Tip Dokumenta"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "Tip i Funkcija Dokumenta su obavezni za kreiranje numeričke kartice"
@@ -7942,15 +7987,15 @@ msgstr "Dokument Otključan"
msgid "Document follow is not enabled for this user."
msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Dokument je otkazan"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Dokument je podnesen"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Dokument je u stanju nacrta"
@@ -8092,7 +8137,7 @@ msgstr "Krofna"
msgid "Double click to edit label"
msgstr "Dvaput klikni za uređivanje oznake"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8125,7 +8170,7 @@ msgstr "Link Preuzimanja"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Preuzmi izvještaj"
@@ -8221,7 +8266,7 @@ msgstr "Dvostruki Unos"
msgid "Duplicate Filter Name"
msgstr "Duplicirani Naziv Filtera"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Duplicirano Ime"
@@ -8325,8 +8370,8 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8338,7 +8383,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8348,7 +8393,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Uredi"
@@ -8377,7 +8422,7 @@ msgstr "Uredi Prilagođeni HTML"
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8395,7 +8440,7 @@ msgstr "Uredi Filtere"
msgid "Edit Footer"
msgstr "Uredi Podnožje"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Uredi Format"
@@ -8497,7 +8542,7 @@ msgstr "Uredi {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Uređivanje Mreže"
@@ -8542,6 +8587,8 @@ msgstr "Birač Elementa"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8560,6 +8607,8 @@ msgstr "Birač Elementa"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-pošta"
@@ -8679,6 +8728,7 @@ msgid "Email IDs"
msgstr "E-pošta"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "E-pošta"
@@ -8790,7 +8840,7 @@ msgstr "E-pošta je označena kao neželjena pošta"
msgid "Email has been moved to trash"
msgstr "E-pošta je premještena u smeće"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte"
@@ -8833,7 +8883,7 @@ msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka"
msgid "Embed code copied"
msgstr "Kod Ugradnje kopiran"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Prazan alias nije dopušten"
@@ -8841,7 +8891,7 @@ msgstr "Prazan alias nije dopušten"
msgid "Empty column"
msgstr "Prazna kolona"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Prazni argumenti niza nisu dopušteni"
@@ -9270,7 +9320,7 @@ msgstr "Zapisi Grešaka"
msgid "Error Message"
msgstr "Poruka Greške"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...
Morate imati instaliranu i pokrenutu aplikaciju QZ Tray da biste koristili funkciju Direktni Ispis.
Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju."
@@ -9298,9 +9348,9 @@ msgstr "Greška u Klijent Skripti."
msgid "Error in Header/Footer Script"
msgstr "Greška Skripte Zaglavlja/Podnožja"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Greška u Obavještenju"
@@ -9320,19 +9370,19 @@ msgstr "Pogreška pri parsiranju ugniježđenih filtera: {0}"
msgid "Error while connecting to email account {0}"
msgstr "Greška prilikom povezivanja na račun e-pošte {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Greška: Podaci nedostaju u tabeli {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Greška: Nedostaje vrijednost za {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Greška: {0} Red #{1}: Nedostaje vrijednost za: {2}"
@@ -9481,7 +9531,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9507,12 +9557,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}"
@@ -9570,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvezi"
@@ -9769,7 +9819,7 @@ msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}"
msgid "Failed to connect to server"
msgstr "Povezivanje sa serverom nije uspjelo"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64."
@@ -9777,7 +9827,7 @@ msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base
msgid "Failed to decrypt key {0}"
msgstr "Dešifriranje ključa {0} nije uspjelo"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Brisanje {0} dokumenata nije uspjelo: {1}"
@@ -9933,7 +9983,7 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10016,7 +10066,7 @@ msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}."
msgid "Field {0} not found."
msgstr "Polje {0} nije pronađeno."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika"
@@ -10034,7 +10084,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Ime Polja"
@@ -10047,7 +10097,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
@@ -10063,11 +10113,11 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze."
msgid "Fieldname {0} appears multiple times"
msgstr "Ime polja {0} pojavljuje se više puta"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Ime polja {0} je u konfliktu sa meta objektom"
@@ -10107,7 +10157,7 @@ msgstr "Polja"
msgid "Fields Multicheck"
msgstr "Polja Višestrukog Odabira"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
@@ -10115,7 +10165,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija"
@@ -10143,7 +10193,7 @@ msgstr "Tip Polja"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Tip polja se ne može promijeniti iz {0} u {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}"
@@ -10209,7 +10259,7 @@ msgstr "URL Datoteke"
msgid "File backup is ready"
msgstr "Sigurnosna Kopija Datoteke je spremna"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Ime datoteke ne može imati {0}"
@@ -10217,7 +10267,7 @@ msgstr "Ime datoteke ne može imati {0}"
msgid "File not attached"
msgstr "Datoteka nije priložena"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB"
@@ -10226,11 +10276,11 @@ msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0}
msgid "File too big"
msgstr "Datoteka je prevelika"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Tip datoteke {0} nije dozvoljen"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Datoteka {0} ne postoji"
@@ -10244,8 +10294,8 @@ msgstr "Datoteke"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10284,11 +10334,11 @@ msgstr "Filter Naziv"
msgid "Filter Values"
msgstr "Filter Vrijednosti"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "Nedostaje uvjet filtra nakon operatora: {0}"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "Polja filtera ne mogu sadržavati povratne crte (`)."
@@ -10365,7 +10415,7 @@ msgstr "Sekcija Filtera"
msgid "Filters applied for {0}"
msgstr "Primijenjeni filteri za {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filteri spremljeni"
@@ -10413,8 +10463,12 @@ msgstr "Prvi Dan u Tjednu"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Ime"
@@ -10495,7 +10549,7 @@ msgstr "Naziv Mape"
msgid "Folder name should not include '/' (slash)"
msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Mapa {0} nije prazna"
@@ -10602,7 +10656,7 @@ msgstr "Detalji Podnožja"
msgid "Footer HTML"
msgstr "Podnožje HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "HTML Podnožja postavljen iz priloga {0}"
@@ -10698,7 +10752,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -10739,7 +10793,7 @@ msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ tes
msgid "For updating, you can update only selective columns."
msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Za {0} na nivou {1} u {2} u redu {3}"
@@ -10983,7 +11037,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11045,13 +11099,13 @@ msgstr "Funkcija zasnovana na"
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije naveden"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Dalji članovi se mogu kreirati samo pod članovima tipa 'Grupa'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "Daljnje podgrupe mogu se stvoriti samo pod zapisima označenim kao 'Grupa'"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11110,7 +11164,7 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
@@ -11125,7 +11179,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "Generiši zasebne dokumente za svakog Dodijeljenog"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11332,10 +11386,6 @@ msgstr "Google Analytics anonimizirani IP"
msgid "Google Calendar"
msgstr "Google Kalendar"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Kalendar - Kontakt/e-mail nije pronađen. Nije dodan učesnik za -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalendar - Nije moguće kreirati Kalendar za {0}, kod greške {1}."
@@ -11530,14 +11580,10 @@ msgstr "Grupiši Po Tipu"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "Grupiraj Po mora biti niz"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Grupni Član"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11597,7 +11643,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11702,7 +11748,7 @@ msgstr "Zaglavlje"
msgid "Header HTML"
msgstr "HTML Zaglavlja"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "HTML Zaglavlja postavljen iz priloga {0}"
@@ -11831,7 +11877,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Ovdje je vaš URL-a za praćenje"
@@ -11867,7 +11913,7 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena Polja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Skriveni stupci uključuju: {0}"
@@ -11979,7 +12025,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare"
msgid "Hide Standard Menu"
msgstr "Sakrij Standardni Meni"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Sakrij Oznake"
@@ -12139,7 +12185,7 @@ msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12236,9 +12282,9 @@ msgstr "Ako je označeno Primijeni Striktno Korisničko dopuštenje i definirano
msgid "If Checked workflow status will not override status in list view"
msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu liste"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ako je Vlasnik"
@@ -12466,8 +12512,8 @@ msgstr "Ignorisane Aplikacije"
msgid "Illegal Document Status for {0}"
msgstr "Ilegalan Status Dokumenta za {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Ilegalan SQL Upit"
@@ -12554,11 +12600,11 @@ msgstr "Slike"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Oponašaj"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Oponašaj {0}"
@@ -12588,7 +12634,7 @@ msgstr "Implicitno"
msgid "Import"
msgstr "Uvezi"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvezi"
@@ -12816,15 +12862,16 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Uključi skrivene stupce"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -12871,7 +12918,7 @@ msgstr "Račun dolazne e-pošte nije ispravan"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Nepotpuna implementacija virtualnog tipa dokumenta"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Nepotpuni podaci prijave"
@@ -12982,7 +13029,7 @@ msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13020,8 +13067,8 @@ msgstr "Umetni Stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Instaliraj {0} sa Marketplace"
@@ -13055,7 +13102,7 @@ msgstr "Instrukcije Poslane e-poštom"
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan Nivo Dozvola za {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljne Dozvole za {0}"
@@ -13171,7 +13218,7 @@ msgid "Invalid"
msgstr "Nevažeći"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13181,7 +13228,7 @@ msgstr "Nevažeći izraz \"depends_on\""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Nevažeći izraz \"mandatory_depends_on\""
@@ -13225,12 +13272,12 @@ msgstr "Nevažeći DocType"
msgid "Invalid Fieldname"
msgstr "Nevažeći Naziv Polja"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Nevažeći URL Datoteke"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Nevažeći Filter"
@@ -13284,7 +13331,7 @@ msgstr "Nevažeći Server Odlazne Pošte ili port: {0}"
msgid "Invalid Output Format"
msgstr "Nevažeći Izlazni Format"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Nevažeće Nadjačavanje"
@@ -13298,11 +13345,11 @@ msgstr "Nevažeći Parametri."
msgid "Invalid Password"
msgstr "Nevažeća Lozinka"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Nevažeći Broj Telefona"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Nevažeći Zahtjev"
@@ -13319,7 +13366,7 @@ msgstr "Nevažeći Naziv Polja Tabele"
msgid "Invalid Transition"
msgstr "Nevažeća Tranzicija"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13342,7 +13389,7 @@ msgstr "Nevažeća Tajna Webhooka"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator."
@@ -13350,19 +13397,19 @@ msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator
msgid "Invalid app"
msgstr "Nevažeća aplikacija"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Nevažeći format argumenta: {0}. Dopušteni su samo navodni znakovni literali ili jednostavna imena polja."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Nevažeća vrsta argumenta: {0}. Dopušteni su samo nizovi, brojevi i None."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Nevažeći znakovi u nazivu polja: {0}. Dopušteni su samo slova, brojevi i podcrte."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Nevažeći znakovi u nazivu tablice: {0}"
@@ -13370,11 +13417,11 @@ msgstr "Nevažeći znakovi u nazivu tablice: {0}"
msgid "Invalid column"
msgstr "Nevažeća kolona"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Nevažeća vrsta uvjeta u ugniježđenim filtrima: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
@@ -13390,23 +13437,23 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, s obrnutim ukrštenim slovima, kvalificirani prema tablici, aliasi ili '*'."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Nevažeći naziv polja u funkciji: {0}. Dopušteni su samo jednostavni nazivi polja."
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "Nevažeći tip polja: {0}"
@@ -13418,11 +13465,11 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
msgid "Invalid file path: {0}"
msgstr "Nevažeći put datoteke: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka."
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'."
@@ -13430,11 +13477,11 @@ msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fiel
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None."
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr "Nevažeći format rječnika funkcija"
@@ -13471,23 +13518,27 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "Nevažeće tijelo zahtjeva"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr "Nevažeća uloga"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "Nevažeći format jednostavnog filtra: {0}"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka."
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr "Nevažeći format niza literala: {0}"
@@ -13591,7 +13642,7 @@ msgstr "Je Kalendar i Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Je Podređena Tabela"
@@ -13644,6 +13695,10 @@ msgstr "Je Mapa"
msgid "Is Global"
msgstr "Je Globalno"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Grupa"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13670,8 +13725,13 @@ msgstr "Je Opciono Stanje"
msgid "Is Primary"
msgstr "Je Primarno"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "Primarna Adresa"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Je Primarni Kontakt"
@@ -13727,7 +13787,7 @@ msgstr "Je li postavljanje dovršeno?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Je Sam"
@@ -13763,7 +13823,7 @@ msgstr "Je Standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Je Podnošljiv"
@@ -13969,11 +14029,11 @@ msgstr "Kolona Oglasne Table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Naziv Oglasne Table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Postavke Oglasne Table"
@@ -14263,7 +14323,7 @@ msgstr "Oznaka je obavezna"
msgid "Landing Page"
msgstr "Početna Stranica"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Pejzaž"
@@ -14271,10 +14331,13 @@ msgstr "Pejzaž"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Jezik"
@@ -14362,8 +14425,12 @@ msgstr "Prošli Mjesec"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Prezime"
@@ -14509,7 +14576,7 @@ msgstr "Dužina"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Dužina proslijeđenog niza podataka veća je od vrijednosti maksimalno dopuštenih bodova oznake!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Dužina {0} bi trebala biti između 1 i 1000"
@@ -14559,7 +14626,7 @@ msgstr "Pismo"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14587,7 +14654,7 @@ msgstr "Naziv Zaglavlja"
msgid "Letter Head Scripts"
msgstr "Skripte Zaglavlja"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Zaglavlje ne može biti istovremeno onemogućeno i standard"
@@ -14604,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Nivo"
@@ -14897,7 +14964,7 @@ msgstr "Filter Liste"
msgid "List Settings"
msgstr "Postavke Liste"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Postavke Liste"
@@ -14948,7 +15015,7 @@ msgid "Load Balancing"
msgstr "Balansiranje Opterećenja"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Učitaj Još"
@@ -14968,7 +15035,7 @@ msgstr "Učitaj više"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Učitava se"
@@ -15111,7 +15178,7 @@ msgstr "Kod Potvrdu Prijave od {}"
msgid "Login and view in Browser"
msgstr "Prijavi se i pregledaj u Pretraživaču"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste"
@@ -15119,7 +15186,7 @@ msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {
msgid "Login link sent to your email"
msgstr "Veza za prijavu poslana je na vašu e-poštu"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Prijava trenutno nije dozvoljena"
@@ -15172,7 +15239,7 @@ msgstr "Prijavi se putem veze e-pošte"
msgid "Login with email link expiry (in minutes)"
msgstr "Prijavite se sa istekom veze e-pošte (u minutama)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena."
@@ -15191,7 +15258,7 @@ msgstr "URI Logotipa"
msgid "Logout"
msgstr "Odjava"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Odjava sa Svih Sesija"
@@ -15295,7 +15362,10 @@ msgid "Major"
msgstr "Velika"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Neka \"ime\" bude pretraživo u globalnoj pretrazi"
@@ -15371,7 +15441,7 @@ msgstr "Obavezno Zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno Zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezne informacije:"
@@ -15383,11 +15453,11 @@ msgstr "Obavezno polje: postavi ulogu za"
msgid "Mandatory field: {0}"
msgstr "Obavezno polje: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Obavezna polja u tabeli {0}, red {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Obavezna polja nedostaju u {0}"
@@ -15569,7 +15639,7 @@ msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}"
msgid "Maximum"
msgstr "Maksimum"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Maksimalna Granica Priloga {0} je dostignuta za {1} {2}."
@@ -15593,7 +15663,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15812,7 +15882,7 @@ msgstr "Metoda"
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Metoda je potrebna za kreiranje numeričke kartice"
@@ -15828,6 +15898,11 @@ msgstr "Sredina Centar"
msgid "Middle Name"
msgstr "Srednje Ime"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "Srednje Ime (Neobavezno)"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15898,7 +15973,7 @@ msgstr "Nedostaje DocType"
msgid "Missing Field"
msgstr "Nedostaje Polje"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Nedostajuća Polja"
@@ -15934,6 +16009,11 @@ msgstr "Mobilni Broj"
msgid "Mobile No"
msgstr "Mobilni Broj"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Mobilni Broj"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15959,7 +16039,7 @@ msgstr "Modalni Okidač"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16135,10 +16215,12 @@ msgstr "Više Informacija"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Više Informacija"
@@ -16168,7 +16250,7 @@ msgstr "Najvjerovatnije je vaša lozinka predugačka."
msgid "Move"
msgstr "Premjesti"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Premjesti u"
@@ -16204,7 +16286,7 @@ msgstr "Premjesti sekciju na novu karticu"
msgid "Move the current field and the following fields to a new column"
msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Pomjeri na Red Broj"
@@ -16254,7 +16336,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti tipa \"Priloži Sliku\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za pristup ovom izvještaju."
@@ -16272,7 +16354,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16312,7 +16394,7 @@ msgstr "NAPOMENA: Ovo polje je zbog starih postavki. Ponovo podesite LDAP za rad
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16416,12 +16498,12 @@ msgstr "Šablon Navigacijske Trake"
msgid "Navbar Template Values"
msgstr "Vrijednosti Šablona Navigacijske Trake"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Kreći se po listi prema dolje"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Kreći se po listi prema gore"
@@ -16436,6 +16518,10 @@ msgstr "Idi na glavni sadržaj"
msgid "Navigation Settings"
msgstr "Postavke Navigacije"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "Trebate pomoć?"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika"
@@ -16444,7 +16530,7 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r
msgid "Negative Value"
msgstr "Negativna Vrijednost"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Ugniježđeni filtri moraju biti navedeni kao popis ili torka."
@@ -16457,6 +16543,12 @@ msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora."
msgid "Network Printer Settings"
msgstr "Postavke Mrežnog Pisača"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "Nikad"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16465,7 +16557,7 @@ msgstr "Postavke Mrežnog Pisača"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16526,7 +16618,7 @@ msgstr "Novi Događaj"
msgid "New Folder"
msgstr "Nova Mapa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Nova Oglasna Tabla"
@@ -16561,7 +16653,7 @@ msgstr "Nova Numerička Kartica"
msgid "New Onboarding"
msgstr "Nova Introdukcija"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nova Lozinka"
@@ -16659,7 +16751,7 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Novi {0}"
@@ -16811,7 +16903,7 @@ msgstr "Dalje na klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16916,7 +17008,7 @@ msgstr "Nije Navedeno Ime za {0}"
msgid "No New notifications"
msgstr "Nema Novih obavještenja"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Nema Navedenih Dozvola"
@@ -16960,7 +17052,7 @@ msgstr "Nema Rezultata"
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Nije Pronađeno Odabirno Polje"
@@ -16968,7 +17060,7 @@ msgstr "Nije Pronađeno Odabirno Polje"
msgid "No Suggestions"
msgstr "Nema Prijedloga"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Nema Oznaka"
@@ -17044,7 +17136,7 @@ msgstr "Nema adresa e-pošte za pozivnice"
msgid "No failed logs"
msgstr "Nema neuspjelih zapisa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"."
@@ -17068,7 +17160,7 @@ msgstr "Nema daljnjih zapisa"
msgid "No matching records. Search something new"
msgstr "Nema podudarnih zapisa. Traži nešto novo"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Nema više artikala za prikaz"
@@ -17112,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Nema dozvole za '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Nema dozvole za čitanje {0}"
@@ -17124,7 +17216,7 @@ msgstr "Nema dozvole za {0} {1} {2}"
msgid "No records deleted"
msgstr "Nema izbrisanih zapisa"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Nema zapisa u {0}"
@@ -17160,11 +17252,11 @@ msgstr "Bez {0}"
msgid "No {0} Found"
msgstr "Nije pronađeno {0}"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Nije pronađeno {0}"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obrišite filtere da vidite sve {0}."
@@ -17173,7 +17265,7 @@ msgid "No {0} mail"
msgstr "Nema {0} pošte"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Broj."
@@ -17237,7 +17329,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17263,9 +17355,9 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17284,7 +17376,7 @@ msgstr "Nije Objavljeno"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17335,7 +17427,7 @@ msgstr "Nije aktivno"
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa"
@@ -17367,12 +17459,12 @@ msgstr "Nije u načinu rada za programere"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili napravi 'Prilagođen' DocType."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17418,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a ši
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Napomena: Ovo će biti podijeljeno s korisnikom."
@@ -17490,15 +17582,15 @@ msgstr "Obavijest Pretplaćeni Dokument"
msgid "Notification sent to"
msgstr "Obavještenje je poslano za"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona"
@@ -17612,7 +17704,7 @@ msgstr "Broj Upita"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Broj Sigurnosnih Kopija mora biti veći od nule."
@@ -17884,7 +17976,7 @@ msgstr "Introdukcija Završena"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti."
@@ -17973,11 +18065,11 @@ msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja"
msgid "Only reports of type Report Builder can be edited"
msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "Samo Administrator može izbrisati standardni DocType."
@@ -18073,7 +18165,7 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorite stavku liste"
@@ -18122,7 +18214,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
@@ -18168,6 +18260,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18176,6 +18269,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Opcije"
@@ -18205,7 +18299,7 @@ msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednost
msgid "Options is required for field {0} of type {1}"
msgstr "Opcije su potrebne za polje {0} tipa {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za polje veze {0}"
@@ -18221,7 +18315,7 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Red"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "Sortiraj Po mora biti niz"
@@ -18237,7 +18331,7 @@ msgstr "Istorija"
msgid "Org History Heading"
msgstr "Naslov Povijesti Organizacije"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orijentacija"
@@ -18319,7 +18413,7 @@ msgstr "ZAKRPA"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18352,10 +18446,6 @@ msgstr "PDF Širina Stranice (u mm)"
msgid "PDF Settings"
msgstr "PDF Postavke"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr "PDF se ne može prenijeti, sadrži nesiguran sadržaj"
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "PDF Generisanje nije uspjelo"
@@ -18567,7 +18657,7 @@ msgstr "Nadređeni DocType"
msgid "Parent Document Type"
msgstr "Nadređeni Tip Dokumenta"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Nadređeni Dokument Tip je obavezan za kreiranje numeričke kartice"
@@ -18671,8 +18761,8 @@ msgstr "Pasivno"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18695,7 +18785,7 @@ msgstr "Poništavanje Lozinke"
msgid "Password Reset Link Generation Limit"
msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Lozinka se ne može filtrirati"
@@ -18732,7 +18822,7 @@ msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
msgid "Password set"
msgstr "Lozinka postavljena"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
@@ -18744,7 +18834,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
msgid "Passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
@@ -18895,7 +18985,7 @@ msgstr "Trajno Podnesi {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Greška Dozvole"
@@ -18955,16 +19045,16 @@ msgstr "Tip Dozvole"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Greška Dozvola"
@@ -19026,15 +19116,18 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19047,11 +19140,11 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Broj Telefona."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19133,11 +19226,11 @@ msgstr "Zamoli administratora da potvrdi vašu registraciju"
msgid "Please attach a file first."
msgstr "Priloži datoteku."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Priloži datoteku slike da postavite HTML za Podnožje."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje."
@@ -19149,7 +19242,7 @@ msgstr "Priloži Applikaciju"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}"
@@ -19189,7 +19282,7 @@ msgstr "Potvrdi akciju {0} ovog dokumenta."
msgid "Please contact your system manager to install correct version."
msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Kreiraj Numeričku Karticu"
@@ -19205,11 +19298,11 @@ msgstr "Izbriši polje iz {0} ili dodaj traženi dokument."
msgid "Please do not change the template headings."
msgstr "Ne mijenjaj Naslove Predložaka."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Kopiraj ovo da izvršite promjene"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP ili se prijavite putem veze e-pošte prije nego što onemogućite prijavu zasnovanu na korisničkom imenu/lozinki."
@@ -19218,7 +19311,7 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Omogući iskačuće prozore"
@@ -19333,7 +19426,7 @@ msgstr "Prvo spremi izvještaj"
msgid "Please save to edit the template."
msgstr "Spremi da uredite šablon."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Odaberi DocType"
@@ -19341,15 +19434,15 @@ msgstr "Odaberi DocType"
msgid "Please select Entity Type first"
msgstr "Odaberi Tip Entiteta"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Odaberi pozivni broj zemlje za polje {1}."
@@ -19373,7 +19466,7 @@ msgstr "Odaberi važeći filter datuma"
msgid "Please select applicable Doctypes"
msgstr "Odaberi primjenjive Dokumente"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje"
@@ -19403,7 +19496,7 @@ msgstr "Postavi adresu e-pošte"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19423,7 +19516,7 @@ msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne."
msgid "Please set the series to be used."
msgstr "Postavi seriju imenovanja koja će se koristiti."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki"
@@ -19538,7 +19631,7 @@ msgstr "Stavka Menija Portala"
msgid "Portal Settings"
msgstr "Postavke Portala"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Portret"
@@ -19566,6 +19659,7 @@ msgstr "Pošte"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Broj Pošte"
@@ -19574,7 +19668,7 @@ msgstr "Broj Pošte"
msgid "Posting Timestamp"
msgstr "Vremenska Oznaka"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "Potencijalno opasan sadržaj u nizu literala: {0}"
@@ -19589,6 +19683,10 @@ msgstr "Potencijalno opasan sadržaj u nizu literala: {0}"
msgid "Precision"
msgstr "Preciznost"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "Preciznost ({0}) za {1} ne može biti dulja od njegove duljine ({2})."
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Preciznost bi trebala biti između 1 i 6"
@@ -19637,7 +19735,7 @@ msgstr "Analitika Pripremljenog Izvješća"
msgid "Prepared Report User"
msgstr "Korisnik Pripremljenog Izvještaja"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
@@ -19772,13 +19870,13 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Ispiši"
@@ -19848,7 +19946,7 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "Format Ispisa nije pronađen"
@@ -19887,7 +19985,7 @@ msgstr "Sakrij ispis ako nema vrijednost"
msgid "Print Language"
msgstr "Jezik Ispisa"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Ispis Poslan na pisač!"
@@ -19905,7 +20003,7 @@ msgstr "Ispisni Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Postavke Ispisa"
@@ -20029,11 +20127,11 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Obrađuje se"
@@ -20050,11 +20148,21 @@ msgstr "Prof"
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "Slika Profila"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil je uspješno ažuriran."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projekat"
@@ -20098,7 +20206,7 @@ msgstr "Tip Svojstva"
msgid "Protect Attached Files"
msgstr "Zaštiti Priložene Datoteke"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Zaštićena Datoteka"
@@ -20271,7 +20379,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR Kod za Provjeru Prijave"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Tray neuspješan:"
@@ -20478,7 +20586,7 @@ msgstr "Ocjena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Direktne Naredbe"
@@ -20604,11 +20712,11 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Obnovi"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Obnovi Stablo"
@@ -20989,8 +21097,8 @@ msgstr "Preporučitelj"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21021,13 +21129,13 @@ msgstr "Osvježi Pregled Ispisa"
msgid "Refresh Token"
msgstr "Osvježi Token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Osvježava se"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
@@ -21340,8 +21448,8 @@ msgstr "Odgovori Svima"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21412,11 +21520,11 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Naziv Izvještaja"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Naziv Izvještaja, Polje Izvještaja i Funkcija su obevezni za kreiranje numeričke kartice"
@@ -21450,21 +21558,21 @@ msgstr "Pregled iIvještaja"
msgid "Report bug"
msgstr "Prijavi Grešku"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Izvještaj se ne može postaviti za Singl tipove"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvještaja"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21484,7 +21592,7 @@ msgstr "Izvještaj je uspješno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izvještaj nije spremljen (bilo je grešaka)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
@@ -21520,7 +21628,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -21539,7 +21647,10 @@ msgid "Request Body"
msgstr "Zahtjev od"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Zatraži Podatke"
@@ -21591,6 +21702,11 @@ msgstr "Zahtjev Istekao"
msgid "Request URL"
msgstr "URL Zahtjeva"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "Zahtjev za Brisanje Računa"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21646,7 +21762,7 @@ msgstr "Poništi Prilagođavanja Nadzorne Table"
msgid "Reset Fields"
msgstr "Poništi Polja"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Poništi LDAP Lozinku"
@@ -21654,11 +21770,11 @@ msgstr "Poništi LDAP Lozinku"
msgid "Reset Layout"
msgstr "Poništi Izgled"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Poništi OTP Tajnu"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21693,7 +21809,7 @@ msgstr "Vrati na Standard"
msgid "Reset sorting"
msgstr "Poništi Sortiranje"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Vrati na Standard"
@@ -21833,7 +21949,7 @@ msgstr "Vratite se na ekran za provjeru i unesite kod koji prikazuje vaša aplik
msgid "Reverse Icon Color"
msgstr "Obrnute Boje Ikone"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine kao {3} će uzrokovati skraćivanje podataka."
@@ -21945,7 +22061,7 @@ msgstr "Dozvola Uloge za Stranicu i Izvještaj"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Dozvole Uloge"
@@ -21955,7 +22071,7 @@ msgstr "Dozvole Uloge"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
@@ -22100,7 +22216,7 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Red"
@@ -22108,12 +22224,12 @@ msgstr "Red"
msgid "Row #"
msgstr "Red #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22148,11 +22264,11 @@ msgstr "Vrijednosti Reda Promijenjene"
msgid "Row {0}"
msgstr "Red {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja"
@@ -22171,7 +22287,10 @@ msgid "Rows Removed"
msgstr "Ukonjeni Redovi"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "Prag redaka za Mreže Pretraživanje"
@@ -22379,8 +22498,8 @@ msgstr "Subota"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22403,11 +22522,11 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Spremi Izvještaj"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Spremi Filtere"
@@ -22779,7 +22898,7 @@ msgstr "Sigurnosne Postavke"
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
@@ -22843,7 +22962,7 @@ msgstr "Odaberi"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Odaberi sve"
@@ -22864,7 +22983,7 @@ msgid "Select Column"
msgstr "Odaberi Kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Odaberi Kolone"
@@ -22923,7 +23042,7 @@ msgstr "Odaberi Polje"
msgid "Select Field..."
msgstr "Odaberi Polje..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Odaberi Polja"
@@ -23043,14 +23162,14 @@ msgid "Select a field to edit its properties."
msgstr "Odaberi polje da biste uredili njegova svojstva."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Odaberi Grupu."
+msgid "Select a group {0} first."
+msgstr "Odaberi grupu {0}."
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte"
@@ -23080,13 +23199,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis"
msgid "Select atleast 2 actions"
msgstr "Odaberi najmanje dvije radnje"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Odaberi Artikal Liste"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Odaberi artikle više listi"
@@ -23304,7 +23423,7 @@ msgstr "E-pošta Pošiljatelja"
msgid "Sender Email Field"
msgstr "Polje e-pošte Pošiljatelja"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
@@ -23408,7 +23527,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23474,7 +23593,7 @@ msgstr "Standard Sesije"
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23483,14 +23602,14 @@ msgstr "Sesija Istekla"
msgid "Session Expiry (idle timeout)"
msgstr "Istek Sesije (vremensko ograničenje mirovanja)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Istek Sesije mora biti u formatu {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Postavi"
@@ -23516,12 +23635,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Postavi zadane opcije za sve grafikone na ovoj Nadzornoj Tabli (npr. \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Postavi Dinamičke Filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23532,7 +23651,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23586,7 +23705,7 @@ msgstr "Postavi Količinu"
msgid "Set Role For"
msgstr "Postavi Ulogu za"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Postavi Korisničke Dozvole"
@@ -23605,7 +23724,7 @@ msgstr "Postavi sve privatno"
msgid "Set all public"
msgstr "Postavi sve javno"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Postavi kao Standard"
@@ -23624,18 +23743,21 @@ msgstr "Postavio Korisnik"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Postavi vrijednosti dinamičkog filtera u JavaScriptu za obavezna polja ovdje."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Postavi nestandardnu preciznost za Float ili Valuta polje"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "Postavljanje nestandardne preciznosti za polje s Decimalom, Valutom ili Postotkom"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23769,7 +23891,7 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -23910,6 +24032,12 @@ msgstr "Prikaži Dokument"
msgid "Show Error"
msgstr "Prikaži Grešku"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "Prikaži upozorenje o vanjskoj poveznici"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)"
@@ -24038,7 +24166,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Prikaži ključ za društvenu prijavu kao autorizacijski poslužitelj"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Prikaži Oznake"
@@ -24245,36 +24373,36 @@ msgstr "Prijava Onemogućena"
msgid "Signups have been disabled for this website."
msgstr "Prijave su onemogućene za ovu web stranicu."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Jednostavan Python izraz, primjer: status u (\"Zatvoreno\", \"Otkazano\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Jednostavan Python izraz, primjer: status u (\"Nevažeći\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "Jednostavan Python Izraz, Primjer: status == \"Invalid\""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "Jednostavan Python Izraz, Primjer: status == 'Open' i issue_type == 'Bug'"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "Jednostavan Python Izraz, Primjer: status u (\"Closed\", \"Cancelled\")"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Simultane Sesije"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Pojedinačni DocTypes se ne mogu prilagoditi."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles"
@@ -24282,7 +24410,7 @@ msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vri
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 "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Veličina"
@@ -24542,7 +24670,7 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24609,8 +24737,8 @@ msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac.
msgid "Splash Image"
msgstr "Uvodna Slika"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Red"
@@ -24642,7 +24770,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "Standardni DocType se ne može izbrisati."
@@ -24658,7 +24786,7 @@ msgstr "Standard nije Postavljeno"
msgid "Standard Permissions"
msgstr "Standard Dozvole"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Standard Ispis Format ne može se ažurirati"
@@ -24776,6 +24904,7 @@ msgstr "Počinje"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24911,7 +25040,7 @@ msgstr "Koraci za provjeru vaše prijave"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "Sticky"
@@ -24941,7 +25070,7 @@ msgstr "Korištenje Pohrane po Tabelama"
msgid "Store Attached PDF Document"
msgstr "Pohrani priloženi PDF dokument"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "Sačuvajte API tajnu na sigurnom mjestu. Neće biti više prikazivana."
@@ -25039,7 +25168,7 @@ msgstr "Predmet"
msgid "Subject Field"
msgstr "Polje Predmeta"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta"
@@ -25053,6 +25182,7 @@ msgstr "Red Podnošenja"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25061,10 +25191,11 @@ msgstr "Red Podnošenja"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Rezerviši"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Rezerviši"
@@ -25074,7 +25205,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Pošalji"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Pošalji"
@@ -25122,7 +25253,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
msgid "Submit this document to confirm"
msgstr "Pošalji ovaj dokument da potvrdite"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Pošalji {0} dokumenata?"
@@ -25172,7 +25303,7 @@ msgstr "Podnaziv"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25387,7 +25518,7 @@ msgstr "Sinhronizacija u toku"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizira se {0} od {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Greška Sintakse"
@@ -25698,7 +25829,7 @@ msgstr "Višestruki Odabir Tabele"
msgid "Table Trimmed"
msgstr "Tabela Optimizirana"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabela Ažurirana"
@@ -25915,7 +26046,7 @@ msgstr "Hvala"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -25932,7 +26063,7 @@ msgstr "ID klijenta dobijen sa Google Cloud Console pod "
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
-msgstr "Izvješće koje ste zatražili je generirano.
Kliknite ovdje za preuzimanje:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "Izvješće koje ste zatražili je generirano.
Kliknite ovdje za preuzimanje:
{0}
Ova poveznica isteći će za {1} sati."
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
@@ -26101,7 +26232,7 @@ msgstr "Veza za poništavanje lozinke je istekla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26113,7 +26244,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Odabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26174,12 +26305,12 @@ msgstr "Nema predstojećih događaja za vas."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice"
@@ -26203,11 +26334,11 @@ msgstr "Ne postoji zadatak pod nazivom \"{}\""
msgid "There is nothing new to show you right now."
msgstr "Trenutno nema ništa novo za pokazati."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Postoji neki problem sa urlom datoteke: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26219,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole."
msgid "There was an error building this page"
msgstr "Došlo je do greške pri izradi ove stranice"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Došlo je do greške prilikom spremanja filtera"
@@ -26276,7 +26407,7 @@ msgstr "Autentifikacija Trećeih Strane"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Ova Oglasna Tabla će biti privatna"
@@ -26284,6 +26415,10 @@ msgstr "Ova Oglasna Tabla će biti privatna"
msgid "This Month"
msgstr "Ovaj Mjesec"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "Ovaj PDF se ne može prenijeti jer sadrži nesiguran sadržaj."
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Ovo Tromjesečje"
@@ -26309,6 +26444,11 @@ msgstr "Ova radnja je dozvoljena samo za {}"
msgid "This cannot be undone"
msgstr "Ovo se ne može poništiti"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "Prema zadanim postavkama, ova kartica je vidljiva samo administratoru i upraviteljima sustava. Postavite DocType za dijeljenje s korisnicima koji imaju pristup za čitanje."
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26327,7 +26467,7 @@ msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26373,7 +26513,7 @@ msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrij
"eval:doc.myfield=='Moja vrijednost'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati."
@@ -26408,7 +26548,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo ide iznad projekcije slajdova."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26458,7 +26598,7 @@ msgstr "Ovo se može ispisati na više stranica"
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26466,7 +26606,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa
msgid "This report was generated on {0}"
msgstr "Ovaj izvještaj je generisan {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -26608,9 +26748,11 @@ msgstr "Vremenski Prozor (Sekunde)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26877,7 +27019,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok
msgid "To generate password click {0}"
msgstr "Za generiranje lozinke kliknite {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -26952,7 +27094,7 @@ msgstr "Uključi Prikaz Mreže"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
@@ -27078,7 +27220,7 @@ msgstr "Tema"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Ukupno"
@@ -27201,7 +27343,7 @@ msgstr "Prati prekretnice za bilo koji dokument"
msgid "Tracking"
msgstr "Praćenje"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL praćenja generisan i kopiran u međuspremnik"
@@ -27237,7 +27379,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27399,7 +27541,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27493,7 +27635,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL za dokumentaciju ili pomoć"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL mora početi s http:// ili https://"
@@ -27596,7 +27738,7 @@ msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zad
msgid "Unable to update event"
msgstr "Nije moguće ažurirati događaj"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Nije moguće napisati format datoteke za {0}"
@@ -27605,7 +27747,7 @@ msgstr "Nije moguće napisati format datoteke za {0}"
msgid "Unassign Condition"
msgstr "Poništi dodjelu uslova"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
@@ -27621,7 +27763,7 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr "Neizbjegnuti navodnici u nizu: {0}"
@@ -27670,7 +27812,7 @@ msgstr "Nepoznata Kolona: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznata Metoda Zaokruživanja: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Nepoznati Korisnik"
@@ -27736,8 +27878,8 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr "Otkazano"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}"
@@ -27771,7 +27913,7 @@ msgstr "Nadolazeći Događaji za Danas"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Ažuriraj"
@@ -27805,6 +27947,11 @@ msgstr "Redoslijed ažuriranja"
msgid "Update Password"
msgstr "Ažuriraj Lozinku"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "Ažuriraj Profil"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27863,7 +28010,7 @@ msgstr "Ažurirano na Novu Verziju 🎉"
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Ažuriranje"
@@ -28020,11 +28167,7 @@ msgstr "Koristi drugu e-poštu"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "Korištenje funkcije {0} u polju je ograničena"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Korištenje podupita ili funkcije je ograničena"
@@ -28246,12 +28389,12 @@ msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28395,7 +28538,7 @@ msgstr "Korisnik {0} predstavljen kao {1}"
msgid "User {0} is disabled"
msgstr "Korisnik {0} je onemogućen"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema."
@@ -28523,8 +28666,8 @@ msgstr "Validnost"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28556,7 +28699,7 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
@@ -28572,11 +28715,11 @@ msgstr "Vrijednost ne može biti negativna za {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Vrijednost polja za provjeru može biti 0 ili 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Vrijednost za {0} ne može biti lista"
@@ -28601,7 +28744,7 @@ msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, ta
msgid "Value to Validate"
msgstr "Vrijednost za Provjeru"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Vrijednost je Prevelika"
@@ -28693,7 +28836,7 @@ msgstr "Prikaži Sve"
msgid "View Audit Trail"
msgstr "Prikaži Trag"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Prikaz Doctype Dozvola"
@@ -28705,7 +28848,7 @@ msgstr "Prikaži datoteku"
msgid "View Full Log"
msgstr "Prikaži Cijeli Zapisnik"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Prikaži Listu"
@@ -28715,7 +28858,7 @@ msgstr "Prikaži Listu"
msgid "View Log"
msgstr "Prikaži Zapisnik"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Prikaži Dozvoljene Dokumente"
@@ -28831,6 +28974,7 @@ msgid "Warehouse"
msgstr "Skladište"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Upozorenje"
@@ -28925,7 +29069,7 @@ msgstr "Web Stranica"
msgid "Web Page Block"
msgstr "Blok Web Stranice"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL Web Stranice"
@@ -29315,7 +29459,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Izvršit će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Sa Zaglavljem"
@@ -29476,7 +29620,7 @@ msgstr "Radni Tok je uspješno ažuriran"
msgid "Workspace"
msgstr "Radni Prostor"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "Radni Prostor {0} ne postoji"
@@ -29569,7 +29713,7 @@ msgstr "Završava se.."
msgid "Write"
msgstr "Piši"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Pogrešno Peuzimanje iz vrijednosti"
@@ -29598,7 +29742,7 @@ msgstr "Polja Ose Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y Polje"
@@ -29660,7 +29804,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29696,6 +29840,10 @@ msgstr "Dodali ste 1 red u {0}"
msgid "You added {0} rows to {1}"
msgstr "Dodali ste {0} redaka u {1}"
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "Upravo ćete otvoriti vanjsku poveznicu. Za potvrdu ponovno kliknite poveznicu."
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Povezani ste na internet."
@@ -29734,12 +29882,12 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
@@ -29747,7 +29895,7 @@ msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
msgid "You are not allowed to send emails related to this document"
msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -29820,11 +29968,11 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Ograničenje možete povećati u Postavkama Sistema."
@@ -29874,11 +30022,11 @@ msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima."
msgid "You can use wildcard %"
msgstr "Možete koristiti zamjenski znak %"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Ne možete postaviti 'Opcije' za polje {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Ne možete postaviti 'Prevodivo' za polje {0}"
@@ -29896,7 +30044,7 @@ msgstr "Otkazali ste ovaj dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}"
@@ -29939,15 +30087,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dopuštenje za pristup polju: {0}"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29959,11 +30107,11 @@ msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup Izvještaju: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovoj datoteci"
@@ -29983,7 +30131,7 @@ msgstr "Imate novu poruku od:"
msgid "You have been successfully logged out"
msgstr "Uspješno ste odjavljeni"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}"
@@ -30011,7 +30159,7 @@ msgstr "Niste vidjeli {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "{0} nema u sistemu"
@@ -30028,11 +30176,11 @@ msgstr "Zadnji put ste uređivali ovo"
msgid "You must add atleast one link."
msgstr "Morate dodati barem jednu vezu."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
@@ -30056,7 +30204,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama."
@@ -30147,6 +30295,10 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "Bit ćete preusmjereni na:"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr "Pozvani ste da se pridružite {0}"
@@ -30192,7 +30344,7 @@ msgstr "Vaše Prečice"
msgid "Your account has been deleted"
msgstr "Vaš Račun je izbrisan"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi"
@@ -30254,11 +30406,11 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr "Vaše se izvješće generira u pozadini. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "Vaše se izvješće generira u pozadini. Primit ćete e-poruku na {0} s vezom za preuzimanje kada bude spremno."
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -30566,7 +30718,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "oznaka"
@@ -30595,7 +30747,7 @@ msgstr "lista"
msgid "logged in"
msgstr "prijavljen"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "prijava_potrebna"
@@ -30933,7 +31085,7 @@ msgstr "putem Uvoza Podataka"
msgid "via Google Meet"
msgstr "putem Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "putem Obavijesti"
@@ -31043,7 +31195,7 @@ msgstr "{0} Grafikon"
msgid "{0} Dashboard"
msgstr "{0} Nadzorna Tabla"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31084,7 +31236,7 @@ msgstr "{0} Karta"
msgid "{0} Name"
msgstr "{0} Naziv"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
@@ -31094,7 +31246,7 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
msgid "{0} Report"
msgstr "{0} Izvještaj"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} Izvještaji"
@@ -31150,7 +31302,7 @@ msgstr "{0} i {1}"
msgid "{0} are currently {1}"
msgstr "{0} su trenutno {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} su obavezni"
@@ -31167,7 +31319,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} priloženo {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} ne može biti više od {1}"
@@ -31244,7 +31396,7 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "{0} polja ne mogu sadržavati povratne crte (`): {1}"
@@ -31289,7 +31441,7 @@ msgstr "{0} u redu {1} ne može imati i URL i podređene artikle"
msgid "{0} is a mandatory field"
msgstr "{0} je obavezno polje"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} nije važeća zip datoteka"
@@ -31338,7 +31490,7 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezan"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr "{0} nije podređena tablica od {1}"
@@ -31358,12 +31510,12 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar."
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća adresa e-pošte"
@@ -31371,11 +31523,11 @@ msgstr "{0} nije važeća adresa e-pošte"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} nije važeće Ime"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije ispravan broj telefona"
@@ -31395,7 +31547,7 @@ msgstr "{0} nije važeće nadređeno polje za {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} nije zip datoteka"
@@ -31419,7 +31571,7 @@ msgstr "{0} nije jedno od {1}"
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
@@ -31429,8 +31581,8 @@ msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je obavezan"
@@ -31443,7 +31595,7 @@ msgstr "{0} je postavljeno"
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
@@ -31500,11 +31652,11 @@ msgstr "{0} ne smije biti ni jedna od {1}"
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} se mora prvo postaviti"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
@@ -31529,11 +31681,11 @@ msgid "{0} not found"
msgstr "{0} nije pronađen"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} od {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
@@ -31583,7 +31735,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} removed {1} rows from {2}"
msgstr "{0} uklonilo je {1} redaka iz {2}"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
@@ -31657,7 +31809,7 @@ msgstr "{0} do {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} ažurirano"
@@ -31693,11 +31845,11 @@ msgstr "{0} {1} dodano"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} dodan na Nadzornu Ploču {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\""
@@ -31717,11 +31869,11 @@ msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Red {1}"
@@ -31729,35 +31881,35 @@ msgstr "{0}, Red {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv"
@@ -31785,11 +31937,11 @@ msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Nisu postavljene osnovne dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}"
@@ -31809,7 +31961,7 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa"
@@ -31830,7 +31982,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je postavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
@@ -31866,11 +32018,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam
msgid "{} Complete"
msgstr "{} Završeno"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Možda nevažeći python kod.
{}"
@@ -31896,7 +32048,7 @@ msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}."
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datumski niz."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli."
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 1dee359287..c11086ec6c 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -86,11 +86,11 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr "0 - Vázlat; 1 - Elküldve; 2 - Törölve"
msgid "0 is highest"
msgstr "0 a legnagyobb"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -141,11 +141,11 @@ msgstr "1 nap"
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 nappal ezelőtt"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 óra"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr ""
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 perccel ezelőtt"
@@ -232,7 +232,7 @@ msgstr "4 óra"
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 napja"
@@ -268,6 +268,16 @@ msgstr "{0} nem érvényes URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Kérjük, ne frissítse, mert ez összezavarhatja az űrlapot. A tulajdonságok beállításához használja az űrlapnézet és az egyéni mezők testreszabását!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -714,11 +724,16 @@ msgstr "A DocType nevének betűvel kell kezdődnie, és csak betűkből, számo
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "Egy Frappe Framework példány működhet OAuth-ügyfélként, erőforrásként vagy engedélyezési kiszolgálóként. Ez a DocType mindháromhoz kapcsolódó beállításokat tartalmaz."
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "A {0} nevű mező már létezik itt {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Egy azonos nevű {} fájl már létezik"
@@ -840,7 +855,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -859,7 +874,7 @@ msgstr "API Kulcs és Secret szükséges a továbbító kiszolgálóval való in
msgid "API Key cannot be regenerated"
msgstr "Az API kulcs nem regenerálható"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -883,7 +898,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -969,7 +984,7 @@ msgstr "Hozzáférési Token"
msgid "Access Token URL"
msgstr "Hozzáférési Token URL"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -1085,7 +1100,7 @@ msgstr "A {0} művelet nem sikerült a következőn: {1} {2}. Tekintse meg {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr ""
@@ -1142,7 +1157,7 @@ msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1153,7 +1168,7 @@ msgstr ""
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1185,7 +1200,7 @@ msgstr "Szegély Hozzáadása Alul"
msgid "Add Border at Top"
msgstr "Szegély Hozzáadása Felül"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1198,8 +1213,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1293,7 +1308,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1468,6 +1483,7 @@ msgstr "További Jogosultságok"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1476,6 +1492,7 @@ msgstr ""
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr ""
@@ -1483,6 +1500,7 @@ msgstr ""
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1644,7 +1662,7 @@ msgstr "Beküldés Után"
msgid "After Submit"
msgstr "Beküldés Után"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1671,11 +1689,11 @@ msgstr "Riasztás"
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1801,7 +1819,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Consecutive Login Attempts"
-msgstr ""
+msgstr "Egymást Követő Bejelentkezési Kísérletek Engedélyezése"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
@@ -2120,6 +2138,12 @@ msgstr ""
#. Label of the login_id (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Alternative Email ID"
+msgstr "Alternatív Email Azonosító"
+
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
msgstr ""
#. Label of the always_bcc (Data) field in DocType 'Email Account'
@@ -2142,7 +2166,7 @@ msgstr "Mindig ezt az e-mail címet használja feladó címként"
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
-msgstr ""
+msgstr "Mindig ezt az nevet használja feladó neveként"
#. Label of the amend (Check) field in DocType 'Custom DocPerm'
#. Label of the amend (Check) field in DocType 'DocPerm'
@@ -2151,7 +2175,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr ""
+msgstr "Módosítás"
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -2160,7 +2184,7 @@ msgstr ""
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amend Counter"
-msgstr ""
+msgstr "Módosítás Számláló"
#. Name of a DocType
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
@@ -2171,7 +2195,7 @@ msgstr ""
#. 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
-msgstr ""
+msgstr "Módosított Dokumentumok"
#. Label of the amended_from (Link) field in DocType 'Personal Data Download
#. Request'
@@ -2188,7 +2212,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amendment Naming Override"
-msgstr ""
+msgstr "Módosítás Elnevezés Felülírása"
#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
@@ -2198,6 +2222,11 @@ msgstr "Módosítás nem engedélyezett"
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2205,7 +2234,7 @@ msgstr ""
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr ""
+msgstr "Egy ikon fájlt .ico kiterjesztéssel. Legyen 16 x 16 px. favicon generátor felhasználásával előállított. [favicon-generator.org]"
#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
@@ -2215,7 +2244,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr ""
+msgstr "Analitika"
#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
@@ -2225,13 +2254,13 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Announcement Widget"
-msgstr ""
+msgstr "Közlemény Widget"
#. Label of the announcements_section (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Announcements"
-msgstr ""
+msgstr "Közlemények"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -2242,12 +2271,12 @@ msgstr ""
#. Deletion Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Anonymization Matrix"
-msgstr ""
+msgstr "Anonimizálási Mátrix"
#. Label of the anonymous (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Anonymous responses"
-msgstr ""
+msgstr "Névtelen válaszok"
#: frappe/public/js/frappe/request.js:189
msgid "Another transaction is blocking this one. Please try again in a few seconds."
@@ -2260,7 +2289,7 @@ msgstr ""
#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr ""
+msgstr "Bármely karakterlánc-alapú nyomtatónyelv használható. A nyers parancsok írásához a nyomtató anyanyelvének ismerete szükséges, amelyet a nyomtató gyártója biztosít. A natív parancsok írásáról lásd a nyomtató gyártója által kiadott fejlesztői útmutatót. Ezeket a parancsokat a szerver oldalon a Jinja sablon nyelv használatával jelenítik meg."
#: frappe/core/page/permission_manager/permission_manager_help.html:36
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
@@ -2380,7 +2409,7 @@ msgstr "Alkalmazva"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2465,7 +2494,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2501,7 +2530,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2509,7 +2538,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2564,6 +2593,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2573,7 +2608,7 @@ msgstr "Feltétel Hozzárendelése"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2716,7 +2751,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2789,30 +2824,30 @@ msgstr "DocType-hoz Csatolás"
#. Label of the attached_to_field (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr ""
+msgstr "Mezőhöz Csatolt"
#. Label of the attached_to_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr ""
+msgstr "Névhez Csatolt"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment"
-msgstr ""
+msgstr "Csatolmány"
#. Label of the attachment_limit (Int) field in DocType 'Email Account'
#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr ""
+msgstr "Csatolmány Korlát (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2825,7 +2860,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr ""
+msgstr "Csatolmány Eltávolítva"
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -2834,11 +2869,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3696,15 +3731,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3928,7 +3963,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3988,7 +4023,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3996,7 +4031,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -4014,7 +4049,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4063,11 +4098,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -4111,11 +4146,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4178,8 +4213,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4191,11 +4226,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4203,7 +4238,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4219,7 +4254,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4248,11 +4283,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4525,11 +4560,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4558,6 +4593,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4584,7 +4620,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4661,24 +4697,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4856,7 +4892,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4911,7 +4947,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4967,11 +5003,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4998,7 +5034,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5213,8 +5249,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5262,7 +5298,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5287,7 +5323,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5306,7 +5342,7 @@ msgstr "Hozzáférés megerősítése"
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5351,8 +5387,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5403,6 +5439,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5466,7 +5506,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5555,7 +5595,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5564,7 +5604,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5588,7 +5628,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5641,13 +5681,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5679,13 +5720,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5699,7 +5740,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5733,12 +5774,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5746,7 +5787,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5769,8 +5810,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5786,7 +5827,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5796,7 +5837,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -6133,7 +6174,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6168,7 +6209,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6187,7 +6228,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6418,7 +6459,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6449,7 +6490,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6819,13 +6860,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6858,7 +6899,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6872,7 +6913,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6914,12 +6955,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6955,7 +6996,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6963,7 +7004,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Törölt!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7416,10 +7457,14 @@ msgstr "Ne hozzon létre új felhasználót"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7843,13 +7888,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7894,15 +7939,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -8044,7 +8089,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8077,7 +8122,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8173,7 +8218,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8277,8 +8322,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8290,7 +8335,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8300,7 +8345,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8329,7 +8374,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8347,7 +8392,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8449,7 +8494,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8494,6 +8539,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8512,6 +8559,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8631,6 +8680,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8742,7 +8792,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8785,7 +8835,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8793,7 +8843,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9221,7 +9271,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9249,9 +9299,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9271,19 +9321,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9432,7 +9482,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9458,12 +9508,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9521,13 +9571,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9720,7 +9770,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9728,7 +9778,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9884,7 +9934,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9967,7 +10017,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9985,7 +10035,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9998,7 +10048,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -10014,11 +10064,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10058,7 +10108,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -10066,7 +10116,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10094,7 +10144,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10160,7 +10210,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10168,7 +10218,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10177,11 +10227,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10195,8 +10245,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10235,11 +10285,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10316,7 +10366,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10364,8 +10414,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10446,7 +10500,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10553,7 +10607,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10649,7 +10703,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10690,7 +10744,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10934,7 +10988,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10996,12 +11050,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -11061,7 +11115,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -11076,7 +11130,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11283,10 +11337,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11481,14 +11531,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11548,7 +11594,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11653,7 +11699,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11782,7 +11828,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11818,7 +11864,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11930,7 +11976,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -12090,7 +12136,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12187,9 +12233,9 @@ msgstr "Ha a Szigorú felhasználói engedély be van jelölve, és a felhaszná
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12417,8 +12463,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12505,11 +12551,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12539,7 +12585,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12767,15 +12813,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12822,7 +12869,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12933,7 +12980,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12971,8 +13018,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13006,7 +13053,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13122,7 +13169,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13132,7 +13179,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13176,12 +13223,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13235,7 +13282,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13249,11 +13296,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13270,7 +13317,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13283,7 +13330,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:137
msgid "Invalid Values"
-msgstr ""
+msgstr "Érvénytelen Értékek"
#: frappe/integrations/doctype/webhook/webhook.py:120
msgid "Invalid Webhook Secret"
@@ -13293,7 +13340,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13301,19 +13348,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13321,11 +13368,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13341,23 +13388,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13369,11 +13416,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13381,11 +13428,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13422,23 +13469,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13542,7 +13593,7 @@ msgstr "Naptár és Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13595,6 +13646,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13621,8 +13676,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13678,7 +13738,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13714,7 +13774,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13920,11 +13980,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14214,7 +14274,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14222,10 +14282,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14313,8 +14376,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14460,7 +14527,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14510,7 +14577,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14538,7 +14605,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14555,7 +14622,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14848,7 +14915,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14887,7 +14954,7 @@ msgstr ""
#. Label of the list_setting_message (HTML) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "List setting message"
-msgstr ""
+msgstr "Lista beállítási üzenet"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Lists"
@@ -14899,7 +14966,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14919,7 +14986,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -15062,7 +15129,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -15070,7 +15137,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -15105,7 +15172,7 @@ msgstr ""
#: frappe/www/login.html:116
msgid "Login with Frappe Cloud"
-msgstr ""
+msgstr "Bejelentkezés Frappe Cloud Segítségével"
#: frappe/www/login.html:49
msgid "Login with LDAP"
@@ -15123,7 +15190,7 @@ msgstr "Bejelentkezés e-mail linkkel"
msgid "Login with email link expiry (in minutes)"
msgstr "Bejelentkezés e-mail linkkel lejárati idő (percben)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -15142,7 +15209,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15246,7 +15313,10 @@ msgid "Major"
msgstr "Major"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15320,9 +15390,9 @@ msgstr ""
#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
-msgstr ""
+msgstr "Kötelezően függ (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15334,11 +15404,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15497,7 +15567,7 @@ msgstr ""
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Max attachment size"
-msgstr ""
+msgstr "Max csatolmány méret"
#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
#. Settings'
@@ -15520,7 +15590,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15544,7 +15614,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15575,7 +15645,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
msgid "Memory Usage in MB"
-msgstr ""
+msgstr "Memóriahasználat MB-ban"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -15718,17 +15788,17 @@ msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta description"
-msgstr ""
+msgstr "Meta leírás"
#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta image"
-msgstr ""
+msgstr "Meta kép"
#. Label of the meta_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta title"
-msgstr ""
+msgstr "Meta cím"
#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
@@ -15763,7 +15833,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15779,6 +15849,11 @@ msgstr "Középső középpont"
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15849,7 +15924,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15885,6 +15960,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15910,7 +15990,7 @@ msgstr "Modális Kiváltó"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16086,10 +16166,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -16119,7 +16201,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16155,7 +16237,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16205,7 +16287,7 @@ msgstr "A '()'-ba kell zárni, és tartalmaznia kell a '{0}'-t, amely a felhaszn
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16223,7 +16305,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16263,7 +16345,7 @@ msgstr "MEGJEGYZÉS: Ez a mező már elavult. Kérjük, állítsa be újra az LD
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16367,12 +16449,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16387,6 +16469,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr "Navigációs Beállítások"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16395,7 +16481,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16408,6 +16494,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16416,7 +16508,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16477,7 +16569,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16512,7 +16604,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16608,7 +16700,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16760,7 +16852,7 @@ msgstr "Következő Kattintáskor"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16865,7 +16957,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16909,7 +17001,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16917,7 +17009,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16993,7 +17085,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -17017,7 +17109,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -17061,7 +17153,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -17073,7 +17165,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -17109,11 +17201,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17122,7 +17214,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17186,7 +17278,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17212,9 +17304,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17233,7 +17325,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17284,7 +17376,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17316,12 +17408,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17367,7 +17459,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17439,15 +17531,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17561,7 +17653,7 @@ msgstr "Lekérdezések Száma"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17833,7 +17925,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17922,11 +18014,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -18022,7 +18114,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18071,7 +18163,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -18117,6 +18209,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18125,6 +18218,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18154,7 +18248,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18170,7 +18264,7 @@ msgstr "Narancssárga"
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18186,7 +18280,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18268,7 +18362,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18301,10 +18395,6 @@ msgstr "PDF Oldalszélesség (mm-ben)"
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18516,7 +18606,7 @@ msgstr "Szülő DocType"
msgid "Parent Document Type"
msgstr "Szülő Dokumentum Típus"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18620,8 +18710,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18644,7 +18734,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18681,7 +18771,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18693,7 +18783,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18759,7 +18849,7 @@ msgstr "Payload Count"
#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Peak Memory Usage"
-msgstr ""
+msgstr "Csúcs Memória Használat"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
@@ -18844,7 +18934,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18904,16 +18994,16 @@ msgstr "Jogosultság Típusa"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18975,15 +19065,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18996,11 +19089,11 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19082,11 +19175,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19098,7 +19191,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -19138,7 +19231,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19154,11 +19247,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19167,7 +19260,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19282,7 +19375,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19290,15 +19383,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19322,7 +19415,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19352,7 +19445,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19372,7 +19465,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19386,7 +19479,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
-msgstr ""
+msgstr "Kérjük, állítsa be az alapértelmezett kimenő e-mail fiókot az Eszközök > E-mail fiók menüpontban"
#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
@@ -19487,7 +19580,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19515,6 +19608,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19523,7 +19617,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr "Közzététel Időbélyeg"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19538,6 +19632,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19579,14 +19677,14 @@ msgstr ""
#. Name of a report
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
msgid "Prepared Report Analytics"
-msgstr ""
+msgstr "Elkészített Jelentés Analitika"
#. Name of a role
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19721,13 +19819,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19797,7 +19895,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19836,7 +19934,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19854,7 +19952,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19978,11 +20076,11 @@ msgstr "Protipp: Hivatkozás hozzáadása: {{ reference_doctype }} {{ refe
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19999,11 +20097,21 @@ msgstr "Prof."
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr ""
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -20047,7 +20155,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20220,7 +20328,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20427,7 +20535,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20553,11 +20661,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20938,8 +21046,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20970,13 +21078,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21289,8 +21397,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21361,11 +21469,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21399,21 +21507,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21433,7 +21541,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21469,7 +21577,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21488,7 +21596,10 @@ msgid "Request Body"
msgstr "Kérés Törzse"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21540,6 +21651,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21595,7 +21711,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21603,11 +21719,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21642,7 +21758,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21782,7 +21898,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21894,7 +22010,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21904,7 +22020,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22049,7 +22165,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr "Útvonal: Példa: \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22057,12 +22173,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -22097,11 +22213,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -22120,7 +22236,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22173,11 +22292,11 @@ msgstr "Csak akkor futtassa az ütemezett feladatokat, ha be van jelölve"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
-msgstr ""
+msgstr "Futási Idő Percben"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Seconds"
-msgstr ""
+msgstr "Futási Idő Másodpercben"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
@@ -22213,7 +22332,7 @@ msgstr ""
#: frappe/core/doctype/sms_settings/sms_settings.py:114
msgid "SMS sent successfully"
-msgstr ""
+msgstr "SMS sikeresen elküldve"
#: frappe/templates/includes/login/login.js:369
msgid "SMS was not sent. Please contact Administrator."
@@ -22328,8 +22447,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22352,11 +22471,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22433,7 +22552,7 @@ msgstr ""
#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
#: frappe/core/doctype/scheduler_event/scheduler_event.json
msgid "Scheduled Against"
-msgstr ""
+msgstr "Ütemezett Időpont"
#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -22728,7 +22847,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22792,7 +22911,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22813,7 +22932,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22872,7 +22991,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22992,14 +23111,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23029,13 +23148,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23253,7 +23372,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr "Feladó E-mail Címe Mező"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23296,7 +23415,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "Elküldött Mappa Neve"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23357,7 +23476,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23423,7 +23542,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23432,14 +23551,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr "Munkamenet Lejárata (tétlenségi időkorlát)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23465,12 +23584,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23481,7 +23600,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23535,7 +23654,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23554,7 +23673,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23573,18 +23692,21 @@ msgstr "Felhasználó által beállítva"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23593,7 +23715,7 @@ msgstr "Csak egyszer állítsa be"
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Set size in MB"
-msgstr ""
+msgstr "Beállított méret MB-ban"
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
@@ -23718,7 +23840,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23737,7 +23859,7 @@ msgstr "Sorozatok Beállítása Tranzakciókhoz"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "Beállítás Sikertelen"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -23859,6 +23981,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23987,7 +24115,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24194,22 +24322,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24217,13 +24345,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24231,7 +24359,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24432,7 +24560,7 @@ msgstr ""
#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\""
-msgstr ""
+msgstr "Néhány postafiókhoz eltérő Elküldött mappanév szükséges, pl. \"INBOX.Sent\""
#: frappe/public/js/frappe/desk.js:20
msgid "Some of the features might not work in your browser. Please update your browser to the latest version."
@@ -24491,7 +24619,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24551,15 +24679,15 @@ msgstr ""
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "Adja meg azokat a tartományokat vagy eredeteket, amelyek beágyazhatják ezt az űrlapot. Adjon meg soronként egy tartományt (pl. https://example.com). Ha nem ad meg tartományt, az űrlap csak ugyanazon az eredeten ágyazható be."
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
msgstr "Nyitókép"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24591,7 +24719,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24607,7 +24735,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24725,6 +24853,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24860,7 +24989,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24890,7 +25019,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr "Csatolt PDF Dokumentum Tárolása"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24988,7 +25117,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25002,6 +25131,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25010,10 +25140,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25023,7 +25154,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -25055,7 +25186,7 @@ msgstr ""
#. Label of the button_label (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Submit button label"
-msgstr ""
+msgstr "Beküldés gomb címkéje"
#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -25071,7 +25202,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25121,7 +25252,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25156,12 +25287,12 @@ msgstr ""
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success message"
-msgstr ""
+msgstr "Sikeres művelet üzenetet"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "Siker címe"
#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -25299,7 +25430,7 @@ msgstr ""
#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Sync events from Google as public"
-msgstr ""
+msgstr "Események szinkronizálása a Google-ból nyilvánosként"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
@@ -25336,7 +25467,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25647,7 +25778,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25862,7 +25993,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25878,13 +26009,13 @@ msgstr "A Google Cloud Console-ból a alatt lekérdezett projektszám"
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -26046,7 +26177,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26058,7 +26189,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26119,12 +26250,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -26148,11 +26279,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26164,7 +26295,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26221,7 +26352,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26229,6 +26360,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26254,6 +26389,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26272,7 +26412,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26318,7 +26458,7 @@ msgstr "Ez a mező csak akkor jelenik meg, ha az itt definiált mezőnév tartal
"eval:doc.myfield=='Saját Érték'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26353,7 +26493,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26403,7 +26543,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26411,7 +26551,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26475,7 +26615,7 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
-msgstr ""
+msgstr "Ez azonnal megszakítja a feladatot, és veszélyes lehet, biztos benne?"
#: frappe/core/doctype/user/user.py:1255
msgid "Throttled"
@@ -26553,9 +26693,11 @@ msgstr "Időablak (másodperc)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26822,7 +26964,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26897,7 +27039,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26977,7 +27119,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
-msgstr ""
+msgstr "Első 10"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
@@ -27023,7 +27165,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -27146,7 +27288,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27182,9 +27324,9 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
-msgstr ""
+msgstr "Adatok Fordítása"
#. Label of the translated_doctype (Check) field in DocType 'DocType'
#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
@@ -27344,7 +27486,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27438,7 +27580,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27541,7 +27683,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27550,7 +27692,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27566,7 +27708,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27613,7 +27755,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27679,8 +27821,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27714,7 +27856,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27748,6 +27890,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27806,7 +27953,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27845,7 +27992,7 @@ msgstr ""
#: frappe/public/js/billing.bundle.js:131
msgid "Upgrade plan"
-msgstr ""
+msgstr "Díjcsomag Bővítése"
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
@@ -27963,11 +28110,7 @@ msgstr "Használjon más E-mail azonosítót"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28189,12 +28332,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28338,7 +28481,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28466,8 +28609,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28499,7 +28642,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28515,11 +28658,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28544,7 +28687,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28636,19 +28779,19 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
#: frappe/core/doctype/file/file.js:4
msgid "View File"
-msgstr ""
+msgstr "Fájl Megtekintése"
#: frappe/public/js/frappe/ui/notifications/notifications.js:220
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28658,7 +28801,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28774,6 +28917,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28868,7 +29012,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29256,9 +29400,9 @@ msgstr ""
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
-msgstr ""
+msgstr "Az inaktív webhelyek esetében az ütemezett feladatok csak naponta egyszer fognak futni. Állítsa 0-ra, hogy elkerülje az ütemező automatikus kikapcsolását."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29419,7 +29563,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29512,7 +29656,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29541,7 +29685,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29603,7 +29747,7 @@ msgstr "Sárga"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29639,6 +29783,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29649,7 +29797,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
msgid "You are not allowed to access this resource"
-msgstr ""
+msgstr "Nincs hozzáférésed ehhez az erőforráshoz"
#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
@@ -29677,12 +29825,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29690,7 +29838,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29763,11 +29911,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29789,7 +29937,7 @@ msgstr ""
#: frappe/handler.py:183
msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
-msgstr ""
+msgstr "Csak JPG, PNG, PDF, TXT, CSV vagy Microsoft dokumentumokat tölthet fel."
#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
@@ -29803,7 +29951,7 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "You can set a high value here if multiple users will be logging in from the same network."
-msgstr ""
+msgstr "Itt magas értéket állíthat be, ha több felhasználó fog bejelentkezni ugyanarról a hálózatról."
#: frappe/desk/query_report.py:382
msgid "You can try changing the filters of your report."
@@ -29817,11 +29965,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29839,7 +29987,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29882,15 +30030,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29902,11 +30050,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29926,7 +30074,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29954,7 +30102,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29971,21 +30119,21 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
-msgstr ""
+msgstr "A művelet végrehajtásához szükséged van a '{0}' engedélyre a {1} {2} fiókon."
#: frappe/desk/doctype/workspace/workspace.py:127
msgid "You need to be Workspace Manager to delete a public workspace."
-msgstr ""
+msgstr "Nyilvános munkaterület törléséhez munkaterület-kezelőnek kell lenned."
#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
@@ -29999,7 +30147,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -30037,11 +30185,11 @@ msgstr ""
#: frappe/model/rename_doc.py:391
msgid "You need write permission on {0} {1} to merge"
-msgstr ""
+msgstr "Írási jogosultság szükséges a {0} {1} oldalon az egyesítéshez"
#: frappe/model/rename_doc.py:386
msgid "You need write permission on {0} {1} to rename"
-msgstr ""
+msgstr "Írási jogosultság szükséges a {0} {1} oldalon az átnevezéshez"
#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
@@ -30090,6 +30238,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -30135,7 +30287,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30197,11 +30349,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30225,7 +30377,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358
msgid "[Action taken by {0}]"
-msgstr ""
+msgstr "[ {0} által végrehajtott művelet]"
#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -30509,7 +30661,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30538,7 +30690,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30876,7 +31028,7 @@ msgstr ""
msgid "via Google Meet"
msgstr "Google Meet-en keresztül"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30986,7 +31138,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31027,7 +31179,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31037,7 +31189,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -31093,7 +31245,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -31110,7 +31262,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31125,7 +31277,7 @@ msgstr ""
#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
-msgstr ""
+msgstr "{0} nem módosítható, mert nincs visszavonva. Kérjük, törölje a dokumentumot a módosítás létrehozása előtt."
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
@@ -31187,7 +31339,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31232,7 +31384,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31281,7 +31433,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31301,12 +31453,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31314,11 +31466,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31338,7 +31490,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31362,7 +31514,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31372,8 +31524,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31386,7 +31538,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31429,31 +31581,31 @@ msgstr ""
#: frappe/model/document.py:1564
msgid "{0} must be beginning with '{1}'"
-msgstr ""
+msgstr "{0} a '{1}' kezdetűnek kell lennie."
#: frappe/model/document.py:1566
msgid "{0} must be equal to '{1}'"
-msgstr ""
+msgstr "{0} egyenlőnek kell lennie '{1}'"
#: frappe/model/document.py:1562
msgid "{0} must be none of {1}"
-msgstr ""
+msgstr "{0} nem lehet a(z) {1} egyike sem"
#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
#: frappe/model/document.py:1568
msgid "{0} must be {1} {2}"
-msgstr ""
+msgstr "{0} kell lennie {1} {2}"
#: frappe/core/doctype/language/language.py:79
msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
@@ -31472,11 +31624,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31526,13 +31678,13 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
#: frappe/model/document.py:1799
msgid "{0} row #{1}:"
-msgstr ""
+msgstr "{0}, sor #{1}:"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299
msgctxt "User removed rows from child table"
@@ -31600,7 +31752,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31636,11 +31788,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31660,47 +31812,47 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "{0}/{1} complete | Please leave this tab open until completion."
-msgstr ""
+msgstr "{0}/{1} kész | Kérjük, hagyja ezt a fület nyitva a befejezésig."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31728,11 +31880,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31752,7 +31904,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31773,7 +31925,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31809,11 +31961,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31839,7 +31991,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/id.po b/frappe/locale/id.po
index ceb7a00e8d..ce8c313ad5 100644
--- a/frappe/locale/id.po
+++ b/frappe/locale/id.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}"
@@ -86,11 +86,11 @@ msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}"
msgid "'Recipients' not specified"
msgstr "'Penerima' belum ditentukan"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -140,11 +140,11 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr "1 Acara Kalender Google disinkronkan."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr ""
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 jam yang lalu"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 menit yang lalu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 bulan lalu"
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 minggu yang lalu"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 tahun yang lalu"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr ""
@@ -231,7 +231,7 @@ msgstr ""
msgid "5 Records"
msgstr "5 catatan"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -267,6 +267,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,11 +578,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -694,7 +709,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -713,7 +728,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -737,7 +752,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -823,7 +838,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Akses tidak diizinkan dari Alamat IP ini"
@@ -939,7 +954,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Tindakan"
@@ -996,7 +1011,7 @@ msgstr "Log Aktivitas"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1007,7 +1022,7 @@ msgstr "Log Aktivitas"
msgid "Add"
msgstr "Tambahkan"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1039,7 +1054,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1052,8 +1067,8 @@ msgid "Add Child"
msgstr "Tambah Anak"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1147,7 +1162,7 @@ msgstr "Tambahkan Pelanggan"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1322,6 +1337,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1330,6 +1346,7 @@ msgstr "Alamat"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Baris Alamat 1"
@@ -1337,6 +1354,7 @@ msgstr "Baris Alamat 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Baris Alamat 2"
@@ -1498,7 +1516,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1525,11 +1543,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1976,6 +1994,12 @@ msgstr "Juga menambahkan bidang dependensi status {0}"
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2052,6 +2076,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Terjadi kesalahan saat mengatur Sesi Default"
@@ -2234,7 +2263,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Terapkan Aturan Penugasan"
@@ -2319,7 +2348,7 @@ msgstr "Kolom diarsipkan"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2355,7 +2384,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2363,7 +2392,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2418,6 +2447,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2427,7 +2462,7 @@ msgstr ""
msgid "Assign To"
msgstr "Tugaskan Kepada"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tugaskan Kepada"
@@ -2570,7 +2605,7 @@ msgstr "Tugas"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2650,7 +2685,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2666,7 +2701,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2688,11 +2723,11 @@ msgstr ""
msgid "Attachments"
msgstr "Lampiran"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Mencoba Koneksi ke Baki QZ ..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Mencoba meluncurkan QZ Tray ..."
@@ -3550,15 +3585,15 @@ msgstr "Hapus Massal"
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Sunting Massal {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3782,7 +3817,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3842,7 +3877,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3850,7 +3885,7 @@ msgstr ""
msgid "Cancel"
msgstr "Batalkan"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Batalkan"
@@ -3868,7 +3903,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "Batalkan Semua Dokumen"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Batalkan {0} dokumen?"
@@ -3917,11 +3952,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr "Tidak bisa Hapus"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3965,11 +4000,11 @@ msgstr "tidak dapat membuat {0} terhadap dokumen anak: {1}"
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Tidak dapat menghapus Rumah dan Lampiran folder"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Tidak dapat menghapus atau membatalkan karena {0} {1} dikaitkan dengan {2} {3} {4}"
@@ -4032,8 +4067,8 @@ msgstr "Tidak dapat mengedit dokumen dibatalkan"
msgid "Cannot edit filters for standard charts"
msgstr "Tidak dapat mengedit filter untuk bagan standar"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4045,11 +4080,11 @@ msgstr "Tidak dapat mengedit bidang standar"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4057,7 +4092,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4073,7 +4108,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Tidak dapat memindahkan baris"
@@ -4102,11 +4137,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr "Tidak dapat memperbarui {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4378,11 +4413,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4411,6 +4446,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Kota"
@@ -4437,7 +4473,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4514,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Klik pada {0} untuk menghasilkan Refresh Token."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klik tabel untuk mengedit"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4709,7 +4745,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Jatuh"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Perkecil Semua"
@@ -4764,7 +4800,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4820,11 +4856,11 @@ msgstr "Kolom Nama"
msgid "Column Name cannot be empty"
msgstr "Nama kolom tidak boleh kosong"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4851,7 +4887,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Kolom berdasarkan"
@@ -5066,8 +5102,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5115,7 +5151,7 @@ msgstr ""
msgid "Configure Chart"
msgstr "Konfigurasikan Bagan"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5140,7 +5176,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Menegaskan"
@@ -5159,7 +5195,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Konfirmasi password baru"
@@ -5204,8 +5240,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Terhubung ke Baki QZ!"
@@ -5256,6 +5292,10 @@ msgstr ""
msgid "Contact"
msgstr "Kontak"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5319,7 +5359,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5408,7 +5448,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5417,7 +5457,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Core DocTypes tidak dapat dikustomisasi."
@@ -5441,7 +5481,7 @@ msgstr "Tidak dapat menemukan {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5494,13 +5534,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Negara"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5532,13 +5573,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Buat"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5552,7 +5593,7 @@ msgid "Create Card"
msgstr "Buat Kartu"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Buat Bagan"
@@ -5586,12 +5627,12 @@ msgstr ""
msgid "Create New"
msgstr "Buat New"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Buat New"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5599,7 +5640,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Buat Email Pengguna"
@@ -5622,8 +5663,8 @@ msgstr "Buat catatan baru"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Buat baru {0}"
@@ -5639,7 +5680,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Buat {0} pertama Anda"
@@ -5649,7 +5690,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5986,7 +6027,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Kustom?"
@@ -6021,7 +6062,7 @@ msgstr "Penyesuaian untuk {0} diekspor ke:
{1}"
msgid "Customize"
msgstr "Sesuaikan"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Sesuaikan"
@@ -6040,7 +6081,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Sesuaikan Form"
@@ -6271,7 +6312,7 @@ msgstr ""
msgid "Data Import Template"
msgstr "Impor Template Data"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Data Terlalu Panjang"
@@ -6302,7 +6343,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6672,13 +6713,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Hapus"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Hapus"
@@ -6711,7 +6752,7 @@ msgstr ""
msgid "Delete Data"
msgstr "Hapus Data"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6725,7 +6766,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6767,12 +6808,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Hapus {0} item secara permanen?"
@@ -6808,7 +6849,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6816,7 +6857,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Dihapus!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Menghapus {0}"
@@ -7269,10 +7310,14 @@ msgstr "Jangan Buat Pengguna Baru"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Jangan edit header yang sudah ada di template"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7696,13 +7741,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Jenis Dokumen"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7747,15 +7792,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7897,7 +7942,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7930,7 +7975,7 @@ msgstr "Unduh Tautan"
msgid "Download PDF"
msgstr "Unduh PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Unduh Laporan"
@@ -8026,7 +8071,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr "Nama filter duplikat"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nama Duplikat"
@@ -8130,8 +8175,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8143,7 +8188,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8153,7 +8198,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8182,7 +8227,7 @@ msgstr "Mengedit Custom HTML"
msgid "Edit DocType"
msgstr "mengedit DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "mengedit DocType"
@@ -8200,7 +8245,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Mengedit Format"
@@ -8302,7 +8347,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "diedit Grid"
@@ -8347,6 +8392,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8365,6 +8412,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "Surel"
@@ -8484,6 +8533,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Id Email"
@@ -8595,7 +8645,7 @@ msgstr "Email telah ditandai sebagai spam"
msgid "Email has been moved to trash"
msgstr "Email telah dipindahkan ke sampah"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8638,7 +8688,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8646,7 +8696,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9074,7 +9124,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Kesalahan menyambung ke Aplikasi Baki QZ ...
Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.
Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ."
@@ -9102,9 +9152,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Kesalahan dalam Notifikasi"
@@ -9124,19 +9174,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr "Kesalahan saat menyambung ke akun email {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Kesalahan: Nilai yang hilang untuk {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9285,7 +9335,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Waktu Eksekusi: {0} dtk"
@@ -9311,12 +9361,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Memperluas"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Melebarkan semua"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9374,13 +9424,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Ekspor"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Ekspor"
@@ -9573,7 +9623,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr "Gagal terhubung ke server"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid."
@@ -9581,7 +9631,7 @@ msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid."
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9737,7 +9787,7 @@ msgstr "Mengambil dokumen Penelusuran Global default."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9820,7 +9870,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr "Bidang {0} tidak ditemukan"
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9838,7 +9888,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9851,7 +9901,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fieldname dibatasi 64 karakter ({0})"
@@ -9867,11 +9917,11 @@ msgstr "Fieldname yang akan menjadi DocType untuk bidang link ini."
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Fieldname {0} bertentangan dengan objek meta"
@@ -9911,7 +9961,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9919,7 +9969,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9947,7 +9997,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}"
@@ -10013,7 +10063,7 @@ msgstr ""
msgid "File backup is ready"
msgstr "File cadangan sudah siap"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Nama file tidak boleh memuat {0}"
@@ -10021,7 +10071,7 @@ msgstr "Nama file tidak boleh memuat {0}"
msgid "File not attached"
msgstr "Berkas tidak terpasang"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB"
@@ -10030,11 +10080,11 @@ msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB"
msgid "File too big"
msgstr "File terlalu besar"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Berkas {0} tidak ada"
@@ -10048,8 +10098,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10088,11 +10138,11 @@ msgstr "Nama filter"
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10169,7 +10219,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr "Filter diterapkan untuk {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "filter tersimpan"
@@ -10217,8 +10267,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Nama Depan"
@@ -10299,7 +10353,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr "Nama folder tidak boleh menyertakan '/' (garis miring)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Folder {0} tidak kosong"
@@ -10406,7 +10460,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10501,7 +10555,7 @@ msgstr "untuk Pengguna"
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)."
@@ -10542,7 +10596,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr "Untuk memperbarui, Anda hanya dapat memperbarui kolom tertentu."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}"
@@ -10786,7 +10840,7 @@ msgstr "Dari Tanggal"
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Dari Jenis Dokumen"
@@ -10848,13 +10902,13 @@ msgstr "Fungsi Berdasarkan"
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -10913,7 +10967,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Hasilkan Laporan Baru"
@@ -10928,7 +10982,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11135,10 +11189,6 @@ msgstr ""
msgid "Google Calendar"
msgstr "Kalender Google"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalender - Tidak dapat membuat Kalender untuk {0}, kode kesalahan {1}."
@@ -11333,14 +11383,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr "Kolom Group By diperlukan untuk membuat bagan dasbor"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Node Grup"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11400,7 +11446,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11505,7 +11551,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "Set HTML header dari lampiran {0}"
@@ -11634,7 +11680,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11670,7 +11716,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11782,7 +11828,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11942,7 +11988,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12039,9 +12085,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Jika Owner"
@@ -12269,8 +12315,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr "Status Dokumen Ilegal untuk {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Query SQL Ilegal"
@@ -12357,11 +12403,11 @@ msgstr "Gambar"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12391,7 +12437,7 @@ msgstr ""
msgid "Import"
msgstr "Impor"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Impor"
@@ -12619,15 +12665,16 @@ msgstr "Sertakan Tema dari Aplikasi"
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Termasuk lekukan"
@@ -12674,7 +12721,7 @@ msgstr "Akun email masuk tidak benar"
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Rincian login tidak lengkap"
@@ -12785,7 +12832,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Masukkan Setelah"
@@ -12823,8 +12870,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12858,7 +12905,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Izin tidak cukup untuk {0}"
@@ -12974,7 +13021,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12984,7 +13031,7 @@ msgstr "Ekspresi "depend_on" tidak valid"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ekspresi "depend_on" tidak valid yang disetel dalam filter {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13028,12 +13075,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13087,7 +13134,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr "Output Format valid"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13101,11 +13148,11 @@ msgstr ""
msgid "Invalid Password"
msgstr "kata sandi salah"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Permintaan tidak valid"
@@ -13122,7 +13169,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13145,7 +13192,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13153,19 +13200,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13173,11 +13220,11 @@ msgstr ""
msgid "Invalid column"
msgstr "Kolom tidak valid"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13193,23 +13240,23 @@ msgstr "Persamaan tidak valid disetel dalam filter {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Persamaan tidak valid ditetapkan dalam filter {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Nama bidang tidak valid {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13221,11 +13268,11 @@ msgstr "fieldname tidak valid '{0}' di autoname"
msgid "Invalid file path: {0}"
msgstr "Path file tidak valid: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13233,11 +13280,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Filter tidak valid: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13274,23 +13321,27 @@ msgstr "Konten tidak valid atau rusak untuk diimpor"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13394,7 +13445,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Apakah Anak Table"
@@ -13447,6 +13498,10 @@ msgstr ""
msgid "Is Global"
msgstr "Apakah global"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Apakah Group?"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13473,8 +13528,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13530,7 +13590,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Tunggal"
@@ -13566,7 +13626,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Apakah Submittable"
@@ -13772,11 +13832,11 @@ msgstr "Kolom papan Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Nama papan kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14066,7 +14126,7 @@ msgstr "Label adalah wajib"
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Pemandangan"
@@ -14074,10 +14134,13 @@ msgstr "Pemandangan"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Bahasa"
@@ -14165,8 +14228,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Nama Belakang"
@@ -14312,7 +14379,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Panjang {0} harus antara 1 dan 1000"
@@ -14362,7 +14429,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14390,7 +14457,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14407,7 +14474,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14700,7 +14767,7 @@ msgstr "Daftar filter"
msgid "List Settings"
msgstr "Pengaturan Daftar"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Pengaturan Daftar"
@@ -14751,7 +14818,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Muat lebih banyak"
@@ -14771,7 +14838,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Memuat"
@@ -14914,7 +14981,7 @@ msgstr "Kode Verifikasi Masuk dari {}"
msgid "Login and view in Browser"
msgstr "Login dan lihat di Browser"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14922,7 +14989,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Login tidak diizinkan untuk saat ini"
@@ -14975,7 +15042,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14994,7 +15061,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Keluar dari Semua Sesi"
@@ -15098,7 +15165,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15174,7 +15244,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Informasi wajib hilang:"
@@ -15186,11 +15256,11 @@ msgstr "bidang wajib: menetapkan peran untuk"
msgid "Mandatory field: {0}"
msgstr "bidang wajib: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Bidang wajib yang dibutuhkan dalam {0}"
@@ -15372,7 +15442,7 @@ msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}"
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15396,7 +15466,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15615,7 +15685,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15631,6 +15701,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15701,7 +15776,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "hilang Fields"
@@ -15737,6 +15812,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Nomor handphone"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15762,7 +15842,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15938,10 +16018,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -15971,7 +16053,7 @@ msgstr ""
msgid "Move"
msgstr "Bergerak"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Pindah ke"
@@ -16007,7 +16089,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Pindah ke Nomor Baris"
@@ -16057,7 +16139,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Harus memiliki ijin laporan untuk mengakses laporan ini."
@@ -16075,7 +16157,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16115,7 +16197,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16217,12 +16299,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigasikan daftar ke bawah"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigasikan daftar ke atas"
@@ -16237,6 +16319,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16245,7 +16331,7 @@ msgstr ""
msgid "Negative Value"
msgstr "Nilai Negatif"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16258,6 +16344,12 @@ msgstr "Bersarang kesalahan set. Silahkan hubungi Administrator."
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16266,7 +16358,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16327,7 +16419,7 @@ msgstr "Acara baru"
msgid "New Folder"
msgstr "Folder baru"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Papan Kanban baru"
@@ -16362,7 +16454,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Kata sandi Baru"
@@ -16458,7 +16550,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16610,7 +16702,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16715,7 +16807,7 @@ msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}"
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Tidak ada izin yang ditentukan"
@@ -16759,7 +16851,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16767,7 +16859,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Tidak ada Tags"
@@ -16843,7 +16935,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16867,7 +16959,7 @@ msgstr "Tidak ada catatan lebih lanjut"
msgid "No matching records. Search something new"
msgstr "Tidak ada catatan yang cocok. Cari sesuatu yang baru"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Tidak ada lagi item untuk ditampilkan"
@@ -16911,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Tidak ada izin untuk '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Tidak ada izin untuk membaca {0}"
@@ -16923,7 +17015,7 @@ msgstr "Tidak ada izin untuk {0} {1} {2}"
msgid "No records deleted"
msgstr "Tidak ada catatan yang dihapus"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Tidak ada catatan di {0}"
@@ -16959,11 +17051,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16972,7 +17064,7 @@ msgid "No {0} mail"
msgstr "Tidak ada {0} email"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17036,7 +17128,7 @@ msgstr "Bukan Descendants Of"
msgid "Not Equals"
msgstr "Tidak sama dengan"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Tidak ditemukan"
@@ -17062,9 +17154,9 @@ msgstr "Tidak terkait dengan catatan apapun"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17083,7 +17175,7 @@ msgstr "Tidak Diterbitkan"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17134,7 +17226,7 @@ msgstr "Tidak aktif"
msgid "Not allowed for {0}: {1}"
msgstr "Tidak diizinkan untuk {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Tidak diizinkan melampirkan dokumen {0}, harap aktifkan Izinkan Pencetakan Untuk {0} di Setelan Cetak"
@@ -17166,12 +17258,12 @@ msgstr "Tidak dalam Mode Developer"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat DOCTYPE 'Custom'."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Tidak diperbolehkan"
@@ -17217,7 +17309,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17289,15 +17381,15 @@ msgstr "Pemberitahuan Dokumen Berlangganan"
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17411,7 +17503,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17683,7 +17775,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah."
@@ -17772,11 +17864,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17872,7 +17964,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Buka item daftar"
@@ -17921,7 +18013,7 @@ msgstr ""
msgid "Operation"
msgstr "Operasi"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Operator harus menjadi salah satu dari {0}"
@@ -17967,6 +18059,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17975,6 +18068,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18004,7 +18098,7 @@ msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan."
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Pilihan tidak diatur untuk bidang tautan {0}"
@@ -18020,7 +18114,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18036,7 +18130,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orientasi"
@@ -18118,7 +18212,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18151,10 +18245,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "Generasi PDF gagal"
@@ -18366,7 +18456,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18470,8 +18560,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18494,7 +18584,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18531,7 +18621,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18543,7 +18633,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Sandi tidak cocok!"
@@ -18694,7 +18784,7 @@ msgstr "Kirim permanen {0}?"
msgid "Permanently delete {0}?"
msgstr "Secara permanen menghapus {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Kesalahan izin"
@@ -18754,16 +18844,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Otorisasi"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18825,15 +18915,18 @@ msgstr "Permintaan Unduhan Data Pribadi"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18846,11 +18939,11 @@ msgstr "Telepon"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18932,11 +19025,11 @@ msgstr "Minta administrator untuk memverifikasi Anda sign-up"
msgid "Please attach a file first."
msgstr "Harap melampirkan file pertama."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18948,7 +19041,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Harap periksa nilai set "Ambil Dari" untuk bidang {0}"
@@ -18988,7 +19081,7 @@ msgstr "Harap konfirmasikan tindakan Anda ke {0} dokumen ini."
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Harap buat Kartu terlebih dahulu"
@@ -19004,11 +19097,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr "Harap jangan mengubah judul Template."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Silakan duplikat ini untuk membuat perubahan"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19017,7 +19110,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Aktifkan pop-up"
@@ -19132,7 +19225,7 @@ msgstr "Harap menyimpan laporan pertama"
msgid "Please save to edit the template."
msgstr "Harap simpan untuk mengedit template."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Silakan pilih DOCTYPE pertama"
@@ -19140,15 +19233,15 @@ msgstr "Silakan pilih DOCTYPE pertama"
msgid "Please select Entity Type first"
msgstr "Silakan pilih Tipe Entitas terlebih dahulu"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Harap pilih Skor Minimum Kata Sandi"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19172,7 +19265,7 @@ msgstr "Pilih filter tanggal yang valid"
msgid "Please select applicable Doctypes"
msgstr "Silakan pilih DOCTYPE yang berlaku"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group"
@@ -19202,7 +19295,7 @@ msgstr "Silahkan tetapkan Alamat Email"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Silakan atur pemetaan printer untuk format cetak ini di Pengaturan Printer"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Silakan set filter"
@@ -19222,7 +19315,7 @@ msgstr "Harap tetapkan dokumen berikut di Dasbor ini sebagai standar terlebih da
msgid "Please set the series to be used."
msgstr "Silakan mengatur seri yang akan digunakan."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui Pengaturan SMS"
@@ -19337,7 +19430,7 @@ msgstr ""
msgid "Portal Settings"
msgstr "Pengaturan Portal"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Potret"
@@ -19365,6 +19458,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "kode Pos"
@@ -19373,7 +19467,7 @@ msgstr "kode Pos"
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19388,6 +19482,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Presisi harus antara 1 dan 6"
@@ -19436,7 +19534,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Pengguna Laporan yang Disiapkan"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19571,13 +19669,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Mencetak"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Mencetak"
@@ -19647,7 +19745,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19686,7 +19784,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Cetak Terkirim ke printer!"
@@ -19704,7 +19802,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Pengaturan Cetak"
@@ -19828,11 +19926,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Tetap melanjutkan"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Pengolahan"
@@ -19849,11 +19947,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil berhasil diperbarui."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Kemajuan"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Proyek"
@@ -19897,7 +20005,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20070,7 +20178,7 @@ msgstr "Kode QR"
msgid "QR Code for Login Verification"
msgstr "Kode QR untuk Verifikasi Login"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20277,7 +20385,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Perintah Mentah"
@@ -20403,11 +20511,11 @@ msgstr ""
msgid "Reason"
msgstr "Alasan"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Membangun kembali"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20788,8 +20896,8 @@ msgstr "Perujuk"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20820,13 +20928,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Refreshing ..."
@@ -21139,8 +21247,8 @@ msgstr "Membalas semua"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21211,11 +21319,11 @@ msgstr "Manajer Laporan"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Nama Laporan"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21249,21 +21357,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Laporan tidak dapat ditetapkan untuk jenis Tunggal"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Laporan"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Laporan tidak memiliki bidang numerik, harap ubah Nama Laporan"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21283,7 +21391,7 @@ msgstr "Laporan berhasil diperbarui"
msgid "Report was not saved (there were errors)"
msgstr "Laporan tidak disimpan (ada kesalahan)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Laporan dengan lebih dari 10 kolom terlihat lebih baik dalam mode Lansekap."
@@ -21319,7 +21427,7 @@ msgstr "Laporan"
msgid "Reports & Masters"
msgstr "Laporan & Master"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Laporan sudah dalam Antrian"
@@ -21338,7 +21446,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21390,6 +21501,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21445,7 +21561,7 @@ msgstr ""
msgid "Reset Fields"
msgstr "Setel Ulang Bidang"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Setel ulang Kata Sandi LDAP"
@@ -21453,11 +21569,11 @@ msgstr "Setel ulang Kata Sandi LDAP"
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Setel ulang OTP Secret"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21492,7 +21608,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21632,7 +21748,7 @@ msgstr "Kembali ke layar Verifikasi dan masukkan kode yang ditampilkan oleh apli
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Mengembalikan panjang ke {0} untuk '{1}' dalam '{2}'. Menyetel panjang sebagai {3} akan menyebabkan pemotongan data."
@@ -21744,7 +21860,7 @@ msgstr "Peran Izin Page dan Laporan"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Izin peran"
@@ -21754,7 +21870,7 @@ msgstr "Izin peran"
msgid "Role Permissions Manager"
msgstr "Pengelola Perizinan Peran"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Pengelola Perizinan Peran"
@@ -21899,7 +22015,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Baris"
@@ -21907,12 +22023,12 @@ msgstr "Baris"
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Row # {0}:"
@@ -21947,11 +22063,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar"
@@ -21970,7 +22086,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22178,8 +22297,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22202,11 +22321,11 @@ msgstr "Disimpan Sebagai"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Menyimpan laporan"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Simpan filter"
@@ -22578,7 +22697,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Lihat semua laporan sebelumnya."
@@ -22642,7 +22761,7 @@ msgstr "Pilih"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22663,7 +22782,7 @@ msgid "Select Column"
msgstr "Pilih Kolom"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Pilih Kolom"
@@ -22722,7 +22841,7 @@ msgstr "Pilih Bidang"
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Pilih Fields"
@@ -22842,14 +22961,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Pilih simpul kelompok terlebih dahulu."
+msgid "Select a group {0} first."
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Pilih Bidang Pengirim yang valid untuk membuat dokumen dari Email"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email"
@@ -22879,13 +22998,13 @@ msgstr "Pilih minimal 1 record untuk pencetakan"
msgid "Select atleast 2 actions"
msgstr "Pilih minimal 2 tindakan"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Pilih item daftar"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Pilih beberapa item daftar"
@@ -23103,7 +23222,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Sender Field harus memiliki opsi Email in"
@@ -23207,7 +23326,7 @@ msgstr "Seri {0} sudah digunakan dalam {1}"
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "server error"
@@ -23273,7 +23392,7 @@ msgstr "Default Sesi"
msgid "Session Defaults Saved"
msgstr "Default Sesi Disimpan"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Sesi berakhir"
@@ -23282,14 +23401,14 @@ msgstr "Sesi berakhir"
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Sesi kadaluarsa harus dalam format {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Tetapkan"
@@ -23315,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Setel Filter Dinamis"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23331,7 +23450,7 @@ msgstr "Tetapkan Filter"
msgid "Set Filters for {0}"
msgstr "Setel Filter untuk {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23385,7 +23504,7 @@ msgstr "Set Kuantitas"
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23404,7 +23523,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Set sebagai Default"
@@ -23423,18 +23542,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23544,7 +23666,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Atur Email Otomatis"
@@ -23685,6 +23807,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23813,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Tampilkan Tag"
@@ -24020,22 +24148,22 @@ msgstr "Pendaftaran Dinonaktifkan"
msgid "Signups have been disabled for this website."
msgstr "Pendaftaran telah dinonaktifkan untuk situs web ini."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24043,13 +24171,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Single DocTypes tidak dapat dikustomisasi."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles"
@@ -24057,7 +24185,7 @@ msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Ukuran"
@@ -24317,7 +24445,7 @@ msgstr "bidang semacam {0} harus fieldname valid"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24384,8 +24512,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "sr"
@@ -24417,7 +24545,7 @@ msgstr ""
msgid "Standard"
msgstr "Standar"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24433,7 +24561,7 @@ msgstr "Standar Tidak Ditetapkan"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Format Cetak Standar tidak dapat diperbarui"
@@ -24551,6 +24679,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24686,7 +24815,7 @@ msgstr "Langkah untuk memverifikasi login anda"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24716,7 +24845,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24814,7 +24943,7 @@ msgstr "Perihal"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Jenis Bidang Subjek harus Data, Teks, Teks Panjang, Teks Kecil, Editor Teks"
@@ -24828,6 +24957,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24836,10 +24966,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Kirim"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Kirim"
@@ -24849,7 +24980,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Kirim"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Kirim"
@@ -24897,7 +25028,7 @@ msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini."
msgid "Submit this document to confirm"
msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Kirim {0} dokumen?"
@@ -24947,7 +25078,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25162,7 +25293,7 @@ msgstr "Sinkronisasi"
msgid "Syncing {0} of {1}"
msgstr "Menyinkronkan {0} dari {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25473,7 +25604,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabel diperbarui"
@@ -25688,7 +25819,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr "Ulangi Otomatis untuk dokumen ini telah dinonaktifkan."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "Format CSV bersifat case sensitive"
@@ -25703,7 +25834,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr "Kondisi '{0}' tidak valid"
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25756,7 +25887,7 @@ msgstr "Komentar tidak boleh kosong"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25786,7 +25917,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25857,7 +25988,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25868,7 +25999,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Sumber daya yang Anda cari tidak tersedia"
@@ -25880,7 +26011,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25941,12 +26072,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25970,11 +26101,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Ada beberapa masalah dengan url berkas: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25986,7 +26117,7 @@ msgstr "Harus ada minimal aturan satu izin."
msgid "There was an error building this page"
msgstr "Terjadi kesalahan saat membangun halaman ini"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Terjadi kesalahan saat menyimpan filter"
@@ -26043,7 +26174,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Mata uang ini dinonaktifkan. Aktifkan untuk digunakan dalam transaksi"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Papan Kanban ini akan menjadi pribadi"
@@ -26051,6 +26182,10 @@ msgstr "Papan Kanban ini akan menjadi pribadi"
msgid "This Month"
msgstr "Bulan Ini"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Kuartal Ini"
@@ -26076,6 +26211,11 @@ msgstr "Tindakan ini hanya diperbolehkan untuk {}"
msgid "This cannot be undone"
msgstr "Ini tidak dapat dibatalkan"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26094,7 +26234,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26136,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26171,7 +26311,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ini adalah laporan latar belakang. Harap atur filter yang sesuai dan kemudian buat yang baru."
@@ -26221,7 +26361,7 @@ msgstr "Ini dapat dicetak pada beberapa halaman"
msgid "This month"
msgstr "Bulan ini"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26229,7 +26369,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "Laporan ini dibuat pada {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Laporan ini dihasilkan {0}."
@@ -26371,9 +26511,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26634,7 +26776,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}."
@@ -26709,7 +26851,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26835,7 +26977,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26956,7 +27098,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26992,7 +27134,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27154,7 +27296,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27247,7 +27389,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27350,7 +27492,7 @@ msgstr ""
msgid "Unable to update event"
msgstr "Tidak dapat memperbarui acara"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Tidak dapat menulis format file untuk {0}"
@@ -27359,7 +27501,7 @@ msgstr "Tidak dapat menulis format file untuk {0}"
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27375,7 +27517,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27422,7 +27564,7 @@ msgstr "Kolom diketahui: {0}"
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Pengguna tidak dikenal"
@@ -27488,8 +27630,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Berhenti berlangganan"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27523,7 +27665,7 @@ msgstr "Acara Mendatang untuk Hari Ini"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Perbaruan"
@@ -27557,6 +27699,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27615,7 +27762,7 @@ msgstr "Diperbarui Ke Versi Baru 🎉"
msgid "Updated successfully"
msgstr "Berhasil diperbarui"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Memperbarui"
@@ -27772,11 +27919,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Penggunaan sub-query atau fungsi dibatasi"
@@ -27998,12 +28141,12 @@ msgstr "Pengguna Izin"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Permissions Pengguna"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Permissions Pengguna"
@@ -28147,7 +28290,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr "Pengguna {0} dinonaktifkan"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28275,8 +28418,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28308,7 +28451,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Nilai tidak dapat diubah untuk {0}"
@@ -28324,11 +28467,11 @@ msgstr "Nilai tidak boleh negatif untuk {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Nilai untuk bidang {0} terlalu panjang di {1}. Panjang harus kurang dari {2} karakter"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Nilai untuk {0} tidak bisa daftar"
@@ -28353,7 +28496,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Nilai terlalu besar"
@@ -28445,7 +28588,7 @@ msgstr "Lihat semua"
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28457,7 +28600,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Lihat Daftar"
@@ -28467,7 +28610,7 @@ msgstr "Lihat Daftar"
msgid "View Log"
msgstr "Melihat log"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Lihat Dokumen yang Diizinkan"
@@ -28583,6 +28726,7 @@ msgid "Warehouse"
msgstr "Gudang"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Peringatan"
@@ -28677,7 +28821,7 @@ msgstr "Halaman web"
msgid "Web Page Block"
msgstr "Blok Halaman Web"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29067,7 +29211,7 @@ msgstr "Hanya akan ditampilkan jika judul bagian diaktifkan"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Dengan kepala Surat"
@@ -29228,7 +29372,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29321,7 +29465,7 @@ msgstr "Membungkus"
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Nilai Ambil Dari Salah"
@@ -29350,7 +29494,7 @@ msgstr "Bidang Sumbu Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29412,7 +29556,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ya"
@@ -29448,6 +29592,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Anda terhubung ke internet."
@@ -29486,12 +29634,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Anda tidak diizinkan mengekspor {} doctype"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Anda tidak diizinkan untuk mencetak laporan ini"
@@ -29499,7 +29647,7 @@ msgstr "Anda tidak diizinkan untuk mencetak laporan ini"
msgid "You are not allowed to send emails related to this document"
msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini"
@@ -29572,11 +29720,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29626,11 +29774,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Anda tidak dapat menyetel 'Pilihan' untuk bidang {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}"
@@ -29648,7 +29796,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}"
@@ -29691,15 +29839,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Anda tidak memiliki izin yang cukup untuk mengakses sumber ini. Silahkan hubungi manajer Anda untuk mendapatkan akses."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29711,11 +29859,11 @@ msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan.
msgid "You don't have access to Report: {0}"
msgstr "Anda tidak memiliki akses ke Laporan: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Anda tidak memiliki izin untuk mengakses file ini"
@@ -29735,7 +29883,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr "Anda telah berhasil keluar"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29763,7 +29911,7 @@ msgstr "Anda memiliki {0} yang tak terlihat"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29780,11 +29928,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Anda harus login untuk mengirimkan formulir ini"
@@ -29808,7 +29956,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Anda perlu berada dalam mode developer untuk mengedit Formulir Web Standar"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up."
@@ -29899,6 +30047,10 @@ msgstr "Anda berhenti mengikuti dokumen ini"
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29944,7 +30096,7 @@ msgstr "Pintasan Anda"
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik"
@@ -30006,11 +30158,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Permintaan Anda telah diterima. Kami akan segera menanggapi. Jika Anda memiliki informasi tambahan, silakan balas email ini."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan"
@@ -30318,7 +30470,7 @@ msgstr ""
msgid "just now"
msgstr "baru saja"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30347,7 +30499,7 @@ msgstr ""
msgid "logged in"
msgstr "Login"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30685,7 +30837,7 @@ msgstr "melalui Impor Data"
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "melalui Notifikasi"
@@ -30795,7 +30947,7 @@ msgstr "{0} Bagan"
msgid "{0} Dashboard"
msgstr "{0} Dasbor"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30836,7 +30988,7 @@ msgstr ""
msgid "{0} Name"
msgstr "{0} Nama"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30846,7 +30998,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} Laporan"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30902,7 +31054,7 @@ msgstr "{0} dan {1}"
msgid "{0} are currently {1}"
msgstr "{0} saat ini {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} wajib diisi"
@@ -30919,7 +31071,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30996,7 +31148,7 @@ msgstr "{0} tidak ada di baris {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} field tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang non-unik"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31041,7 +31193,7 @@ msgstr "{0} di baris {1} tidak dapat memiliki URL dan item turunan"
msgid "{0} is a mandatory field"
msgstr "{0} adalah kolom wajib"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31090,7 +31242,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} wajib diisi"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31110,12 +31262,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} bukan DocType untuk Dynamic Link yang valid"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} bukan Alamat Email valid"
@@ -31123,11 +31275,11 @@ msgstr "{0} bukan Alamat Email valid"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} bukanlah Nama yang valid"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} bukan Nomor Telepon yang valid"
@@ -31147,7 +31299,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} bukan format laporan yang valid. Format laporan harus salah satu dari yang berikut {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31171,7 +31323,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}"
@@ -31181,8 +31333,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} diperlukan"
@@ -31195,7 +31347,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} item dipilih"
@@ -31252,11 +31404,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr "{0} harus merupakan salah satu {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} harus diatur terlebih dahulu"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} harus merupakan kode unik"
@@ -31281,11 +31433,11 @@ msgid "{0} not found"
msgstr "{0} tidak ditemukan"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} dari {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} dari {1} ({2} baris dengan anak-anak)"
@@ -31335,7 +31487,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31409,7 +31561,7 @@ msgstr "{0} sampai {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} berhenti berbagi dokumen ini dengan {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} diperbarui"
@@ -31445,11 +31597,11 @@ msgstr "{0} {1} ditambahkan"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} ditambahkan ke Dasbor {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} sudah ada"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} tidak dapat \"{2}\". Seharusnya salah satu dari \"{3}\""
@@ -31469,11 +31621,11 @@ msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} tidak ditemukan"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Baris {1}"
@@ -31481,35 +31633,35 @@ msgstr "{0}, Baris {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) akan terpotong, karena karakter maksimum yang diizinkan adalah {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor"
@@ -31537,11 +31689,11 @@ msgstr "{0}: Fieldname {1} muncul beberapa kali dalam baris {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Fieldtype {1} untuk {2} tidak boleh unik"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Tidak ada perizinan dasar yang ditetapkan"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan {1}"
@@ -31561,7 +31713,7 @@ msgstr "{0}: Opsi {1} harus sama dengan nama doctype {2} untuk isian {3}"
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tinggi ditetapkan"
@@ -31582,7 +31734,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} diatur untuk menyatakan {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31618,11 +31770,11 @@ msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}."
msgid "{} Complete"
msgstr "{} Selesai"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31648,7 +31800,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr "{} bukan string tanggal yang valid."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index 2d44fe6698..88f8679897 100644
--- a/frappe/locale/it.po
+++ b/frappe/locale/it.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'Nella Ricerca Globale' non consentito per il tipo {0} nella riga {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'Nella Vista Elenco' non è consentito per il campo {0} di tipo {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'Nella Vista Elenco' non consentito per il tipo {0} nella riga {1}"
@@ -86,11 +86,11 @@ msgstr "'Nella Vista Elenco' non consentito per il tipo {0} nella riga {1}"
msgid "'Recipients' not specified"
msgstr "'Destinatari' non specificati"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' non è un URL valido"
@@ -122,7 +122,7 @@ msgstr "0 - Bozza; 1 - Inviata; 2 - Annullata"
msgid "0 is highest"
msgstr "0 è il più alto"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Vero e 0 = Falso"
@@ -141,11 +141,11 @@ msgstr "1 Giorno"
msgid "1 Google Calendar Event synced."
msgstr "1 Evento di Google Calendar sincronizzato."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 giorno fa"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 ora"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 ora fa"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 minuto fa"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 mese fa"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "1 secondo fa"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 settimana fa"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 anno fa"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "2 ore fa"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "2 mesi fa"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "2 settimane fa"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "2 anni fa"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 minuti fa"
@@ -232,7 +232,7 @@ msgstr "4 ore"
msgid "5 Records"
msgstr "5 record"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 giorni fa"
@@ -268,6 +268,16 @@ msgstr "{0} non è un URL valido"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -657,11 +667,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -783,7 +798,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -802,7 +817,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -826,7 +841,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -912,7 +927,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -1028,7 +1043,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr ""
@@ -1085,7 +1100,7 @@ msgstr "Log Attività"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1096,7 +1111,7 @@ msgstr "Log Attività"
msgid "Add"
msgstr "Aggiungi"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Aggiungi / Rimuovi colonne"
@@ -1128,7 +1143,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1141,8 +1156,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1236,7 +1251,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1411,6 +1426,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1419,6 +1435,7 @@ msgstr ""
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Indirizzo"
@@ -1426,6 +1443,7 @@ msgstr "Indirizzo"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Indirizzo 2"
@@ -1587,7 +1605,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1614,11 +1632,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -2065,6 +2083,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2141,6 +2165,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2323,7 +2352,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2408,7 +2437,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2444,7 +2473,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "Vuoi davvero annullare le modifiche?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2452,7 +2481,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2507,6 +2536,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2516,7 +2551,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2659,7 +2694,7 @@ msgstr ""
msgid "Asynchronous"
msgstr "Asincrono"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2739,7 +2774,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2755,7 +2790,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2777,11 +2812,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3640,15 +3675,15 @@ msgstr "Eliminazione in Blocco"
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3872,7 +3907,7 @@ msgid "Camera"
msgstr "Fotocamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3932,7 +3967,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3940,7 +3975,7 @@ msgstr ""
msgid "Cancel"
msgstr "Annulla"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annulla"
@@ -3958,7 +3993,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4007,11 +4042,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -4055,11 +4090,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4122,8 +4157,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr "Impossibile modificare i filtri per i grafici standard"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4135,11 +4170,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4147,7 +4182,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4163,7 +4198,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4192,11 +4227,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4469,11 +4504,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4502,6 +4537,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4528,7 +4564,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4605,24 +4641,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Fai clic per ordinare per {0}"
@@ -4800,7 +4836,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Riduci"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4855,7 +4891,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4911,11 +4947,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4942,7 +4978,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5157,8 +5193,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5206,7 +5242,7 @@ msgstr ""
msgid "Configure Chart"
msgstr "Configura Grafico"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5231,7 +5267,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Conferma"
@@ -5250,7 +5286,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5295,8 +5331,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5347,6 +5383,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5410,7 +5450,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5499,7 +5539,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr "Copia negli Appunti"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5508,7 +5548,7 @@ msgstr ""
msgid "Copyright"
msgstr "Copyright"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5532,7 +5572,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5585,13 +5625,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5623,13 +5664,13 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Creare"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Crea e Continua"
@@ -5643,7 +5684,7 @@ msgid "Create Card"
msgstr "Crea Scheda"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Crea Grafico"
@@ -5677,12 +5718,12 @@ msgstr "Crea Log"
msgid "Create New"
msgstr "Crea Nuovo"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Crea Nuovo"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5690,7 +5731,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr "Crea Nuova Bacheca Kanban"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Crea E-mail Utente"
@@ -5713,8 +5754,8 @@ msgstr "Crea un nuovo record"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Crea un nuovo {0}"
@@ -5730,7 +5771,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr "Crea o Modifica Flusso di Lavoro"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Crea il tuo primo {0}"
@@ -5740,7 +5781,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -6077,7 +6118,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6112,7 +6153,7 @@ msgstr ""
msgid "Customize"
msgstr "Personalizza"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Personalizza"
@@ -6131,7 +6172,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Personalizza Modulo"
@@ -6362,7 +6403,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6393,7 +6434,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr "Spazio Database Usato Per Tabella"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6763,13 +6804,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Eliminare"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Eliminare"
@@ -6802,7 +6843,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6816,7 +6857,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6858,12 +6899,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6899,7 +6940,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6907,7 +6948,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Eliminato!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7360,10 +7401,14 @@ msgstr "Non creare un nuovo utente"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7787,13 +7832,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Tipo Documento"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7838,15 +7883,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Il documento è in bozza"
@@ -7988,7 +8033,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8021,7 +8066,7 @@ msgstr "Scarica Link"
msgid "Download PDF"
msgstr "Scarica il pdf"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Scarica Report"
@@ -8117,7 +8162,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8221,8 +8266,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8234,7 +8279,7 @@ msgstr ""
msgid "Edit"
msgstr "Modifica"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Modifica"
@@ -8244,7 +8289,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Modifica"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Modifica"
@@ -8273,7 +8318,7 @@ msgstr "Modifica HTML personalizzato"
msgid "Edit DocType"
msgstr "Modifica DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Modifica DocType"
@@ -8291,7 +8336,7 @@ msgstr "Modifica Filtri"
msgid "Edit Footer"
msgstr "Modifica Piè di Pagina"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Modifica formato"
@@ -8393,7 +8438,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8438,6 +8483,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8456,6 +8503,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-mail"
@@ -8575,6 +8624,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Id Email"
@@ -8686,7 +8736,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8729,7 +8779,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8737,7 +8787,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9165,7 +9215,7 @@ msgstr "Log Errori"
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9193,9 +9243,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9215,19 +9265,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9376,7 +9426,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9402,12 +9452,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Espandi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9465,13 +9515,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Esportare"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Esportare"
@@ -9664,7 +9714,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9672,7 +9722,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9828,7 +9878,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9911,7 +9961,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9929,7 +9979,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9942,7 +9992,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9958,11 +10008,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10002,7 +10052,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -10010,7 +10060,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10038,7 +10088,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10104,7 +10154,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10112,7 +10162,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10121,11 +10171,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10139,8 +10189,8 @@ msgstr "File"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10179,11 +10229,11 @@ msgstr "Nome Filtro"
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10260,7 +10310,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10308,8 +10358,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Nome di battesimo"
@@ -10390,7 +10444,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10497,7 +10551,7 @@ msgstr "Dettagli del Piè di Pagina"
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10592,7 +10646,7 @@ msgstr "Per l'Utente"
msgid "For Value"
msgstr "Valore"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10633,7 +10687,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10877,7 +10931,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10939,12 +10993,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -11004,7 +11058,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -11019,7 +11073,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11226,10 +11280,6 @@ msgstr "Anonimizzazione IP di Google Analytics"
msgid "Google Calendar"
msgstr "Calendario Google"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11424,14 +11474,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11491,7 +11537,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11596,7 +11642,7 @@ msgstr "Intestazione"
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11725,7 +11771,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11761,7 +11807,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11873,7 +11919,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -12033,7 +12079,7 @@ msgstr ""
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12130,9 +12176,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12360,8 +12406,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12448,11 +12494,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12482,7 +12528,7 @@ msgstr ""
msgid "Import"
msgstr "Importa"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importa"
@@ -12710,15 +12756,16 @@ msgstr "Includi Tema dalle App"
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12765,7 +12812,7 @@ msgstr "Account email in arrivo non corretto"
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12876,7 +12923,7 @@ msgstr "Inserisci Sopra"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12914,8 +12961,8 @@ msgstr "Inserisci Stile"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12949,7 +12996,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13065,7 +13112,7 @@ msgid "Invalid"
msgstr "Non valido"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13075,7 +13122,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13119,12 +13166,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13178,7 +13225,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13192,11 +13239,11 @@ msgstr ""
msgid "Invalid Password"
msgstr "Password non Valida"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13213,7 +13260,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13236,7 +13283,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13244,19 +13291,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13264,11 +13311,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13284,23 +13331,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13312,11 +13359,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13324,11 +13371,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13365,23 +13412,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13485,7 +13536,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13538,6 +13589,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13564,8 +13619,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13621,7 +13681,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13657,7 +13717,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13863,11 +13923,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Impostazioni Kanban"
@@ -14157,7 +14217,7 @@ msgstr ""
msgid "Landing Page"
msgstr "Pagina di Destinazione"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14165,10 +14225,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Lingua"
@@ -14256,8 +14319,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Cognome"
@@ -14403,7 +14470,7 @@ msgstr "Lunghezza"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14453,7 +14520,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14481,7 +14548,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14498,7 +14565,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14791,7 +14858,7 @@ msgstr ""
msgid "List Settings"
msgstr "Impostazioni Lista"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Impostazioni Lista"
@@ -14842,7 +14909,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Carica altro"
@@ -14862,7 +14929,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Caricamento"
@@ -15005,7 +15072,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -15013,7 +15080,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -15066,7 +15133,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -15085,7 +15152,7 @@ msgstr ""
msgid "Logout"
msgstr "Esci"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15189,7 +15256,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15265,7 +15335,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15277,11 +15347,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15463,7 +15533,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15487,7 +15557,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15706,7 +15776,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr "Metodo Non Consentito"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15722,6 +15792,11 @@ msgstr ""
msgid "Middle Name"
msgstr "Secondo Nome"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15792,7 +15867,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Campi Mancanti"
@@ -15828,6 +15903,11 @@ msgstr "Cellulare"
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Numero di Cellulare"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15853,7 +15933,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16029,10 +16109,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Ulteriori Informazioni"
@@ -16062,7 +16144,7 @@ msgstr ""
msgid "Move"
msgstr "Muovi"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16098,7 +16180,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16148,7 +16230,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16166,7 +16248,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16206,7 +16288,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16308,12 +16390,12 @@ msgstr "Modello di Barra di Navigazione"
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16328,6 +16410,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16336,7 +16422,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16349,6 +16435,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16357,7 +16449,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16418,7 +16510,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16453,7 +16545,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nuova Password"
@@ -16549,7 +16641,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Nuovo {0}"
@@ -16701,7 +16793,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "No"
@@ -16806,7 +16898,7 @@ msgstr ""
msgid "No New notifications"
msgstr "Nessuna Nuova Notifica"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16850,7 +16942,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr "Nessun Ruolo Specificato"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Campo Selezione Non Trovato"
@@ -16858,7 +16950,7 @@ msgstr "Campo Selezione Non Trovato"
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16934,7 +17026,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nessun campo trovato che possa essere utilizzato come colonna Kanban. Utilizza Personalizza Modulo per aggiungere un campo personalizzato di tipo \"Seleziona\"."
@@ -16958,7 +17050,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Non ci sono più elementi da visualizzare"
@@ -17002,7 +17094,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -17014,7 +17106,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -17050,11 +17142,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Nessun {0} trovato"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Nessun {0} trovato con i filtri corrispondenti. Cancella i filtri per vedere tutti i {0}."
@@ -17063,7 +17155,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Num."
@@ -17127,7 +17219,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17153,9 +17245,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17174,7 +17266,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17225,7 +17317,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17257,12 +17349,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17308,7 +17400,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17380,15 +17472,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17502,7 +17594,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17774,7 +17866,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17863,11 +17955,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17963,7 +18055,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18012,7 +18104,7 @@ msgstr ""
msgid "Operation"
msgstr "Operazione"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -18058,6 +18150,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18066,6 +18159,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18095,7 +18189,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18111,7 +18205,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18127,7 +18221,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18209,7 +18303,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18242,10 +18336,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18457,7 +18547,7 @@ msgstr "DocType Principale"
msgid "Parent Document Type"
msgstr "Tipo Documento Principale"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18561,8 +18651,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18585,7 +18675,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18622,7 +18712,7 @@ msgstr ""
msgid "Password set"
msgstr "Password impostata"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18634,7 +18724,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr "Le password non corrispondono"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18785,7 +18875,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18845,16 +18935,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Permessi"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18916,15 +19006,18 @@ msgstr "Richiesta di Download dei Dati Personali"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18937,11 +19030,11 @@ msgstr "Telefono"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19023,11 +19116,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19039,7 +19132,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -19079,7 +19172,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19095,11 +19188,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19108,7 +19201,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19223,7 +19316,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19231,15 +19324,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19263,7 +19356,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19293,7 +19386,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Si prega di impostare i filtri"
@@ -19313,7 +19406,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19428,7 +19521,7 @@ msgstr ""
msgid "Portal Settings"
msgstr "Impostazioni del Portale"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19456,6 +19549,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19464,7 +19558,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19479,6 +19573,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19527,7 +19625,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19662,13 +19760,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Stampa"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Stampa"
@@ -19738,7 +19836,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19777,7 +19875,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19795,7 +19893,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Impostazioni di Stampa"
@@ -19919,11 +20017,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19940,11 +20038,21 @@ msgstr "Prof"
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profilo aggiornato con successo."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Progetto"
@@ -19988,7 +20096,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20161,7 +20269,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "Errore nel vassoio QZ:"
@@ -20368,7 +20476,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20494,11 +20602,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20879,8 +20987,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20911,13 +21019,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21230,8 +21338,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21302,11 +21410,11 @@ msgstr "Responsabile Report"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Nome del Rapporto"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21340,21 +21448,21 @@ msgstr "Vista Report"
msgid "Report bug"
msgstr "Segnala un problema"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21374,7 +21482,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21410,7 +21518,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21429,7 +21537,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21481,6 +21592,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21536,7 +21652,7 @@ msgstr "Reimposta Personalizzazioni Dashboard"
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21544,11 +21660,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21583,7 +21699,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21723,7 +21839,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21835,7 +21951,7 @@ msgstr "Permessi per Pagina e Report"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21845,7 +21961,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr "Gestore Permessi Ruolo"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Gestione Permessi Ruolo"
@@ -21990,7 +22106,7 @@ msgstr "Reindirizzamenti Percorso"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21998,12 +22114,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -22038,11 +22154,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -22061,7 +22177,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22269,8 +22388,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22293,11 +22412,11 @@ msgstr "Salva Con Nome"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22669,7 +22788,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22733,7 +22852,7 @@ msgstr "Seleziona"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Seleziona Tutto"
@@ -22754,7 +22873,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22813,7 +22932,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22933,14 +23052,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22970,13 +23089,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23194,7 +23313,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23298,7 +23417,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23364,7 +23483,7 @@ msgstr "Predefiniti Sessione"
msgid "Session Defaults Saved"
msgstr "Predefiniti Sessione Salvati"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23373,14 +23492,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23406,12 +23525,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Imposta le opzioni predefinite per tutti i grafici su questa dashboard (es: \"colori\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23422,7 +23541,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23476,7 +23595,7 @@ msgstr ""
msgid "Set Role For"
msgstr "Imposta Ruolo Per"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Imposta Autorizzazioni Utente"
@@ -23495,7 +23614,7 @@ msgstr "Imposta come privato"
msgid "Set all public"
msgstr "Imposta tutto come pubblico"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23514,18 +23633,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23635,7 +23757,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Imposta E-mail Automatica"
@@ -23776,6 +23898,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23904,7 +24032,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24111,22 +24239,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24134,13 +24262,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24148,7 +24276,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Taglia"
@@ -24408,7 +24536,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24475,8 +24603,8 @@ msgstr ""
msgid "Splash Image"
msgstr "Immagine Iniziale"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Sig"
@@ -24508,7 +24636,7 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24524,7 +24652,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr "Autorizzazioni Standard"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24642,6 +24770,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24777,7 +24906,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24807,7 +24936,7 @@ msgstr "Spazio Usato Per Tabella"
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24905,7 +25034,7 @@ msgstr "Soggetto"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24919,6 +25048,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24927,10 +25057,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Conferma"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Conferma"
@@ -24940,7 +25071,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Conferma"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Conferma"
@@ -24988,7 +25119,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25038,7 +25169,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25253,7 +25384,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25564,7 +25695,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25779,7 +25910,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25794,7 +25925,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25847,7 +25978,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25877,7 +26008,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25948,7 +26079,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25959,7 +26090,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25971,7 +26102,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26032,12 +26163,12 @@ msgstr "Non ci sono eventi in programma per te."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -26061,11 +26192,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr "Al momento non c'è nulla di nuovo da mostrare."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26077,7 +26208,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Si è verificato un errore durante il salvataggio dei filtri"
@@ -26134,7 +26265,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26142,6 +26273,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26167,6 +26302,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26185,7 +26325,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26227,7 +26367,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26262,7 +26402,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26312,7 +26452,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26320,7 +26460,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26462,9 +26602,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26725,7 +26867,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26800,7 +26942,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr "Cambia Barra Laterale"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Cambia Barra Laterale"
@@ -26926,7 +27068,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -27047,7 +27189,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27083,7 +27225,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27245,7 +27387,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27338,7 +27480,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27441,7 +27583,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27450,7 +27592,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27466,7 +27608,7 @@ msgstr "Annulla"
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27513,7 +27655,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27579,8 +27721,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27614,7 +27756,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27648,6 +27790,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27706,7 +27853,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27863,11 +28010,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28089,12 +28232,12 @@ msgstr "Autorizzazione Utente"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Autorizzazioni Utente"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Autorizzazioni Utente"
@@ -28238,7 +28381,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28366,8 +28509,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28399,7 +28542,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28415,11 +28558,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28444,7 +28587,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28536,7 +28679,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Visualizza Permessi Documento"
@@ -28548,7 +28691,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28558,7 +28701,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Visualizza Documenti Consentiti"
@@ -28674,6 +28817,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28768,7 +28912,7 @@ msgstr "Pagina Web"
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29158,7 +29302,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29319,7 +29463,7 @@ msgstr ""
msgid "Workspace"
msgstr "Area di Lavoro"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29412,7 +29556,7 @@ msgstr ""
msgid "Write"
msgstr "Scrivi"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29441,7 +29585,7 @@ msgstr "Campi Asse Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29503,7 +29647,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Sì"
@@ -29539,6 +29683,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29577,12 +29725,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29590,7 +29738,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29663,11 +29811,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29717,11 +29865,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29739,7 +29887,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29782,15 +29930,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29802,11 +29950,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29826,7 +29974,7 @@ msgstr "Hai ricevuto un nuovo messaggio da:"
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29854,7 +30002,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "Non hai ancora creato un {0}"
@@ -29871,11 +30019,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29899,7 +30047,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29990,6 +30138,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -30035,7 +30187,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30097,11 +30249,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30409,7 +30561,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30438,7 +30590,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30776,7 +30928,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30886,7 +31038,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30927,7 +31079,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30937,7 +31089,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30993,7 +31145,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -31010,7 +31162,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31087,7 +31239,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31132,7 +31284,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31181,7 +31333,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31201,12 +31353,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31214,11 +31366,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31238,7 +31390,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31262,7 +31414,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31272,8 +31424,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31286,7 +31438,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31343,11 +31495,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31372,11 +31524,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} di {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31426,7 +31578,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31500,7 +31652,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31536,11 +31688,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31560,11 +31712,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31572,35 +31724,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31628,11 +31780,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31652,7 +31804,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31673,7 +31825,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31709,11 +31861,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31739,7 +31891,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot
index d4eb0937b6..36e468d036 100644
--- a/frappe/locale/main.pot
+++ b/frappe/locale/main.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Frappe Framework VERSION\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 09:32+0000\n"
+"POT-Creation-Date: 2025-10-12 09:32+0000\n"
+"PO-Revision-Date: 2025-10-12 09:32+0000\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: developers@frappe.io\n"
"MIME-Version: 1.0\n"
@@ -38,7 +38,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1090
+#: frappe/public/js/frappe/form/form.js:1093
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -76,7 +76,7 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -84,11 +84,11 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -120,7 +120,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -139,11 +139,11 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr ""
@@ -152,17 +152,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr ""
@@ -184,37 +184,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr ""
@@ -230,7 +230,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -267,6 +267,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -604,11 +614,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -731,7 +746,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -750,7 +765,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -774,7 +789,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -860,7 +875,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -924,7 +939,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1888
+#: frappe/model/document.py:1902
msgid "Action Failed"
msgstr ""
@@ -976,7 +991,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr ""
@@ -1031,9 +1046,9 @@ msgstr ""
msgid "Activity Log"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/core/page/permission_manager/permission_manager.js:483
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1044,7 +1059,7 @@ msgstr ""
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1052,7 +1067,7 @@ msgstr ""
msgid "Add / Update"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:442
+#: frappe/core/page/permission_manager/permission_manager.js:443
msgid "Add A New Rule"
msgstr ""
@@ -1076,7 +1091,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1089,8 +1104,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1859
+#: frappe/public/js/frappe/views/reports/query_report.js:1862
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1138,7 +1153,7 @@ msgstr ""
msgid "Add Multiple"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:445
+#: frappe/core/page/permission_manager/permission_manager.js:446
msgid "Add New Permission Rule"
msgstr ""
@@ -1184,7 +1199,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2160
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1239,19 +1254,19 @@ msgstr ""
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:193
+#: frappe/public/js/frappe/form/form.js:194
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:205
+#: frappe/public/js/frappe/form/form.js:206
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:201
+#: frappe/public/js/frappe/form/form.js:202
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:197
+#: frappe/public/js/frappe/form/form.js:198
msgid "Add a row below the current row"
msgstr ""
@@ -1359,6 +1374,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1367,6 +1383,7 @@ msgstr ""
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr ""
@@ -1374,6 +1391,7 @@ msgstr ""
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1535,7 +1553,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1562,11 +1580,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1631,7 +1649,7 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2224
+#: frappe/public/js/frappe/form/form.js:2237
msgid "All Submissions"
msgstr ""
@@ -1954,7 +1972,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1256
+#: frappe/public/js/frappe/form/form.js:1268
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -2015,6 +2033,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2083,7 +2107,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:551
+#: frappe/model/document.py:563
msgid "Amendment Not Allowed"
msgstr ""
@@ -2091,6 +2115,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2273,7 +2302,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2145
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2358,7 +2387,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2124
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2394,7 +2423,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2402,7 +2431,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2457,6 +2486,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2466,7 +2501,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2106
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2609,7 +2644,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2689,7 +2724,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2705,7 +2740,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2727,11 +2762,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3590,7 +3625,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
@@ -3765,7 +3800,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:182
msgid "Calculate"
msgstr ""
@@ -3822,7 +3857,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3882,7 +3917,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3890,7 +3925,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2215
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3900,15 +3935,15 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:979
+#: frappe/public/js/frappe/form/form.js:982
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:966
+#: frappe/public/js/frappe/form/form.js:969
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2220
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3957,11 +3992,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:643
msgid "Cannot access file path {0}"
msgstr ""
@@ -3977,11 +4012,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1017
+#: frappe/model/document.py:1031
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1045
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4005,11 +4040,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:421
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4064,7 +4099,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1051
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4072,8 +4107,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4085,11 +4120,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:583
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4097,11 +4132,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1105
+#: frappe/model/document.py:1119
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4113,7 +4148,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4142,11 +4177,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1186
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1218
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4420,11 +4455,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4453,6 +4488,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4479,7 +4515,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2121
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4525,7 +4561,7 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:539
msgid "Click on a file to select it."
msgstr ""
@@ -4556,24 +4592,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4751,7 +4787,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4806,7 +4842,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1260
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4862,11 +4898,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4893,7 +4929,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5108,8 +5144,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5157,7 +5193,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5185,7 +5221,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5204,7 +5240,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5249,8 +5285,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5301,6 +5337,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5364,7 +5404,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5453,7 +5493,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5462,7 +5502,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5478,7 +5518,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1101
+#: frappe/model/document.py:1115
msgid "Could not find {0}"
msgstr ""
@@ -5486,7 +5526,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5539,13 +5579,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5577,13 +5618,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1292
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5597,7 +5638,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1219
msgid "Create Chart"
msgstr ""
@@ -5631,12 +5672,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5644,7 +5685,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5660,15 +5701,15 @@ msgstr ""
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:157
msgid "Create a new record"
msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5684,7 +5725,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5694,7 +5735,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:371
msgid "Created"
msgstr ""
@@ -6031,7 +6072,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6066,7 +6107,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6085,7 +6126,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6316,7 +6357,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6347,7 +6388,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6717,13 +6758,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2183
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6756,7 +6797,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6770,7 +6811,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6812,12 +6853,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2188
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2194
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7077,11 +7118,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:494
+#: frappe/core/page/permission_manager/permission_manager.js:495
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:388
+#: frappe/core/page/permission_manager/permission_manager.js:389
msgid "Did not remove"
msgstr ""
@@ -7128,12 +7169,6 @@ msgstr ""
msgid "Disable Comment Count"
msgstr ""
-#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
-#. Settings'
-#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
-msgid "Disable Contact Us Page"
-msgstr ""
-
#. Label of the disable_count (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Count"
@@ -7204,6 +7239,8 @@ msgstr ""
#. Label of the disabled (Check) field in DocType 'Letter Head'
#. Label of the disabled (Check) field in DocType 'Print Format'
#. Label of the disabled (Check) field in DocType 'Print Style'
+#. Label of the is_disabled (Check) field in DocType 'About Us Settings'
+#. Label of the is_disabled (Check) field in DocType 'Contact Us Settings'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
@@ -7218,6 +7255,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:35
#: frappe/public/js/frappe/model/indicator.js:112
#: frappe/public/js/frappe/model/indicator.js:119
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Disabled"
msgstr ""
@@ -7242,7 +7281,7 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:848
+#: frappe/public/js/frappe/form/form.js:851
msgid "Discard {0}"
msgstr ""
@@ -7314,15 +7353,19 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:958
+#: frappe/public/js/frappe/form/form.js:961
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7628,7 +7671,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:478
+#: frappe/model/document.py:490
msgid "Document Queued"
msgstr ""
@@ -7732,7 +7775,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/core/page/permission_manager/permission_manager.js:450
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7742,13 +7785,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7785,7 +7828,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1959
+#: frappe/model/document.py:1973
msgid "Document Unlocked"
msgstr ""
@@ -7793,15 +7836,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1311
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1310
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1309
msgid "Document is in draft state"
msgstr ""
@@ -7943,7 +7986,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7976,7 +8019,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8072,7 +8115,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8080,7 +8123,7 @@ msgstr ""
msgid "Duplicate Row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:209
+#: frappe/public/js/frappe/form/form.js:210
msgid "Duplicate current row"
msgstr ""
@@ -8176,8 +8219,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1810
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8189,7 +8232,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2269
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8199,7 +8242,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8228,7 +8271,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1985
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8246,7 +8289,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8348,7 +8391,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8393,6 +8436,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8411,6 +8456,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8530,6 +8577,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8641,7 +8689,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8649,7 +8697,7 @@ msgstr ""
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
-#: frappe/utils/oauth.py:163
+#: frappe/utils/oauth.py:192
msgid "Email not verified with {0}"
msgstr ""
@@ -8684,7 +8732,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8692,7 +8740,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9121,7 +9169,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9149,9 +9197,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9171,19 +9219,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9332,7 +9380,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2159
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9358,12 +9406,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9421,13 +9469,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1847
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9602,7 +9650,7 @@ msgstr ""
msgid "Failed to aquire lock: {}. Lock may be held by another process."
msgstr ""
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:362
msgid "Failed to change password."
msgstr ""
@@ -9620,7 +9668,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9784,7 +9832,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1906
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9859,15 +9907,15 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:184
+#: frappe/desk/form/meta.py:187
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1756
+#: frappe/public/js/frappe/form/form.js:1768
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9885,7 +9933,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9898,7 +9946,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9914,11 +9962,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9958,7 +10006,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9966,7 +10014,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9994,7 +10042,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10007,7 +10055,7 @@ msgstr ""
msgid "File"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:499
msgid "File \"{0}\" was skipped because of invalid file type"
msgstr ""
@@ -10060,7 +10108,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:646
msgid "File name cannot have {0}"
msgstr ""
@@ -10068,7 +10116,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:756 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10077,11 +10125,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:448
msgid "File {0} does not exist"
msgstr ""
@@ -10095,8 +10143,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10135,11 +10183,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10212,11 +10260,11 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:514
+#: frappe/public/js/frappe/form/controls/link.js:520
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10237,8 +10285,8 @@ msgstr ""
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:330
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:332
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153
msgid "Find {0} in {1}"
@@ -10264,8 +10312,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10346,7 +10398,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:494
msgid "Folder {0} is not empty"
msgstr ""
@@ -10453,7 +10505,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10549,7 +10601,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2156
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10590,7 +10642,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10714,6 +10766,12 @@ msgstr ""
msgid "Forward"
msgstr ""
+#. Label of the forward_query_parameters (Check) field in DocType 'Website
+#. Route Redirect'
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
+msgid "Forward Query Parameters"
+msgstr ""
+
#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Forward To Email Address"
@@ -10834,7 +10892,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1867
msgid "From Document Type"
msgstr ""
@@ -10896,12 +10954,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10961,11 +11019,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:395
msgid "Generate Random Password"
msgstr ""
@@ -10976,7 +11034,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11117,11 +11175,11 @@ msgstr ""
msgid "Go to Workspace"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:144
+#: frappe/public/js/frappe/form/form.js:145
msgid "Go to next record"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:154
+#: frappe/public/js/frappe/form/form.js:155
msgid "Go to previous record"
msgstr ""
@@ -11183,10 +11241,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11381,14 +11435,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11448,7 +11498,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11553,7 +11603,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11658,7 +11708,7 @@ msgstr ""
msgid "Help HTML"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:150
msgid "Help on Search"
msgstr ""
@@ -11682,7 +11732,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11718,7 +11768,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1669
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11830,7 +11880,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1860
msgid "Hide Tags"
msgstr ""
@@ -11844,7 +11894,7 @@ msgstr ""
msgid "Hide descendant records of For Value."
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:285
+#: frappe/public/js/frappe/form/layout.js:293
msgid "Hide details"
msgstr ""
@@ -11897,7 +11947,7 @@ msgstr ""
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
-#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
+#: frappe/www/contact.py:25 frappe/www/login.html:170 frappe/www/me.html:76
#: frappe/www/message.html:29
msgid "Home"
msgstr ""
@@ -12087,9 +12137,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12317,8 +12367,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:503 frappe/model/db_query.py:506
+#: frappe/model/db_query.py:1172
msgid "Illegal SQL Query"
msgstr ""
@@ -12405,11 +12455,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12439,7 +12489,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12667,15 +12717,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1647
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1667
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
msgid "Include indentation"
msgstr ""
@@ -12722,7 +12773,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12742,11 +12793,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1569
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1557
+#: frappe/model/document.py:1571
msgid "Incorrect value:"
msgstr ""
@@ -12833,7 +12884,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1912
msgid "Insert After"
msgstr ""
@@ -12871,8 +12922,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12906,7 +12957,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13022,8 +13073,8 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:810
+#: frappe/public/js/frappe/form/grid_row.js:850
+#: frappe/public/js/frappe/form/layout.js:818
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13032,7 +13083,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13076,12 +13127,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13135,7 +13186,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13149,11 +13200,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13170,8 +13221,8 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
+#: frappe/core/doctype/file/file.py:232
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:551
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
@@ -13193,7 +13244,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13201,19 +13252,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13221,15 +13272,15 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1020 frappe/model/document.py:1034
+#: frappe/model/document.py:1034 frappe/model/document.py:1048
msgid "Invalid docstatus"
msgstr ""
@@ -13241,23 +13292,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13269,11 +13320,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13281,11 +13332,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13322,23 +13373,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13351,7 +13406,7 @@ msgid "Invalid token state! Check if the token has been created by the OAuth use
msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:338
msgid "Invalid username or password"
msgstr ""
@@ -13442,7 +13497,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13495,6 +13550,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13521,8 +13580,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13578,7 +13642,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13614,7 +13678,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13820,11 +13884,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14024,8 +14088,8 @@ msgstr ""
msgid "LDAP Username Field"
msgstr ""
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:310
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:429
msgid "LDAP is not enabled."
msgstr ""
@@ -14114,7 +14178,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14122,10 +14186,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14213,8 +14280,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14360,7 +14431,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14410,7 +14481,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14438,7 +14509,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14455,12 +14526,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:467
+#: frappe/core/page/permission_manager/permission_manager.js:468
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14748,7 +14819,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14762,7 +14833,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:162
msgid "List a document type"
msgstr ""
@@ -14799,7 +14870,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14819,7 +14890,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1116
msgid "Loading"
msgstr ""
@@ -14962,7 +15033,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14970,7 +15041,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -15023,7 +15094,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -15042,7 +15113,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15146,7 +15217,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15222,7 +15296,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15234,11 +15308,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15353,6 +15427,15 @@ msgstr ""
msgid "Marketing Manager"
msgstr ""
+#. Label of the mask (Check) field in DocType 'Custom DocPerm'
+#. Label of the mask (Check) field in DocType 'DocField'
+#. Label of the mask (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+msgid "Mask"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/install_fixtures.py:50
msgid "Master"
msgstr ""
@@ -15420,7 +15503,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15444,7 +15527,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15663,7 +15746,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15679,6 +15762,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15733,7 +15821,7 @@ msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:335
msgid "Misconfigured"
msgstr ""
@@ -15741,7 +15829,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:194
+#: frappe/desk/form/meta.py:197
msgid "Missing DocType"
msgstr ""
@@ -15749,7 +15837,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15785,6 +15873,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15810,7 +15903,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15986,10 +16079,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -16019,7 +16114,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16031,19 +16126,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:177
+#: frappe/public/js/frappe/form/form.js:178
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:181
+#: frappe/public/js/frappe/form/form.js:182
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:185
+#: frappe/public/js/frappe/form/form.js:186
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:189
+#: frappe/public/js/frappe/form/form.js:190
msgid "Move cursor to previous column"
msgstr ""
@@ -16055,7 +16150,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16105,7 +16200,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16123,7 +16218,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16163,7 +16258,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16266,12 +16361,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1389
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16286,15 +16381,19 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:794
+#: frappe/model/document.py:806
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16307,6 +16406,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16315,7 +16420,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16376,7 +16481,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16388,7 +16493,7 @@ msgstr ""
msgid "New Mention on {0}"
msgstr ""
-#: frappe/www/contact.py:61
+#: frappe/www/contact.py:68
msgid "New Message from Website Contact Page"
msgstr ""
@@ -16411,7 +16516,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16508,7 +16613,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16660,7 +16765,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1692
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16718,7 +16823,7 @@ msgstr ""
msgid "No Emails"
msgstr ""
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:364
msgid "No Entry for the User {0} found within LDAP!"
msgstr ""
@@ -16734,7 +16839,7 @@ msgstr ""
msgid "No Images"
msgstr ""
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:366
msgid "No LDAP User found for email: {0}"
msgstr ""
@@ -16765,7 +16870,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16809,7 +16914,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16893,7 +16998,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16917,7 +17022,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16956,12 +17061,12 @@ msgstr ""
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1142
+#: frappe/public/js/frappe/form/form.js:1145
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:999
msgid "No permission to read {0}"
msgstr ""
@@ -16973,7 +17078,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -17009,11 +17114,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17022,7 +17127,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17066,7 +17171,7 @@ msgid "Normalized Query"
msgstr ""
#: frappe/core/doctype/user/user.py:1029
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
+#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
msgid "Not Allowed"
msgstr ""
@@ -17086,7 +17191,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17112,9 +17217,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17133,7 +17238,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17184,7 +17289,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17216,12 +17321,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17267,7 +17372,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17339,15 +17444,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17461,7 +17566,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17733,7 +17838,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17795,7 +17900,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1239
+#: frappe/model/document.py:1253
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17822,11 +17927,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:283
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17910,7 +18015,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:177
msgid "Open a module or tool"
msgstr ""
@@ -17922,7 +18027,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1442
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17971,7 +18076,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -18017,6 +18122,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18025,6 +18131,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18054,7 +18161,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18070,7 +18177,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18086,7 +18193,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18168,7 +18275,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1831
msgid "PDF"
msgstr ""
@@ -18201,10 +18308,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18416,7 +18519,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18520,8 +18623,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18544,11 +18647,11 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:360
msgid "Password changed successfully."
msgstr ""
@@ -18581,7 +18684,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18593,7 +18696,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18647,7 +18750,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/website/path_resolver.py:208
+#: frappe/website/path_resolver.py:230
msgid "Path {0} it not a valid path"
msgstr ""
@@ -18728,15 +18831,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1028
+#: frappe/public/js/frappe/form/form.js:1031
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1074
+#: frappe/public/js/frappe/form/form.js:1077
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:861
+#: frappe/public/js/frappe/form/form.js:864
msgid "Permanently Submit {0}?"
msgstr ""
@@ -18744,7 +18847,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18754,7 +18857,7 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:463
+#: frappe/core/page/permission_manager/permission_manager.js:464
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
@@ -18804,16 +18907,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18875,15 +18978,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18896,11 +19002,11 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18982,11 +19088,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18998,7 +19104,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -19038,7 +19144,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19046,7 +19152,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:190
+#: frappe/desk/form/meta.py:193
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19054,11 +19160,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19067,7 +19173,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19080,7 +19186,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:191
+#: frappe/utils/oauth.py:220
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19154,7 +19260,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:992
+#: frappe/model/document.py:1006
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19162,7 +19268,7 @@ msgstr ""
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:358
+#: frappe/public/js/frappe/form/form.js:359
msgid "Please save before attaching."
msgstr ""
@@ -19182,7 +19288,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19190,19 +19296,19 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1212
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:527
msgid "Please select a file first."
msgstr ""
@@ -19222,7 +19328,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1213
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19252,7 +19358,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1435
msgid "Please set filters"
msgstr ""
@@ -19272,7 +19378,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19325,7 +19431,7 @@ msgstr ""
msgid "Please update {} before continuing."
msgstr ""
-#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:335
msgid "Please use a valid LDAP search filter"
msgstr ""
@@ -19387,7 +19493,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19415,6 +19521,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19423,7 +19530,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19438,6 +19545,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19486,7 +19597,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19569,7 +19680,7 @@ msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2216
+#: frappe/public/js/frappe/form/form.js:2229
msgid "Previous Submission"
msgstr ""
@@ -19621,13 +19732,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1816
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2175
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19697,7 +19808,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1605
msgid "Print Format not found"
msgstr ""
@@ -19736,7 +19847,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19754,7 +19865,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19793,7 +19904,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:170
+#: frappe/public/js/frappe/form/form.js:171
msgid "Print document"
msgstr ""
@@ -19878,11 +19989,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19899,11 +20010,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr ""
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19947,7 +20068,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:523
msgid "Protected File"
msgstr ""
@@ -20120,7 +20241,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20231,7 +20352,7 @@ msgstr ""
msgid "Queued By"
msgstr ""
-#: frappe/core/doctype/submission_queue/submission_queue.py:174
+#: frappe/core/doctype/submission_queue/submission_queue.py:186
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
@@ -20327,7 +20448,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20453,11 +20574,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20616,7 +20737,7 @@ msgstr ""
msgid "Redo"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:164
+#: frappe/public/js/frappe/form/form.js:165
#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20835,11 +20956,11 @@ msgstr ""
#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1201
+#: frappe/public/js/frappe/form/form.js:1213
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1805
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20870,13 +20991,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21189,8 +21310,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21261,11 +21382,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21299,21 +21420,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21333,7 +21454,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2030
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21369,7 +21490,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21388,7 +21509,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21440,6 +21564,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21495,7 +21624,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21503,11 +21632,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21542,7 +21671,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21604,7 +21733,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:509
+#: frappe/core/page/permission_manager/permission_manager.js:510
msgid "Restore Original Permissions"
msgstr ""
@@ -21653,8 +21782,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:383
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:398
msgid "Result"
msgstr ""
@@ -21682,7 +21811,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21759,7 +21888,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:456
+#: frappe/core/page/permission_manager/permission_manager.js:457
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
@@ -21794,7 +21923,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21804,7 +21933,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21949,7 +22078,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:791
msgid "Row"
msgstr ""
@@ -21957,12 +22086,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21997,11 +22126,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -22020,7 +22149,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22228,8 +22360,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22252,11 +22384,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1987
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22510,7 +22642,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:187
msgid "Search Help"
msgstr ""
@@ -22545,12 +22677,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:301
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:307
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:167
msgid "Search in a document type"
msgstr ""
@@ -22628,11 +22760,11 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1235
+#: frappe/public/js/frappe/form/form.js:1247
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -22691,8 +22823,8 @@ msgid "Select"
msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
-#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/controls/multicheck.js:167
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22713,7 +22845,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22772,7 +22904,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22892,14 +23024,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22929,13 +23061,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1456
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1408
+#: frappe/public/js/frappe/list/list_view.js:1424
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23153,7 +23285,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23257,7 +23389,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23323,7 +23455,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23332,14 +23464,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23365,12 +23497,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23381,7 +23513,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Set Level"
msgstr ""
@@ -23435,7 +23567,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23454,7 +23586,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23473,18 +23605,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23597,7 +23732,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1853
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23738,7 +23873,13 @@ msgstr ""
msgid "Show Error"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:578
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:586
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23866,7 +24007,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1860
msgid "Show Tags"
msgstr ""
@@ -23971,8 +24112,8 @@ msgstr ""
msgid "Show list"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:272
-#: frappe/public/js/frappe/form/layout.js:290
+#: frappe/public/js/frappe/form/layout.js:280
+#: frappe/public/js/frappe/form/layout.js:298
msgid "Show more details"
msgstr ""
@@ -24073,22 +24214,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24096,13 +24237,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24110,7 +24251,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:371
msgid "Size"
msgstr ""
@@ -24370,7 +24511,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24438,7 +24579,7 @@ msgid "Splash Image"
msgstr ""
#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24470,7 +24611,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24486,7 +24627,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24604,6 +24745,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24739,7 +24881,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24769,7 +24911,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24867,7 +25009,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24881,6 +25023,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24889,10 +25032,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2242
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24902,7 +25046,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24946,11 +25090,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1221
+#: frappe/public/js/frappe/form/form.js:1233
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2247
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25000,7 +25144,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25215,7 +25359,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25526,11 +25670,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1578
+#: frappe/model/document.py:1592
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25557,7 +25701,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.js:253
#: frappe/public/js/frappe/model/meta.js:207
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:172
msgid "Tags"
msgstr ""
@@ -25711,7 +25855,7 @@ msgstr ""
msgid "Thank you"
msgstr ""
-#: frappe/www/contact.py:39
+#: frappe/www/contact.py:46
msgid ""
"Thank you for reaching out to us. We will get back to you at the earliest.\n"
"\n"
@@ -25745,7 +25889,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25761,7 +25905,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25815,7 +25959,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25845,7 +25989,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25917,7 +26061,7 @@ msgid ""
msgstr ""
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25928,7 +26072,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25940,7 +26084,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26001,12 +26145,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -26030,11 +26174,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:640 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26046,7 +26190,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26103,7 +26247,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26111,6 +26255,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26136,6 +26284,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26154,23 +26307,27 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:155
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
+#: frappe/core/doctype/submission_queue/submission_queue.py:171
+msgid "This document has already been queued for submission. You can track the progress over {0}."
+msgstr ""
+
#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1305
+#: frappe/public/js/frappe/form/form.js:1317
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1102
+#: frappe/public/js/frappe/form/form.js:1105
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:475
+#: frappe/model/document.py:487
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26198,7 +26355,7 @@ msgid ""
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:522
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26210,11 +26367,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1199
+#: frappe/public/js/frappe/form/form.js:1211
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2259
+#: frappe/public/js/frappe/form/form.js:2272
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26233,7 +26390,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2216
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26283,7 +26440,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1049
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26291,7 +26448,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26433,9 +26590,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26702,7 +26861,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26777,7 +26936,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1975
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26814,7 +26973,7 @@ msgstr ""
msgid "Token URI"
msgstr ""
-#: frappe/utils/oauth.py:184
+#: frappe/utils/oauth.py:213
msgid "Token is missing"
msgstr ""
@@ -26903,7 +27062,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1351
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -27025,7 +27184,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27061,7 +27220,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2271
msgid "Translate Data"
msgstr ""
@@ -27223,7 +27382,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:371
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27317,7 +27476,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27420,7 +27579,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:486
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27429,7 +27588,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27445,7 +27604,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27493,7 +27652,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27526,7 +27685,7 @@ msgid "Unsafe SQL query"
msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:159
-#: frappe/public/js/frappe/form/controls/multicheck.js:166
+#: frappe/public/js/frappe/form/controls/multicheck.js:167
msgid "Unselect All"
msgstr ""
@@ -27559,8 +27718,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27594,7 +27753,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27628,6 +27787,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27686,7 +27850,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27843,11 +28007,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:460
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28069,12 +28229,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1971
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28214,11 +28374,11 @@ msgstr ""
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:269
+#: frappe/utils/oauth.py:298
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28263,7 +28423,7 @@ msgstr ""
msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:355
+#: frappe/core/page/permission_manager/permission_manager.js:356
msgid "Users with role {0}:"
msgstr ""
@@ -28346,8 +28506,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28379,15 +28539,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:847
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:781
+#: frappe/model/document.py:793
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:785
+#: frappe/model/document.py:797
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28395,11 +28555,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28424,7 +28584,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28516,7 +28676,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28528,7 +28688,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28538,7 +28698,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28654,6 +28814,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28704,7 +28865,7 @@ msgstr ""
msgid "We would like to thank the authors of these packages for their contribution."
msgstr ""
-#: frappe/www/contact.py:50
+#: frappe/www/contact.py:57
msgid "We've received your query!"
msgstr ""
@@ -28748,7 +28909,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29138,7 +29299,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29165,7 +29326,7 @@ msgstr ""
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
-#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:446
msgid "Workflow Action"
msgstr ""
@@ -29299,7 +29460,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29392,7 +29553,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29421,7 +29582,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1252
msgid "Y Field"
msgstr ""
@@ -29483,7 +29644,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1692
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29519,6 +29680,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29562,7 +29727,7 @@ msgstr ""
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29570,7 +29735,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29643,11 +29808,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:179
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:758
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29697,11 +29862,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29719,7 +29884,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29762,19 +29927,19 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:934
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:960
+#: frappe/public/js/frappe/form/form.js:963
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -29782,11 +29947,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29806,7 +29971,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29834,7 +29999,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29851,15 +30016,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:358
+#: frappe/model/document.py:370
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29879,7 +30044,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29970,6 +30135,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -30015,7 +30184,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30077,11 +30246,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:397
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30252,7 +30421,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:164
msgid "document type..., e.g. customer"
msgstr ""
@@ -30262,7 +30431,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:184
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30309,7 +30478,7 @@ msgid "email inbox"
msgstr ""
#: frappe/permissions.py:425 frappe/permissions.py:436
-#: frappe/public/js/frappe/form/controls/link.js:507
+#: frappe/public/js/frappe/form/controls/link.js:510
msgid "empty"
msgstr ""
@@ -30389,7 +30558,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30418,7 +30587,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30458,7 +30627,7 @@ msgstr ""
msgid "module"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:179
msgid "module name..."
msgstr ""
@@ -30466,7 +30635,7 @@ msgstr ""
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:159
msgid "new type of document"
msgstr ""
@@ -30695,11 +30864,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:174
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:169
msgid "text in document type"
msgstr ""
@@ -30756,7 +30925,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30846,8 +31015,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:375
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "{0} = {1}"
msgstr ""
@@ -30866,7 +31035,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30907,7 +31076,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30917,7 +31086,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30973,7 +31142,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30990,7 +31159,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31003,7 +31172,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:548
+#: frappe/model/document.py:560
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31067,7 +31236,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31112,7 +31281,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:566
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31161,7 +31330,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31181,12 +31350,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31194,11 +31363,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31218,7 +31387,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:546
msgid "{0} is not a zip file"
msgstr ""
@@ -31242,7 +31411,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31252,8 +31421,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31266,7 +31435,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1850
msgid "{0} items selected"
msgstr ""
@@ -31303,35 +31472,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1808
+#: frappe/model/document.py:1822
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1578
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1580
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1562
+#: frappe/model/document.py:1576
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1574 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1568
+#: frappe/model/document.py:1582
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31352,11 +31521,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1222
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1224
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31406,11 +31575,11 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1799
+#: frappe/model/document.py:1813
msgid "{0} row #{1}:"
msgstr ""
@@ -31480,7 +31649,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31516,11 +31685,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31532,7 +31701,7 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:951
+#: frappe/public/js/frappe/form/form.js:954
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
@@ -31540,11 +31709,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:290
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31552,35 +31721,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31608,11 +31777,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31632,7 +31801,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31653,7 +31822,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1310
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31685,15 +31854,15 @@ msgstr ""
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:521
+#: frappe/public/js/frappe/form/form.js:524
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31719,7 +31888,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/my.po b/frappe/locale/my.po
new file mode 100644
index 0000000000..c92da95ee7
--- /dev/null
+++ b/frappe/locale/my.po
@@ -0,0 +1,31819 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: frappe\n"
+"Report-Msgid-Bugs-To: developers@frappe.io\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-11 00:22\n"
+"Last-Translator: developers@frappe.io\n"
+"Language-Team: Burmese\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: my\n"
+"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n"
+"X-Crowdin-File-ID: 52\n"
+"Language: my_MM\n"
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "!="
+msgstr ""
+
+#. Description of the 'Org History Heading' (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "\"Company History\""
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:202
+msgid "\"Parent\" signifies the parent table in which this row must be added"
+msgstr ""
+
+#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "\"Team Members\" or \"Management\""
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1090
+msgid "\"amended_from\" field must be present to do an amendment."
+msgstr ""
+
+#: frappe/utils/csvutils.py:246
+msgid "\"{0}\" is not a valid Google Sheets URL"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
+msgid "#{0}"
+msgstr ""
+
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36
+msgid "${values.doctype_name} has been added to queue for optimization"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "© Frappe Technologies Pvt. Ltd. and contributors"
+msgstr ""
+
+#. Label of the head_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "<head> HTML"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:206
+msgid "'In Global Search' is not allowed for field {0} of type {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1355
+msgid "'In Global Search' not allowed for type {0} in row {1}"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:198
+msgid "'In List View' is not allowed for field {0} of type {1}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:367
+msgid "'In List View' not allowed for type {0} in row {1}"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164
+msgid "'Recipients' not specified"
+msgstr ""
+
+#: frappe/utils/__init__.py:271
+msgid "'{0}' is not a valid IBAN"
+msgstr ""
+
+#: frappe/utils/__init__.py:261
+msgid "'{0}' is not a valid URL"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1349
+msgid "'{0}' not allowed for type {1} in row {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:302
+msgid "(Mandatory)"
+msgstr ""
+
+#: frappe/model/rename_doc.py:703
+msgid "** Failed: {0} to {1}: {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:133
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+msgid "+ Add / Remove Fields"
+msgstr ""
+
+#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
+msgstr ""
+
+#. Description of the 'Priority' (Int) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "0 is highest"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:893
+msgid "1 = True & 0 = False"
+msgstr ""
+
+#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "1 Currency = [?] Fraction\n"
+"For e.g. 1 USD = 100 Cent"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:19
+msgid "1 Day"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
+msgid "1 Google Calendar Event synced."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:963
+msgid "1 Report"
+msgstr ""
+
+#: frappe/tests/test_utils.py:845
+msgid "1 day ago"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:17
+msgid "1 hour"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:52
+#: frappe/tests/test_utils.py:843
+msgid "1 hour ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:48
+#: frappe/tests/test_utils.py:841
+msgid "1 minute ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:66
+#: frappe/tests/test_utils.py:849
+msgid "1 month ago"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:3
+msgid "1 of 2"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:227
+msgid "1 record will be exported"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320
+msgctxt "User removed row from child table"
+msgid "1 row from {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275
+msgctxt "User added row to child table"
+msgid "1 row to {0}"
+msgstr ""
+
+#: frappe/tests/test_utils.py:840
+msgid "1 second ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:62
+#: frappe/tests/test_utils.py:847
+msgid "1 week ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:70
+#: frappe/tests/test_utils.py:851
+msgid "1 year ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:844
+msgid "2 hours ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:850
+msgid "2 months ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:848
+msgid "2 weeks ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:852
+msgid "2 years ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:842
+msgid "3 minutes ago"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:16
+msgid "30 minutes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:18
+msgid "4 hours"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:37
+msgid "5 Records"
+msgstr ""
+
+#: frappe/tests/test_utils.py:846
+msgid "5 days ago"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:36
+msgid "; not allowed in condition"
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "<"
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "<="
+msgstr ""
+
+#. Description of the 'Generate Keys' (Button) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "\n"
+" Click here to learn about token-based authentication\n"
+""
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
+msgid "{0} is not a valid URL"
+msgstr ""
+
+#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
+msgstr ""
+
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
+#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "\n"
+" Edit list of Series in the box. Rules:\n"
+"
\n"
+" - Each Series Prefix on a new line.
\n"
+" - Allowed special characters are \"/\" and \"-\"
\n"
+" - \n"
+" Optionally, set the number of digits in the series using dot (.)\n"
+" followed by hashes (#). For example, \".####\" means that the series\n"
+" will have four digits. Default is five digits.\n"
+"
\n"
+" - \n"
+" You can also use variables in the series name by putting them\n"
+" between (.) dots\n"
+"
\n"
+" Supported Variables:\n"
+" \n"
+" .YYYY. - Year in 4 digits \n"
+" .YY. - Year in 2 digits \n"
+" .MM. - Month \n"
+" .DD. - Day of month \n"
+" .WW. - Week of the year \n"
+" - \n"
+"
.{fieldname}. - fieldname on the document e.g.\n"
+" branch\n"
+" \n"
+" .FY. - Fiscal Year (requires ERPNext to be installed) \n"
+" .ABBR. - Company Abbreviation (requires ERPNext to be installed) \n"
+"
\n"
+" \n"
+"
\n"
+" Examples:\n"
+"
\n"
+" - INV-
\n"
+" - INV-10-
\n"
+" - INVK-
\n"
+" - INV-.YYYY.-.{branch}.-.MM.-.####
\n"
+"
\n"
+"
\n"
+"
\n"
+msgstr ""
+
+#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom CSS Help
\n\n"
+"Notes:
\n\n"
+"\n"
+"- All field groups (label + value) are set attributes
data-fieldtype and data-fieldname \n"
+"- All values are given class
value \n"
+"- All Section Breaks are given class
section-break \n"
+"- All Column Breaks are given class
column-break \n"
+"
\n\n"
+"Examples
\n\n"
+"1. Left align integers
\n\n"
+"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n"
+"1. Add border to sections except the last section
\n\n"
+".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
+".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }
\n"
+msgstr ""
+
+#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#, python-format
+msgid "Print Format Help
\n"
+"
\n"
+"Introduction
\n"
+"Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.
\n"
+"For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.
\n"
+"
\n"
+"References
\n"
+"\n"
+"\t- Jinja Templating Language
\n"
+"\t- Bootstrap CSS Framework
\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\tdoc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tGet document value formatted as Date, Currency, etc. Pass parent doc for currency type fields. | \n"
+"\t\t
\n"
+"\t\t\n"
+"\t\t\tfrappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tGet value from another document. | \n"
+"\t\t
\n"
+"\t\n"
+"
\n"
+msgstr ""
+
+#. Description of the 'Template' (Code) field in DocType 'Address Template'
+#: frappe/contacts/doctype/address_template/address_template.json
+#, python-format
+msgid "Default Template
\n"
+"Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n"
+"{{ address_line1 }}<br>\n"
+"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
+"{{ city }}<br>\n"
+"{% if state %}{{ state }}<br>{% endif -%}\n"
+"{% if pincode %} PIN: {{ pincode }}<br>{% endif -%}\n"
+"{{ country }}<br>\n"
+"{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n"
+"{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n"
+"{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n"
+"
"
+msgstr ""
+
+#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Example
\n\n"
+"Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
+"- Customer: {{ customer }}\n"
+"- Amount: {{ grand_total }}\n"
+"\n\n"
+"How to get fieldnames
\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating
\n\n"
+"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
+msgstr ""
+
+#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Or
"
+msgstr ""
+
+#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+#, python-format
+msgid "Message Example
\n\n"
+"<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
+"<!-- show last comment -->\n"
+"{% if comments %}\n"
+"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
+"<ul>\n"
+"<li>Customer: {{ doc.customer }}\n"
+"<li>Amount: {{ doc.grand_total }}\n"
+"</ul>\n"
+""
+msgstr ""
+
+#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Condition Examples:
\n"
+"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
+"
"
+msgstr ""
+
+#. Content of the 'html_7' (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Examples:
\n"
+"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
+"
\n"
+msgstr ""
+
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+"If you create a separate webform every year to capture feedback from employees add a \n"
+" field named year in doctype and add a filter year = 2023
\n"
+msgstr ""
+
+#. Description of the 'Context Script' (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Set context before rendering a template. Example:
\n"
+"
\n"
+"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
+"
"
+msgstr ""
+
+#. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"New content\";\n"
+"
"
+msgstr ""
+
+#: frappe/twofactor.py:451
+msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
+msgstr ""
+
+#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job
+#. Type'
+#. Description of the 'Cron Format' (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "* * * * *\n"
+"┬ ┬ ┬ ┬ ┬\n"
+"│ │ │ │ │\n"
+"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
+"│ │ │ └───── month (1 - 12)\n"
+"│ │ └────────── day of month (1 - 31)\n"
+"│ └─────────────── hour (0 - 23)\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
+"* - Any value\n"
+"/ - Step values\n"
+"
\n"
+msgstr ""
+
+#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "doc.grand_total > 0
\n\n"
+"Conditions should be written in simple Python. Please use properties available in the form only.
\n"
+"Allowed functions:\n"
+"
\n"
+"- frappe.db.get_value
\n"
+"- frappe.db.get_list
\n"
+"- frappe.session
\n"
+"- frappe.utils.now_datetime
\n"
+"- frappe.utils.get_datetime
\n"
+"- frappe.utils.add_to_date
\n"
+"- frappe.utils.now
\n"
+"
\n"
+"Example:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
+msgstr ""
+
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
+msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "="
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid ">"
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid ">="
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1035
+msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:175
+msgid "A field with the name {0} already exists in {1}"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:269
+msgid "A file with same name {} already exists"
+msgstr ""
+
+#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:5
+msgid "A new account has been created for you at {0}"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431
+msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
+msgstr ""
+
+#. Description of the 'Symbol' (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "A symbol for this currency. For e.g. $"
+msgstr ""
+
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
+msgid "A template already exists for field {0} of {1}"
+msgstr ""
+
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
+#: frappe/utils/password_strength.py:169
+msgid "A word by itself is easy to guess."
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A0"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A1"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A2"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A3"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A4"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A5"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A6"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A7"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A8"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A9"
+msgstr ""
+
+#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "ALL"
+msgstr ""
+
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "API"
+msgstr ""
+
+#. Label of the api_access (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "API Access"
+msgstr ""
+
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "API Endpoint"
+msgstr ""
+
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "API Endpoint Args"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:102
+msgid "API Endpoint Args should be valid JSON"
+msgstr ""
+
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key"
+msgstr ""
+
+#. Description of the 'Authentication' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site."
+msgstr ""
+
+#. Description of the 'API Key' (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "API Key cannot be regenerated"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:456
+msgid "API Keys"
+msgstr ""
+
+#. Label of the api_logging_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "API Logging"
+msgstr ""
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "API Method"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr ""
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Secret"
+msgstr ""
+
+#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "ASC"
+msgstr ""
+
+#. Label of a standard help item
+#. Type: Action
+#: frappe/hooks.py
+msgid "About"
+msgstr ""
+
+#: frappe/www/about.html:11 frappe/www/about.html:18
+msgid "About Us"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/workspace/website/website.json
+msgid "About Us Settings"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "About Us Team Member"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:27
+msgid "About {0} minute remaining"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:28
+msgid "About {0} minutes remaining"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:25
+msgid "About {0} seconds remaining"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:16
+msgid "Accept Invitation"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Accepted"
+msgstr ""
+
+#. Label of the accepted_at (Datetime) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Accepted At"
+msgstr ""
+
+#. Label of the access_control_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Access Control"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/workspace/users/users.json
+msgid "Access Log"
+msgstr ""
+
+#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the access_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Access Token"
+msgstr ""
+
+#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Access Token URL"
+msgstr ""
+
+#: frappe/auth.py:494
+msgid "Access not allowed from this IP Address"
+msgstr ""
+
+#. Label of the account_section (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Account"
+msgstr ""
+
+#. Label of the account_deletion_settings_section (Section Break) field in
+#. DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Account Deletion Settings"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Accounts Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Accounts User"
+msgstr ""
+
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr ""
+
+#. Label of the action (Select) field in DocType 'Amended Document Naming
+#. Settings'
+#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
+#. Label of the action (Data) field in DocType 'Navbar Item'
+#. Label of the action (Select) field in DocType 'Onboarding Step'
+#. Label of the action (Select) field in DocType 'Email Flag Queue'
+#. Label of the action (Link) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_group/email_group.js:34
+#: frappe/email/doctype/email_group/email_group.js:63
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
+msgid "Action"
+msgstr ""
+
+#. Label of the action (Small Text) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+msgid "Action / Route"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
+msgid "Action Complete"
+msgstr ""
+
+#: frappe/model/document.py:1888
+msgid "Action Failed"
+msgstr ""
+
+#. Label of the action_label (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Action Label"
+msgstr ""
+
+#. Label of the action_timeout (Int) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
+msgid "Action Timeout (Seconds)"
+msgstr ""
+
+#. Label of the action_type (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+msgid "Action Type"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:120
+msgid "Action {0} completed successfully on {1} {2}. View it {3}"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
+msgid "Action {0} failed on {1} {2}. View it {3}"
+msgstr ""
+
+#. Label of the actions_section (Tab Break) field in DocType 'DocType'
+#. Label of the actions (Table) field in DocType 'Customize Form'
+#: frappe/core/doctype/communication/communication.js:66
+#: frappe/core/doctype/communication/communication.js:74
+#: frappe/core/doctype/communication/communication.js:82
+#: frappe/core/doctype/communication/communication.js:90
+#: frappe/core/doctype/communication/communication.js:99
+#: frappe/core/doctype/communication/communication.js:108
+#: frappe/core/doctype/communication/communication.js:131
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/rq_job/rq_job_list.js:14
+#: frappe/core/doctype/rq_job/rq_job_list.js:39
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48
+#: frappe/custom/doctype/customize_form/customize_form.js:108
+#: frappe/custom/doctype/customize_form/customize_form.js:116
+#: frappe/custom/doctype/customize_form/customize_form.js:124
+#: frappe/custom/doctype/customize_form/customize_form.js:132
+#: frappe/custom/doctype/customize_form/customize_form.js:140
+#: frappe/custom/doctype/customize_form/customize_form.js:148
+#: frappe/custom/doctype/customize_form/customize_form.js:283
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/ui/page.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:850
+msgid "Actions"
+msgstr ""
+
+#. Label of the activate (Check) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
+msgid "Activate"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/recorder/recorder_list.js:207
+#: frappe/core/doctype/user/user_list.js:12
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/workflow/doctype/workflow/workflow_list.js:5
+msgid "Active"
+msgstr ""
+
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Active Directory"
+msgstr ""
+
+#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
+#. Settings'
+#. Label of the active_domains (Table) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
+msgid "Active Domains"
+msgstr ""
+
+#. Label of the active_sessions (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/www/third_party_apps.html:34
+msgid "Active Sessions"
+msgstr ""
+
+#. Group in User's connections
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:22
+#: frappe/public/js/frappe/form/footer/form_timeline.js:60
+msgid "Activity"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/core/workspace/users/users.json
+msgid "Activity Log"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/email/doctype/email_group/email_group.js:60
+#: frappe/public/js/frappe/form/grid_row.js:502
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
+msgid "Add"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:455
+msgid "Add / Remove Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
+msgid "Add / Update"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:442
+msgid "Add A New Rule"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:601
+#: frappe/public/js/frappe/views/interaction.js:159
+msgid "Add Attachment"
+msgstr ""
+
+#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Background Image"
+msgstr ""
+
+#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Border at Bottom"
+msgstr ""
+
+#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Border at Top"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:37
+msgid "Add Card to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:210
+msgid "Add Chart to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:301
+msgid "Add Child"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
+#: frappe/public/js/frappe/views/reports/report_view.js:360
+#: frappe/public/js/frappe/views/reports/report_view.js:385
+#: frappe/public/js/print_format_builder/Field.vue:112
+msgid "Add Column"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:127
+msgid "Add Contact"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.js:38
+msgid "Add Contacts"
+msgstr ""
+
+#. Label of the add_container (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Container"
+msgstr ""
+
+#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Add Custom Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:188
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
+msgid "Add Filters"
+msgstr ""
+
+#. Label of the add_shade (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Gray Background"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:230
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
+msgid "Add Group"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.js:30
+msgid "Add Indexes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Multiple"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:445
+msgid "Add New Permission Rule"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
+msgid "Add Participants"
+msgstr ""
+
+#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Add Query Parameters"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:819
+msgid "Add Roles"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Row"
+msgstr ""
+
+#. Label of the add_signature (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/public/js/frappe/views/communication.js:133
+msgid "Add Signature"
+msgstr ""
+
+#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Space at Bottom"
+msgstr ""
+
+#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Space at Top"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:38
+#: frappe/email/doctype/email_group/email_group.js:59
+msgid "Add Subscribers"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:425
+msgid "Add Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2151
+msgctxt "Button in list view actions menu"
+msgid "Add Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:433
+msgid "Add Template"
+msgstr ""
+
+#. Label of the add_total_row (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Total Row"
+msgstr ""
+
+#. Label of the add_translate_data (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Translate Data"
+msgstr ""
+
+#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Add Unsubscribe Link"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:6
+msgid "Add User Permissions"
+msgstr ""
+
+#. Label of the add_video_conferencing (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Add Video Conferencing"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Add a Filter"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "Add a New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:211
+msgid "Add a Row"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:30
+#: frappe/templates/includes/comments/comments.html:47
+msgid "Add a comment"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
+#: frappe/public/js/form_builder/components/Tabs.vue:192
+msgid "Add a new section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:193
+msgid "Add a row above the current row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:205
+msgid "Add a row at the bottom"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:201
+msgid "Add a row at the top"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:197
+msgid "Add a row below the current row"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
+msgid "Add a {0} Chart"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:18
+msgid "Add script for Child Table"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
+msgid "Add section above"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:265
+msgid "Add section below"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:52
+#: frappe/public/js/form_builder/components/Tabs.vue:157
+msgid "Add tab"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:252
+msgid "Add to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
+msgid "Add to ToDo"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
+msgid "Add to table"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:99
+msgid "Add to this activity by mailing to {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:289
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Added"
+msgstr ""
+
+#. Description of the '<head> HTML' (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:81
+msgid "Added default log doctypes: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
+msgid "Added {0} ({1})"
+msgstr ""
+
+#. Label of the additional_permissions (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the additional_permissions (Section Break) field in DocType
+#. 'DocPerm'
+#. Label of the additional_permissions_section (Section Break) field in DocType
+#. 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "Additional Permissions"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the address (Link) field in DocType 'Contact'
+#. Label of the address (Section Break) field in DocType 'Contact Us Settings'
+#. Label of the address (Small Text) field in DocType 'Website Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Address"
+msgstr ""
+
+#. Label of the address_line1 (Data) field in DocType 'Address'
+#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Line 1"
+msgstr ""
+
+#. Label of the address_line2 (Data) field in DocType 'Address'
+#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Line 2"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/address_template/address_template.json
+msgid "Address Template"
+msgstr ""
+
+#. Label of the address_title (Data) field in DocType 'Address'
+#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Title"
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.py:72
+msgid "Address Title is mandatory."
+msgstr ""
+
+#. Label of the address_type (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Address Type"
+msgstr ""
+
+#. Description of the 'Address' (Small Text) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Address and other legal information you may want to put in the footer."
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.py:206
+msgid "Addresses"
+msgstr ""
+
+#. Name of a report
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
+msgid "Addresses And Contacts"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Adds a custom client script to a DocType"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
+msgid "Administration"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Administrator"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1226
+msgid "Administrator Logged In"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1220
+msgid "Administrator accessed {0} on {1} via IP Address {2}."
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:52
+msgid "Administrator can't follow"
+msgstr ""
+
+#. Label of the advanced (Section Break) field in DocType 'DocType'
+#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Advanced"
+msgstr ""
+
+#. Label of the advanced_control_section (Section Break) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Advanced Control"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:339
+#: frappe/public/js/frappe/form/controls/link.js:341
+msgid "Advanced Search"
+msgstr ""
+
+#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Advanced Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:64
+#: frappe/public/js/frappe/ui/filters/filter.js:70
+msgid "After"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Cancel"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Delete"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Insert"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save (Submitted Document)"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "After Submission"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Submit"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:63
+msgid "Aggregate Field is required to create a number card"
+msgstr ""
+
+#. Label of the aggregate_function_based_on (Select) field in DocType
+#. 'Dashboard Chart'
+#. Label of the aggregate_function_based_on (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Aggregate Function Based On"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
+msgid "Aggregate Function field is required to create a dashboard chart"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Alert"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Alerts and Notifications"
+msgstr ""
+
+#: frappe/database/query.py:1610
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1535
+msgid "Alias must be a string"
+msgstr ""
+
+#. Label of the align (Select) field in DocType 'Letter Head'
+#. Label of the footer_align (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Align"
+msgstr ""
+
+#. Label of the align_labels_right (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Align Labels to the Right"
+msgstr ""
+
+#. Label of the right (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "Align Right"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:479
+msgid "Align Value"
+msgstr ""
+
+#. Name of a role
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "All"
+msgstr ""
+
+#. Label of the all_day (Check) field in DocType 'Calendar View'
+#. Label of the all_day (Check) field in DocType 'Event'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:408
+msgid "All Day"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.py:43
+msgid "All Images attached to Website Slideshow should be public"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:29
+msgid "All Records"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:2224
+msgid "All Submissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:452
+msgid "All customizations will be removed. Please confirm."
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:158
+msgid "All fields are necessary to submit the comment."
+msgstr ""
+
+#. Description of the 'Document States' (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\""
+msgstr ""
+
+#: frappe/utils/password_strength.py:183
+msgid "All-uppercase is almost as easy to guess as all-lowercase."
+msgstr ""
+
+#. Label of the allocated_to (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+msgid "Allocated To"
+msgstr ""
+
+#. Label of the allow (Link) field in DocType 'User Permission'
+#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:16
+msgid "Allow"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.py:160
+msgid "Allow API Indexing Access"
+msgstr ""
+
+#. Label of the allow_auto_repeat (Check) field in DocType 'DocType'
+#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Auto Repeat"
+msgstr ""
+
+#. Label of the allow_bulk_edit (Check) field in DocType 'DocField'
+#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow Bulk Edit"
+msgstr ""
+
+#. Label of the allow_edit (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow Bulk Editing"
+msgstr ""
+
+#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Consecutive Login Attempts"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
+msgid "Allow Google Calendar Access"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
+msgid "Allow Google Contacts Access"
+msgstr ""
+
+#. Label of the allow_guest (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Allow Guest"
+msgstr ""
+
+#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Allow Guest to View"
+msgstr ""
+
+#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Guests to Upload Files"
+msgstr ""
+
+#. Label of the allow_import (Check) field in DocType 'DocType'
+#. Label of the allow_import (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Import (via Data Import Tool)"
+msgstr ""
+
+#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login After Fail"
+msgstr ""
+
+#. Label of the allow_login_using_mobile_number (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using Mobile Number"
+msgstr ""
+
+#. Label of the allow_login_using_user_name (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using User Name"
+msgstr ""
+
+#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow Modules"
+msgstr ""
+
+#. Label of the allow_older_web_view_links (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Older Web View Links (Insecure)"
+msgstr ""
+
+#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Allow Print for Cancelled"
+msgstr ""
+
+#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Allow Print for Draft"
+msgstr ""
+
+#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web
+#. Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Allow Read On All Link Options"
+msgstr ""
+
+#. Label of the allow_rename (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Allow Rename"
+msgstr ""
+
+#. Label of the roles_permission (Section Break) field in DocType 'Role
+#. Permission for Page and Report'
+#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module
+#. Onboarding'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Allow Roles"
+msgstr ""
+
+#. Label of the allow_self_approval (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Allow Self Approval"
+msgstr ""
+
+#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Sending Usage Data for Improving Applications"
+msgstr ""
+
+#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Allow approval for creator of the document"
+msgstr ""
+
+#. Label of the allow_comments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow comments"
+msgstr ""
+
+#. Label of the allow_delete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow delete"
+msgstr ""
+
+#. Label of the email_append_to (Check) field in DocType 'DocType'
+#. Label of the email_append_to (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow document creation via Email"
+msgstr ""
+
+#. Label of the allow_edit (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow editing after submit"
+msgstr ""
+
+#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow editing even if the doctype has a workflow set up.\n\n"
+"Does nothing if a workflow isn't set up."
+msgstr ""
+
+#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Allow events in timeline"
+msgstr ""
+
+#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow in Quick Entry"
+msgstr ""
+
+#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow incomplete forms"
+msgstr ""
+
+#. Label of the allow_multiple (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow multiple responses"
+msgstr ""
+
+#. Label of the allow_on_submit (Check) field in DocType 'DocField'
+#. Label of the allow_on_submit (Check) field in DocType 'Custom Field'
+#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow on Submit"
+msgstr ""
+
+#. Label of the deny_multiple_sessions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow only one session per user"
+msgstr ""
+
+#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Allow page break inside tables"
+msgstr ""
+
+#. Label of the allow_print (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow print"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:431
+msgid "Allow recording my first session to improve user experience"
+msgstr ""
+
+#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow saving if mandatory fields are not filled"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:424
+msgid "Allow sending usage data for improving applications"
+msgstr ""
+
+#. Description of the 'Login After' (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow user to login only after this hour (0-24)"
+msgstr ""
+
+#. Description of the 'Login Before' (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow user to login only before this hour (0-24)"
+msgstr ""
+
+#. Description of the 'Login with email link' (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow users to log in without a password, using a login link sent to their email"
+msgstr ""
+
+#. Label of the allowed (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Allowed"
+msgstr ""
+
+#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allowed File Extensions"
+msgstr ""
+
+#. Label of the allowed_in_mentions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allowed In Mentions"
+msgstr ""
+
+#. Label of the allowed_modules_section (Section Break) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Allowed Modules"
+msgstr ""
+
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
+#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Allowed Roles"
+msgstr ""
+
+#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allowed embedding domains"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1256
+msgid "Allowing DocType, DocType. Be careful!"
+msgstr ""
+
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1034
+msgid "Already Registered"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:137
+msgid "Already in the following Users ToDo list:{0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:907
+msgid "Also adding the dependent currency field {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:920
+msgid "Also adding the status dependency field {0}"
+msgstr ""
+
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Alternative Email ID"
+msgstr ""
+
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr ""
+
+#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Always add \"Draft\" Heading for printing draft documents"
+msgstr ""
+
+#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always use this email address as sender address"
+msgstr ""
+
+#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always use this name as sender name"
+msgstr ""
+
+#. Label of the amend (Check) field in DocType 'Custom DocPerm'
+#. Label of the amend (Check) field in DocType 'DocPerm'
+#. Label of the amend (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "Amend"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
+#. Settings'
+#. Option for the 'Default Amendment Naming' (Select) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Amend Counter"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+msgid "Amended Document Naming Settings"
+msgstr ""
+
+#. Label of the amended_documents_section (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Amended Documents"
+msgstr ""
+
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+msgid "Amended From"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:12
+msgctxt "Freeze message while amending a document"
+msgid "Amending"
+msgstr ""
+
+#. Label of the amend_naming_override (Table) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Amendment Naming Override"
+msgstr ""
+
+#: frappe/model/document.py:551
+msgid "Amendment Not Allowed"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
+msgid "Amendment naming rules updated."
+msgstr ""
+
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+msgid "An error occurred while setting Session Defaults"
+msgstr ""
+
+#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
+msgstr ""
+
+#: frappe/templates/includes/oauth_confirmation.html:38
+msgid "An unexpected error occurred while authorizing {}."
+msgstr ""
+
+#. Label of the analytics_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Analytics"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:35
+msgid "Ancestors Of"
+msgstr ""
+
+#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Announcement Widget"
+msgstr ""
+
+#. Label of the announcements_section (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Announcements"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Annual"
+msgstr ""
+
+#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
+#. Deletion Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Anonymization Matrix"
+msgstr ""
+
+#. Label of the anonymous (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Anonymous responses"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:189
+msgid "Another transaction is blocking this one. Please try again in a few seconds."
+msgstr ""
+
+#: frappe/model/rename_doc.py:379
+msgid "Another {0} with name {1} exists, select another name"
+msgstr ""
+
+#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
+msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
+msgstr ""
+
+#. Label of the app_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the app_section (Section Break) field in DocType 'User'
+#. Label of the app (Data) field in DocType 'Desktop Icon'
+#. Label of the app (Data) field in DocType 'Workspace'
+#. Label of the app (Data) field in DocType 'Website Theme Ignore App'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+msgid "App"
+msgstr ""
+
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "App ID"
+msgstr ""
+
+#. Label of the app_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "App Logo"
+msgstr ""
+
+#. Label of the app_name (Select) field in DocType 'Module Def'
+#. Label of the app_name (Select) field in DocType 'User Invitation'
+#. Label of the app_name (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "App Name"
+msgstr ""
+
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
+#: frappe/modules/utils.py:280
+msgid "App not found for module: {0}"
+msgstr ""
+
+#: frappe/__init__.py:1113
+msgid "App {0} is not installed"
+msgstr ""
+
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Account'
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Append Emails to Sent Folder"
+msgstr ""
+
+#. Label of the append_to (Link) field in DocType 'Email Account'
+#. Label of the append_to (Link) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "Append To"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:202
+msgid "Append To can be one of {0}"
+msgstr ""
+
+#. Description of the 'Append To' (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:105
+msgid "Applicable Document Types"
+msgstr ""
+
+#. Label of the applicable_for (Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Applicable For"
+msgstr ""
+
+#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings'
+#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Application Logo"
+msgstr ""
+
+#. Label of the app_name (Data) field in DocType 'Installed Application'
+#. Label of the app_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Application Name"
+msgstr ""
+
+#. Label of the app_version (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Application Version"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:195
+msgid "Application is not installed"
+msgstr ""
+
+#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Applied On"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:103
+msgid "Apply"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2136
+msgctxt "Button in list view actions menu"
+msgid "Apply Assignment Rule"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:318
+msgid "Apply Filters"
+msgstr ""
+
+#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Apply Strict User Permissions"
+msgstr ""
+
+#. Label of the view (Select) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Apply To"
+msgstr ""
+
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Apply To All Document Types"
+msgstr ""
+
+#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Apply User Permission On"
+msgstr ""
+
+#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Apply document permissions"
+msgstr ""
+
+#. Description of the 'If user is the owner' (Check) field in DocType 'Custom
+#. DocPerm'
+#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+msgid "Apply this rule if the User is the Owner"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:75
+msgid "Apply to all Documents Types"
+msgstr ""
+
+#: frappe/model/workflow.py:322
+msgid "Applying: {0}"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
+msgid "Approval Required"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Route
+#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/website/js/website.js:619 frappe/www/me.html:80
+msgid "Apps"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:41
+msgctxt "Number system"
+msgid "Ar"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
+msgid "Archive"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Archived"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
+msgid "Archived Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.js:18
+msgid "Are you sure you want to cancel the invitation?"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2115
+msgid "Are you sure you want to clear the assignments?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:294
+msgid "Are you sure you want to delete all rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/attach.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
+msgid "Are you sure you want to delete the attachment?"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:197
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:126
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:65
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:203
+msgid "Are you sure you want to delete this record?"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:191
+msgid "Are you sure you want to discard the changes?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:977
+msgid "Are you sure you want to generate a new report?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:120
+msgid "Are you sure you want to merge {0} with {1}?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
+msgid "Are you sure you want to proceed?"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:25
+msgid "Are you sure you want to re-enable scheduler?"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:163
+msgid "Are you sure you want to relink this communication to {0}?"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:10
+msgid "Are you sure you want to remove all failed jobs?"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:116
+msgid "Are you sure you want to remove the {0} filter?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
+msgid "Are you sure you want to reset all customizations?"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "Are you sure you want to save this document?"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
+msgid "Are you sure?"
+msgstr ""
+
+#. Label of the arguments (Code) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Arguments"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Arial"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:11
+msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:107
+msgid "As document sharing is disabled, please give them the required permissions before assigning."
+msgstr ""
+
+#: frappe/templates/emails/account_deletion_notification.html:3
+msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
+msgstr ""
+
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assign Condition"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
+msgid "Assign To"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2097
+msgctxt "Button in list view actions menu"
+msgid "Assign To"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
+msgid "Assign To User Group"
+msgstr ""
+
+#. Label of the assign_to_users_section (Section Break) field in DocType
+#. 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assign To Users"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
+msgid "Assign a user"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
+msgid "Assign one by one, in sequence"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
+msgid "Assign to me"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
+msgid "Assign to the one who has the least assignments"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
+msgid "Assign to the user set in this field"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Assigned"
+msgstr ""
+
+#. Label of the assigned_by (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
+msgid "Assigned By"
+msgstr ""
+
+#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+msgid "Assigned By Full Name"
+msgstr ""
+
+#: frappe/model/meta.py:62
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:49
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71
+#: frappe/public/js/frappe/model/meta.js:210
+#: frappe/public/js/frappe/model/model.js:136
+#: frappe/public/js/frappe/views/interaction.js:82
+msgid "Assigned To"
+msgstr ""
+
+#: frappe/desk/report/todo/todo.py:40
+msgid "Assigned To/Owner"
+msgstr ""
+
+#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Assignee"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
+msgid "Assigning..."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Assignment"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Assignment Completed"
+msgstr ""
+
+#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
+#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assignment Days"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Tools Workspace
+#. Label of a shortcut in the Tools Workspace
+#. Label of the assignment_rule (Link) field in DocType 'ToDo'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json
+msgid "Assignment Rule"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+msgid "Assignment Rule Day"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+msgid "Assignment Rule User"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+msgid "Assignment Rule is not allowed on document type {0}"
+msgstr ""
+
+#. Label of the assignment_rules_section (Section Break) field in DocType
+#. 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assignment Rules"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:153
+msgid "Assignment Update on {0}"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:78
+msgid "Assignment for {0} {1}"
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo.py:62
+msgid "Assignment of {0} removed by {1}"
+msgstr ""
+
+#. Label of the enable_email_assignment (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
+msgid "Assignments"
+msgstr ""
+
+#. Label of the asynchronous (Check) field in DocType 'Workflow Transition
+#. Task'
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Asynchronous"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:697
+msgid "At least one column is required to show in the grid."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:73
+msgid "At least one field is required in Web Form Fields Table"
+msgstr ""
+
+#: frappe/core/doctype/data_export/data_export.js:44
+msgid "At least one field of Parent Document Type is mandatory"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15
+#: frappe/public/js/frappe/form/controls/attach.js:5
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Attach"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:155
+msgid "Attach Document Print"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Attach Image"
+msgstr ""
+
+#. Label of the attach_package (Attach) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
+msgid "Attach Package"
+msgstr ""
+
+#. Label of the attach_print (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Attach Print"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
+msgid "Attach a web link"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
+msgid "Attach files / urls and add in table."
+msgstr ""
+
+#. Label of the attached_file (Code) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Attached File"
+msgstr ""
+
+#. Label of the attached_to_doctype (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Attached To DocType"
+msgstr ""
+
+#. Label of the attached_to_field (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Attached To Field"
+msgstr ""
+
+#. Label of the attached_to_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Attached To Name"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:152
+msgid "Attached To Name must be a string or an integer"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Attachment"
+msgstr ""
+
+#. Label of the attachment_limit (Int) field in DocType 'Email Account'
+#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Attachment Limit (MB)"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:338
+#: frappe/public/js/frappe/form/sidebar/attachments.js:36
+msgid "Attachment Limit Reached"
+msgstr ""
+
+#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Attachment Link"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Attachment Removed"
+msgstr ""
+
+#. Label of the attachments (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:113
+msgid "Attachments"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:119
+msgid "Attempting Connection to QZ Tray..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:135
+msgid "Attempting to launch QZ Tray..."
+msgstr ""
+
+#: frappe/www/attribution.html:9
+msgid "Attribution"
+msgstr ""
+
+#. Name of a report
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
+msgid "Audit System Hooks"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/audit_trail/audit_trail.json
+msgid "Audit Trail"
+msgstr ""
+
+#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Auth URL Data"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:96
+msgid "Auth URL data should be valid JSON"
+msgstr ""
+
+#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authenticate as Service Principal"
+msgstr ""
+
+#. Label of the authentication_column (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the authentication_credential_section (Section Break) field in
+#. DocType 'Push Notification Settings'
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Authentication"
+msgstr ""
+
+#: frappe/www/qrcode.html:19
+msgid "Authentication Apps you can use are:"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:339
+msgid "Authentication failed while receiving emails from Email Account: {0}."
+msgstr ""
+
+#. Label of the author (Data) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Author"
+msgstr ""
+
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Calendar'
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Contacts'
+#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization
+#. Code'
+#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Authorization Code"
+msgstr ""
+
+#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Authorization URI"
+msgstr ""
+
+#: frappe/templates/includes/oauth_confirmation.html:35
+msgid "Authorization error for {}."
+msgstr ""
+
+#. Label of the authorize_api_access (Button) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authorize API Access"
+msgstr ""
+
+#. Label of the authorize_api_indexing_access (Button) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Authorize API Indexing Access"
+msgstr ""
+
+#. Label of the authorize_google_calendar_access (Button) field in DocType
+#. 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Authorize Google Calendar Access"
+msgstr ""
+
+#. Label of the authorize_google_contacts_access (Button) field in DocType
+#. 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Authorize Google Contacts Access"
+msgstr ""
+
+#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Authorize URL"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Authorized"
+msgstr ""
+
+#: frappe/www/attribution.html:20
+msgid "Authors"
+msgstr ""
+
+#: frappe/www/attribution.html:37
+msgid "Authors / Maintainers"
+msgstr ""
+
+#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
+#. Provider Settings'
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+msgid "Auto"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Auto Email Report"
+msgstr ""
+
+#. Label of the autoname (Data) field in DocType 'DocType'
+#. Label of the autoname (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Auto Name"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/utils/common.js:442
+msgid "Auto Repeat"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+msgid "Auto Repeat Day"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173
+msgid "Auto Repeat Day{0} {1} has been repeated."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479
+msgid "Auto Repeat Document Creation Failed"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
+msgid "Auto Repeat Schedule"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json
+msgid "Auto Repeat User"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/common.js:434
+msgid "Auto Repeat created for this document"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482
+msgid "Auto Repeat failed for {0}"
+msgstr ""
+
+#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Auto Reply"
+msgstr ""
+
+#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Auto Reply Message"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
+msgid "Auto assignment failed: {0}"
+msgstr ""
+
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that are assigned to you"
+msgstr ""
+
+#. Label of the follow_shared_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that are shared with you"
+msgstr ""
+
+#. Label of the follow_liked_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that you Like"
+msgstr ""
+
+#. Label of the follow_commented_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that you comment on"
+msgstr ""
+
+#. Label of the follow_created_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that you create"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
+msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Autocomplete"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Autoincrement"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Automate processes and extend standard functionality using scripts and background jobs"
+msgstr ""
+
+#. Option for the 'Communication Type' (Select) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Automated Message"
+msgstr ""
+
+#. Option for the 'Desk Theme' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/theme_switcher.js:69
+msgid "Automatic"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:772
+msgid "Automatic Linking can be activated only for one Email Account."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:766
+msgid "Automatic Linking can be activated only if Incoming is enabled."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Automatically Assign Documents to Users"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:131
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr ""
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Automatically delete account within (hours)"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Automation"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/controls/password.js:88
+#: frappe/public/js/frappe/ui/group_by/group_by.js:21
+msgid "Average"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
+msgid "Average of {0}"
+msgstr ""
+
+#: frappe/utils/password_strength.py:130
+msgid "Avoid dates and years that are associated with you."
+msgstr ""
+
+#: frappe/utils/password_strength.py:124
+msgid "Avoid recent years."
+msgstr ""
+
+#: frappe/utils/password_strength.py:117
+msgid "Avoid sequences like abc or 6543 as they are easy to guess"
+msgstr ""
+
+#: frappe/utils/password_strength.py:124
+msgid "Avoid years that are associated with you."
+msgstr ""
+
+#. Label of the awaiting_password (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
+msgid "Awaiting Password"
+msgstr ""
+
+#. Label of the awaiting_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Awaiting password"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
+msgid "Awesome Work"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:353
+msgid "Awesome, now try making an entry yourself"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:9
+msgctxt "Number system"
+msgid "B"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B0"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B1"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B10"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B2"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B3"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B4"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B5"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B6"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B7"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B8"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B9"
+msgstr ""
+
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "BCC"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:87
+msgctxt "Email Recipients"
+msgid "BCC"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr ""
+
+#: frappe/templates/pages/integrations/gcalendar-success.html:13
+msgid "Back to Desk"
+msgstr ""
+
+#: frappe/www/404.html:26
+msgid "Back to Home"
+msgstr ""
+
+#: frappe/www/login.html:201 frappe/www/login.html:232
+msgid "Back to Login"
+msgstr ""
+
+#. Label of the background_color (Color) field in DocType 'Number Card'
+#. Label of the background_color (Color) field in DocType 'Social Link
+#. Settings'
+#. Label of the background_color (Link) field in DocType 'Website Theme'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Background Color"
+msgstr ""
+
+#. Label of the background_image (Attach Image) field in DocType 'Web Page
+#. Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Background Image"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Label of the background_jobs_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
+msgid "Background Jobs"
+msgstr ""
+
+#. Label of the background_jobs_check (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Jobs Check"
+msgstr ""
+
+#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Background Jobs Queue"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:87
+msgid "Background Print (required for >25 documents)"
+msgstr ""
+
+#. Label of the background_workers (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the background_workers (Table) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Workers"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:28
+msgid "Backup Encryption Key"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.py:98
+msgid "Backup job is already queued. You will receive an email with the download link"
+msgstr ""
+
+#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the backups_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Backups"
+msgstr ""
+
+#. Label of the backups_size (Float) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Backups (MB)"
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
+msgid "Bad Cron Expression"
+msgstr ""
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Banker's Rounding"
+msgstr ""
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Banker's Rounding (legacy)"
+msgstr ""
+
+#. Label of the banner (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Banner"
+msgstr ""
+
+#. Label of the banner_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Banner HTML"
+msgstr ""
+
+#. Label of the banner_image (Attach Image) field in DocType 'User'
+#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Banner Image"
+msgstr ""
+
+#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Banner is above the Top Menu Bar."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Bar"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Barcode"
+msgstr ""
+
+#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Base Distinguished Name (DN)"
+msgstr ""
+
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Base URL"
+msgstr ""
+
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:286
+#: frappe/printing/page/print/print.js:340
+msgid "Based On"
+msgstr ""
+
+#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Based on Field"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Based on Permissions For User"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Basic"
+msgstr ""
+
+#. Label of the section_break_3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Basic Info"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:63
+#: frappe/public/js/frappe/ui/filters/filter.js:69
+msgid "Before"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Cancel"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Delete"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Insert"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Print"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Save"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Save (Submitted Document)"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Submit"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Validate"
+msgstr ""
+
+#. Option for the 'Level' (Select) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Beginner"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:29
+msgid "Beginning with"
+msgstr ""
+
+#. Label of the beta (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Beta"
+msgstr ""
+
+#: frappe/utils/password_strength.py:73
+msgid "Better add a few more letters or another word"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:27
+msgid "Between"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Billing"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:27
+msgid "Billing Contact"
+msgstr ""
+
+#. Label of the binary_logging (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Binary Logging"
+msgstr ""
+
+#. Label of the bio (Small Text) field in DocType 'User'
+#. Label of the bio (Small Text) field in DocType 'About Us Team Member'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "Bio"
+msgstr ""
+
+#. Label of the birth_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Birth Date"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:41
+msgid "Blank Template"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/block_module/block_module.json
+msgid "Block Module"
+msgstr ""
+
+#. Label of the block_modules (Table) field in DocType 'Module Profile'
+#. Label of the block_modules (Table) field in DocType 'User'
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json
+msgid "Block Modules"
+msgstr ""
+
+#. Label of the blocked (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Blocked"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Blue"
+msgstr ""
+
+#. Label of the bold (Check) field in DocType 'DocField'
+#. Label of the bold (Check) field in DocType 'Custom Field'
+#. Label of the bold (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Bold"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Bot"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:126
+msgid "Both DocType and Name required"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:24
+#: frappe/templates/includes/login/login.js:96
+msgid "Both login and password required"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
+msgid "Bottom"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
+msgid "Bottom Center"
+msgstr ""
+
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
+msgid "Bottom Left"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
+msgid "Bottom Right"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Bounced"
+msgstr ""
+
+#. Label of the brand (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand"
+msgstr ""
+
+#. Label of the brand_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand HTML"
+msgstr ""
+
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand Image"
+msgstr ""
+
+#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Brand Logo"
+msgstr ""
+
+#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
+"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
+msgstr ""
+
+#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
+#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Breadcrumbs"
+msgstr ""
+
+#. Label of the browser (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:36
+msgid "Browser"
+msgstr ""
+
+#. Label of the browser_version (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "Browser Version"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:19
+msgid "Browser not supported"
+msgstr ""
+
+#. Label of the brute_force_security (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Brute Force Security"
+msgstr ""
+
+#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Bufferpool Size"
+msgstr ""
+
+#. Name of a Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:18
+msgid "Build {0}"
+msgstr ""
+
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr ""
+
+#. Label of the bulk_actions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Bulk Actions"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:142
+msgid "Bulk Delete"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:321
+msgid "Bulk Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1190
+msgid "Bulk Edit {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:637
+msgid "Bulk Operation Failed"
+msgstr ""
+
+#: frappe/desk/reportview.py:641
+msgid "Bulk Operation Successful"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+msgid "Bulk Update"
+msgstr ""
+
+#: frappe/model/workflow.py:310
+msgid "Bulk approval only support up to 500 documents."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:56
+msgid "Bulk operation is enqueued in background."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+msgid "Bulk operations only support up to 500 documents."
+msgstr ""
+
+#: frappe/model/workflow.py:299
+msgid "Bulk {0} is enqueued in background."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Button"
+msgstr ""
+
+#. Label of the button_gradients (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Button Gradients"
+msgstr ""
+
+#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Button Rounded Corners"
+msgstr ""
+
+#. Label of the button_shadows (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Button Shadows"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "By \"Naming Series\" field"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:111
+#: frappe/website/doctype/web_page/web_page.js:118
+msgid "By default the title is used as meta title, adding a value here will override it."
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "By fieldname"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "By script"
+msgstr ""
+
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
+msgstr ""
+
+#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
+msgstr ""
+
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "C5E"
+msgstr ""
+
+#: frappe/templates/print_formats/standard_macros.html:220
+msgid "CANCELLED"
+msgstr ""
+
+#. Label of the cc (Code) field in DocType 'Communication'
+#. Label of the cc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "CC"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:77
+msgctxt "Email Recipients"
+msgid "CC"
+msgstr ""
+
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "CMD"
+msgstr ""
+
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "COLOR PICKER"
+msgstr ""
+
+#. Label of the css_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the css (Code) field in DocType 'Print Style'
+#. Label of the css (Code) field in DocType 'Web Page'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "CSS"
+msgstr ""
+
+#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "CSS Class"
+msgstr ""
+
+#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "CSS selector for the element you want to highlight."
+msgstr ""
+
+#. Option for the 'File Type' (Select) field in DocType 'Data Export'
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "CSV"
+msgstr ""
+
+#. Label of the cache_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Cache"
+msgstr ""
+
+#: frappe/sessions.py:35
+msgid "Cache Cleared"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
+msgid "Calculate"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Calendar"
+msgstr ""
+
+#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Calendar Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/public/js/frappe/list/base_list.js:207
+msgid "Calendar View"
+msgstr ""
+
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/contacts/doctype/contact/contact.js:55
+#: frappe/desk/doctype/event/event.json
+msgid "Call"
+msgstr ""
+
+#. Label of the call_to_action (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Call To Action"
+msgstr ""
+
+#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Call To Action URL"
+msgstr ""
+
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Callback Message"
+msgstr ""
+
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Callback Title"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
+msgid "Camera"
+msgstr ""
+
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/public/js/frappe/utils/utils.js:1766
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
+msgid "Campaign"
+msgstr ""
+
+#. Label of the campaign_description (Small Text) field in DocType 'UTM
+#. Campaign'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+msgid "Campaign Description (Optional)"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:4
+#: frappe/public/js/frappe/form/templates/set_sharing.html:50
+msgid "Can Read"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:7
+#: frappe/public/js/frappe/form/templates/set_sharing.html:53
+msgid "Can Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:6
+#: frappe/public/js/frappe/form/templates/set_sharing.html:52
+msgid "Can Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:5
+#: frappe/public/js/frappe/form/templates/set_sharing.html:51
+msgid "Can Write"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:410
+msgid "Can not rename as column {0} is already present on DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1164
+msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
+msgstr ""
+
+#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Can only list down the document types which has been linked to the User document type."
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:48
+msgid "Can't follow since changes are not tracked."
+msgstr ""
+
+#: frappe/model/rename_doc.py:366
+msgid "Can't rename {0} to {1} because {0} doesn't exist."
+msgstr ""
+
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:131
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_invitation/user_invitation.js:17
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
+msgid "Cancel"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2206
+msgctxt "Button in list view actions menu"
+msgid "Cancel"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:68
+msgctxt "Secondary button in warning dialog"
+msgid "Cancel"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:979
+msgid "Cancel All"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:966
+msgid "Cancel All Documents"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2211
+msgctxt "Title of confirmation dialog"
+msgid "Cancel {0} documents?"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'ToDo'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/form/save.py:64
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/model/indicator.js:78
+#: frappe/public/js/frappe/ui/filters/filter.js:540
+msgid "Cancelled"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:52
+msgid "Cancelled Document restored as Draft"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:13
+msgctxt "Freeze message while cancelling a document"
+msgid "Cancelling"
+msgstr ""
+
+#: frappe/desk/form/linked_with.py:381
+msgid "Cancelling documents"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+msgid "Cancelling {0}"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.py:265
+msgid "Cannot Download Report due to insufficient permissions"
+msgstr ""
+
+#: frappe/client.py:452
+msgid "Cannot Fetch Values"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.py:156
+msgid "Cannot Remove"
+msgstr ""
+
+#: frappe/model/base_document.py:1222
+msgid "Cannot Update After Submit"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:646
+msgid "Cannot access file path {0}"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/utils.js:183
+msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:110
+msgid "Cannot cancel before submitting. See Transition {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:294
+msgid "Cannot cancel {0}."
+msgstr ""
+
+#: frappe/model/document.py:1017
+msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
+msgstr ""
+
+#: frappe/model/document.py:1031
+msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/utils.js:170
+msgid "Cannot change state of Cancelled Document ({0} State)"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:99
+msgid "Cannot change state of Cancelled Document. Transition row {0}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1154
+msgid "Cannot change to/from autoincrement autoname in Customize Form"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.py:169
+msgid "Cannot create a {0} against a child document: {1}"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:272
+msgid "Cannot create private workspace of other users"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:165
+msgid "Cannot delete Home and Attachments folders"
+msgstr ""
+
+#: frappe/model/delete_doc.py:419
+msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:369
+msgid "Cannot delete standard action. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:391
+msgid "Cannot delete standard document state."
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:321
+msgid "Cannot delete standard field {0}. You can hide it instead."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:38
+#: frappe/public/js/form_builder/components/Section.vue:117
+#: frappe/public/js/form_builder/components/Section.vue:190
+#: frappe/public/js/form_builder/components/Tabs.vue:56
+msgid "Cannot delete standard field. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:347
+msgid "Cannot delete standard link. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:313
+msgid "Cannot delete system generated field {0}. You can hide it instead."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:215
+msgid "Cannot delete {0}"
+msgstr ""
+
+#: frappe/utils/nestedset.py:312
+msgid "Cannot delete {0} as it has child nodes"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard/dashboard.py:48
+msgid "Cannot edit Standard Dashboards"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:202
+msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
+msgid "Cannot edit Standard charts"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:72
+msgid "Cannot edit a standard report. Please duplicate and create a new report"
+msgstr ""
+
+#: frappe/model/document.py:1037
+msgid "Cannot edit cancelled document"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
+msgid "Cannot edit filters for standard charts"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
+msgid "Cannot edit filters for standard number cards"
+msgstr ""
+
+#: frappe/client.py:166
+msgid "Cannot edit standard fields"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131
+msgid "Cannot enable {0} for a non-submittable doctype"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:264
+msgid "Cannot find file {} on disk"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:586
+msgid "Cannot get file contents of a Folder"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:884
+msgid "Cannot have multiple printers mapped to a single print format."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1134
+msgid "Cannot import table with more than 5000 rows."
+msgstr ""
+
+#: frappe/model/document.py:1105
+msgid "Cannot link cancelled document: {0}"
+msgstr ""
+
+#: frappe/model/mapper.py:175
+msgid "Cannot map because following condition fails:"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:971
+msgid "Cannot match column {0} with any field"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:176
+msgid "Cannot move row"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:932
+msgid "Cannot remove ID field"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.py:132
+msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:235
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:67
+msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:291
+msgid "Cannot submit {0}."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
+msgid "Cannot update {0}"
+msgstr ""
+
+#: frappe/model/db_query.py:1136
+msgid "Cannot use sub-query here."
+msgstr ""
+
+#: frappe/model/db_query.py:1168
+msgid "Cannot use {0} in order/group by"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:297
+msgid "Cannot {0} {1}."
+msgstr ""
+
+#: frappe/utils/password_strength.py:181
+msgid "Capitalization doesn't help very much."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:294
+msgid "Capture"
+msgstr ""
+
+#. Label of the card (Link) field in DocType 'Number Card Link'
+#: frappe/desk/doctype/number_card_link/number_card_link.json
+msgid "Card"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+msgid "Card Break"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:262
+msgid "Card Label"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:262
+msgid "Card Links"
+msgstr ""
+
+#. Label of the cards (Table) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
+msgid "Cards"
+msgstr ""
+
+#. Label of the category (Data) field in DocType 'Desktop Icon'
+#. Label of the category (Link) field in DocType 'Help Article'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/views/interaction.js:72
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Category"
+msgstr ""
+
+#. Label of the category_description (Text) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
+msgid "Category Description"
+msgstr ""
+
+#. Label of the category_name (Data) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
+msgid "Category Name"
+msgstr ""
+
+#. Option for the 'Align' (Select) field in DocType 'Letter Head'
+#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Center"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:16
+msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
+#: frappe/tests/test_translate.py:111
+msgid "Change"
+msgstr ""
+
+#: frappe/tests/test_translate.py:112
+msgctxt "Coins"
+msgid "Change"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38
+msgid "Change Image"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Change Label (via Custom Translation)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
+msgid "Change Letter Head"
+msgstr ""
+
+#. Label of the change_password (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Change Password"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
+msgid "Change Print Format"
+msgstr ""
+
+#. Description of the 'Update Series Counter' (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Change the starting / current sequence number of an existing series.
\n\n"
+"Warning: Incorrectly updating counters can prevent documents from getting created."
+msgstr ""
+
+#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed at"
+msgstr ""
+
+#. Label of the changed_by (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed by"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Changelog Feed"
+msgstr ""
+
+#. Label of the changed_values (HTML) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changes"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.js:5
+msgid "Changing any setting will reflect on all the email accounts associated with this domain."
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.js:67
+msgid "Changing rounding method on site with data can result in unexpected behaviour."
+msgstr ""
+
+#. Label of the channel (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Channel"
+msgstr ""
+
+#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Chart"
+msgstr ""
+
+#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+msgid "Chart Configuration"
+msgstr ""
+
+#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
+#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/public/js/frappe/views/reports/query_report.js:289
+#: frappe/public/js/frappe/widgets/widget_dialog.js:137
+msgid "Chart Name"
+msgstr ""
+
+#. Label of the chart_options (Code) field in DocType 'Dashboard'
+#. Label of the chart_options_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Chart Options"
+msgstr ""
+
+#. Label of the source (Link) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Chart Source"
+msgstr ""
+
+#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/views/reports/report_view.js:510
+msgid "Chart Type"
+msgstr ""
+
+#. Label of the charts (Table) field in DocType 'Dashboard'
+#. Label of the charts (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Charts"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Chat"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Check"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:99
+msgid "Check Request URL"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485
+msgid "Check the Error Log for more information: {0}"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:147
+msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
+msgstr ""
+
+#. Description of the 'User must always select' (Check) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
+msgstr ""
+
+#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:235
+msgid "Checking one moment"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:140
+msgid "Checking this will enable tracking page views for blogs, web pages, etc."
+msgstr ""
+
+#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
+#. DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Checking this will hide custom doctypes and reports cards in Links section"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:78
+msgid "Checking this will publish the page on your website and it'll be visible to everyone."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:104
+msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
+msgstr ""
+
+#: frappe/www/list.py:85
+msgid "Child DocTypes are not allowed"
+msgstr ""
+
+#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Child Doctype"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1648
+msgid "Child Table {0} for field {1}"
+msgstr ""
+
+#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:53
+msgid "Child Tables are shown as a Grid in other DocTypes"
+msgstr ""
+
+#: frappe/database/query.py:662
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
+msgid "Choose Existing Card or create New Card"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:571
+msgid "Choose a block or continue typing"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
+#: frappe/public/js/frappe/form/controls/color.js:5
+msgid "Choose a color"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
+#: frappe/public/js/frappe/form/controls/icon.js:5
+msgid "Choose an icon"
+msgstr ""
+
+#. Description of the 'Two Factor Authentication method' (Select) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Choose authentication method to be used by all users"
+msgstr ""
+
+#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "City"
+msgstr ""
+
+#. Label of the city (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "City/Town"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:12
+#: frappe/public/js/frappe/form/controls/attach.js:16
+msgid "Clear"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:438
+msgid "Clear & Add Template"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:114
+msgid "Clear & Add template"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2112
+msgctxt "Button in list view actions menu"
+msgid "Clear Assignment"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:287
+msgid "Clear Cache and Reload"
+msgstr ""
+
+#: frappe/core/doctype/error_log/error_log_list.js:12
+msgid "Clear Error Logs"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Clear Filters"
+msgstr ""
+
+#. Label of the days (Int) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
+msgid "Clear Logs After (days)"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:144
+msgid "Clear User Permissions"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:439
+msgid "Clear the email message and add the template"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.py:215
+msgid "Clearing end date, as it cannot be in the past for published pages."
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
+msgid "Click On Customize to add your first widget"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:8
+msgid "Click below to get started:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:154
+msgid "Click here"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538
+msgid "Click on a file to select it."
+msgstr ""
+
+#: frappe/templates/emails/login_with_email_link.html:19
+msgid "Click on the button to log in to {0}"
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:2
+msgid "Click on the link below to approve the request"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:7
+msgid "Click on the link below to complete your registration and set a new password"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:3
+msgid "Click on the link below to download your data"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:4
+msgid "Click on the link below to verify your request"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
+#: frappe/website/doctype/website_settings/website_settings.py:161
+msgid "Click on {0} to generate Refresh Token."
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:222
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
+msgid "Click table to edit"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:419
+msgid "Click to Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:278
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:741
+msgid "Click to sort by {0}"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Clicked"
+msgstr ""
+
+#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "Client"
+msgstr ""
+
+#. Label of the client_code_section (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Client Code"
+msgstr ""
+
+#. Label of the sb_client_credentials_section (Section Break) field in DocType
+#. 'Connected App'
+#. Label of the client_credentials (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client Credentials"
+msgstr ""
+
+#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
+#. Label of the client_id (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client ID"
+msgstr ""
+
+#. Label of the client_id (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Client Id"
+msgstr ""
+
+#. Label of the client_information (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client Information"
+msgstr ""
+
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#. Label of the client_script (Code) field in DocType 'DocType Layout'
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/website/doctype/web_page/web_page.js:103
+msgid "Client Script"
+msgstr ""
+
+#. Label of the client_secret (Password) field in DocType 'Connected App'
+#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#. Label of the client_secret (Password) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client Secret"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client URLs"
+msgstr ""
+
+#. Label of the client_script (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Client script"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:39
+#: frappe/desk/doctype/todo/todo.js:23
+#: frappe/public/js/frappe/form/form_tour.js:17
+#: frappe/public/js/frappe/ui/messages.js:251
+#: frappe/website/js/bootstrap-4.js:24
+msgid "Close"
+msgstr ""
+
+#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Close Condition"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+msgid "Close properties"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Activity Log'
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'ToDo'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+msgid "Closed"
+msgstr ""
+
+#: frappe/templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
+msgid "Cmd+Enter to add comment"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the code (Data) field in DocType 'Country'
+#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Code"
+msgstr ""
+
+#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Code Challenge"
+msgstr ""
+
+#. Label of the code_editor_type (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Code Editor Type"
+msgstr ""
+
+#. Label of the code_challenge_method (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Code challenge method"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:276
+#: frappe/public/js/frappe/ui/sidebar.html:11
+#: frappe/public/js/frappe/widgets/base_widget.js:159
+msgid "Collapse"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/code.js:184
+msgctxt "Shrink code field."
+msgid "Collapse"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
+#: frappe/public/js/frappe/views/treeview.js:123
+msgid "Collapse All"
+msgstr ""
+
+#. Label of the collapsible (Check) field in DocType 'DocField'
+#. Label of the collapsible (Check) field in DocType 'Custom Field'
+#. Label of the collapsible (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Collapsible"
+msgstr ""
+
+#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Collapsible Depends On"
+msgstr ""
+
+#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Collapsible Depends On (JS)"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the color (Data) field in DocType 'DocType'
+#. Label of the color (Select) field in DocType 'DocType State'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the color (Color) field in DocType 'Dashboard Chart'
+#. Label of the color (Color) field in DocType 'Dashboard Chart Field'
+#. Label of the color (Data) field in DocType 'Desktop Icon'
+#. Label of the color (Color) field in DocType 'Event'
+#. Label of the color (Color) field in DocType 'Number Card'
+#. Label of the color (Color) field in DocType 'ToDo'
+#. Label of the color (Color) field in DocType 'Workspace Shortcut'
+#. Name of a DocType
+#. Label of the color (Color) field in DocType 'Color'
+#. Label of the color (Color) field in DocType 'Social Link Settings'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
+#: frappe/public/js/frappe/widgets/widget_dialog.js:546
+#: frappe/public/js/frappe/widgets/widget_dialog.js:694
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Color"
+msgstr "အရောင်"
+
+#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/public/js/form_builder/components/Section.vue:270
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
+msgid "Column"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:28
+msgid "Column 1"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
+msgid "Column {0} already exist."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Column Break"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:140
+msgid "Column Labels:"
+msgstr ""
+
+#. Label of the column_name (Data) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/data_export/exporter.py:25
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Column Name"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:45
+msgid "Column Name cannot be empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:455
+msgid "Column Width"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:662
+msgid "Column width cannot be zero."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr ""
+
+#. Label of the columns (Int) field in DocType 'DocField'
+#. Label of the columns_section (Section Break) field in DocType 'Report'
+#. Label of the columns (Table) field in DocType 'Report'
+#. Label of the columns (Int) field in DocType 'Custom Field'
+#. Label of the columns (Int) field in DocType 'Customize Form Field'
+#. Label of the columns (Table) field in DocType 'Kanban Board'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+msgid "Columns"
+msgstr ""
+
+#. Label of the columns (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Columns / Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
+msgid "Columns based on"
+msgstr ""
+
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
+msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Comm10E"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/version/version_view.html:3
+#: frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:237
+#: frappe/templates/includes/comments/comments.html:34
+msgid "Comment"
+msgstr ""
+
+#. Label of the comment_by (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Comment By"
+msgstr ""
+
+#. Label of the comment_email (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Comment Email"
+msgstr ""
+
+#. Label of the comment_type (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Comment Type"
+msgstr ""
+
+#: frappe/desk/form/utils.py:58
+msgid "Comment can only be edited by the owner"
+msgstr ""
+
+#: frappe/desk/form/utils.py:75
+msgid "Comment publicity can only be updated by the original author or a System Manager."
+msgstr ""
+
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:129
+msgid "Comments"
+msgstr ""
+
+#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Comments and Communications will be associated with this linked document"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:52
+msgid "Comments cannot have links or email addresses"
+msgstr ""
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Commercial Rounding"
+msgstr ""
+
+#. Label of the commit (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Commit"
+msgstr ""
+
+#. Label of the committed (Check) field in DocType 'Console Log'
+#: frappe/desk/doctype/console_log/console_log.json
+msgid "Committed"
+msgstr ""
+
+#: frappe/utils/password_strength.py:176
+msgid "Common names and surnames are easy to guess."
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Communication Type' (Select) field in DocType
+#. 'Communication'
+#. Label of the communication (Data) field in DocType 'Email Flag Queue'
+#. Label of the communication (Link) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119
+msgid "Communication"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/communication_link/communication_link.json
+msgid "Communication Link"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Communication Logs"
+msgstr ""
+
+#. Label of the communication_type (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Communication Type"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
+msgid "Communication secret not set"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/company_history/company_history.json
+#: frappe/www/about.html:29
+msgid "Company History"
+msgstr ""
+
+#. Label of the company_introduction (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Company Introduction"
+msgstr ""
+
+#. Label of the company_name (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Company Name"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.js:14
+#: frappe/custom/doctype/client_script/client_script.js:56
+#: frappe/public/js/frappe/utils/diffview.js:28
+msgid "Compare Versions"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.py:159
+msgid "Compilation warning"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.py:123
+msgid "Compiled Successfully"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/www/complete_signup.html:21
+msgid "Complete"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
+msgid "Complete By"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:479
+#: frappe/templates/emails/new_user.html:10
+msgid "Complete Registration"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/slides.js:355
+msgctxt "Finish the setup wizard"
+msgid "Complete Setup"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/utils/goal.py:117
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Completed"
+msgstr ""
+
+#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Completed By Role"
+msgstr ""
+
+#. Label of the completed_by (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Completed By User"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Web Template'
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Component"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:184
+msgid "Compose Email"
+msgstr ""
+
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Compressed"
+msgstr ""
+
+#. Label of the condition (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the condition (Code) field in DocType 'Navbar Item'
+#. Label of the condition (Small Text) field in DocType 'Bulk Update'
+#. Label of the condition (Code) field in DocType 'Notification'
+#. Label of the condition (Data) field in DocType 'Notification Recipient'
+#. Label of the condition (Small Text) field in DocType 'Webhook'
+#. Label of the condition (Code) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition JSON"
+msgstr ""
+
+#. Label of the condition_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Type"
+msgstr ""
+
+#. Label of the condition_description (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition description"
+msgstr ""
+
+#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
+#. Label of the conditions (Section Break) field in DocType 'Workflow
+#. Transition'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Conditions"
+msgstr ""
+
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
+#. Label of the configuration_section (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Configuration"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:492
+msgid "Configure Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:407
+msgid "Configure Columns"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
+#. Description of the 'Amended Documents' (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.
\n\n"
+"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n"
+"Default Naming will make the amended document to behave same as new documents."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure various aspects of how document naming works like naming series, current counter."
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:66
+msgid "Confirm"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:31
+msgctxt "Title of confirmation dialog"
+msgid "Confirm"
+msgstr ""
+
+#: frappe/integrations/oauth2.py:138
+msgid "Confirm Access"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
+msgid "Confirm Deletion of Account"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:184
+msgid "Confirm New Password"
+msgstr ""
+
+#: frappe/www/update-password.html:55
+msgid "Confirm Password"
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
+msgid "Confirm Request"
+msgstr ""
+
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Confirmation Email Template"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
+msgid "Confirmed"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
+msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.js:20
+msgid "Connect to {}"
+msgstr ""
+
+#. Label of the connected_app (Link) field in DocType 'Email Account'
+#. Name of a DocType
+#. Label of the connected_app (Link) field in DocType 'Token Cache'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Connected App"
+msgstr ""
+
+#. Label of the connected_user (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Connected User"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
+msgid "Connected to QZ Tray!"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:36
+msgid "Connection Lost"
+msgstr ""
+
+#: frappe/templates/pages/integrations/gcalendar-success.html:3
+msgid "Connection Success"
+msgstr ""
+
+#: frappe/public/js/frappe/dom.js:446
+msgid "Connection lost. Some features might not work."
+msgstr ""
+
+#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
+#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the connections_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:54
+msgid "Connections"
+msgstr ""
+
+#. Label of the console (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Console"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/console_log/console_log.json
+msgid "Console Log"
+msgstr ""
+
+#: frappe/desk/doctype/console_log/console_log.py:24
+msgid "Console Logs can not be deleted"
+msgstr ""
+
+#. Label of the constraints_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Constraints"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.js:113
+msgid "Contact"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
+#. Label of the sb_01 (Section Break) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Contact Details"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/contact_email/contact_email.json
+msgid "Contact Email"
+msgstr ""
+
+#. Label of the phone_nos (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Contact Numbers"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
+msgid "Contact Phone"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
+msgid "Contact Synced with Google Contacts."
+msgstr ""
+
+#: frappe/www/contact.html:4
+msgid "Contact Us"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/workspace/website/website.json
+msgid "Contact Us Settings"
+msgstr ""
+
+#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
+msgstr ""
+
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
+#: frappe/utils/change_log.py:362
+msgid "Contains {0} security fix"
+msgstr ""
+
+#: frappe/utils/change_log.py:360
+msgid "Contains {0} security fixes"
+msgstr ""
+
+#. Label of the content (HTML Editor) field in DocType 'Comment'
+#. Label of the content (Text Editor) field in DocType 'Note'
+#. Label of the content (Long Text) field in DocType 'Workspace'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. Label of the sb1 (Section Break) field in DocType 'Web Page'
+#. Label of the content (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/utils/utils.js:1782
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:41
+msgid "Content"
+msgstr ""
+
+#. Label of the content_hash (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Content Hash"
+msgstr ""
+
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Content Type"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:86
+msgid "Content data shoud be a list"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:91
+msgid "Content type for building the page"
+msgstr ""
+
+#. Label of the context (Data) field in DocType 'Translation'
+#. Label of the context_section (Section Break) field in DocType 'Web Page'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Context"
+msgstr ""
+
+#. Label of the context_script (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Context Script"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:204
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:232
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:272
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:312
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:361
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:383
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:423
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:531
+msgid "Continue"
+msgstr ""
+
+#. Label of the contributed (Check) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contributed"
+msgstr ""
+
+#. Label of the contribution_docname (Data) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contribution Document Name"
+msgstr ""
+
+#. Label of the contribution_status (Select) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contribution Status"
+msgstr ""
+
+#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1036
+msgid "Copied to clipboard."
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93
+msgid "Copy Link"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:29
+msgid "Copy embed code"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:621
+msgid "Copy error to clipboard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:507
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:487
+msgid "Copy token to clipboard"
+msgstr ""
+
+#. Label of the copyright (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Copyright"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:125
+msgid "Core DocTypes cannot be customized."
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
+msgid "Core Modules {0} cannot be searched in Global Search."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:660
+msgid "Correct version :"
+msgstr ""
+
+#: frappe/email/smtp.py:78
+msgid "Could not connect to outgoing email server"
+msgstr ""
+
+#: frappe/model/document.py:1101
+msgid "Could not find {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:933
+msgid "Could not map column {0} to field {1}"
+msgstr ""
+
+#: frappe/database/query.py:566
+msgid "Could not parse field: {0}"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up:"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:383
+msgid "Couldn't save, please check the data you have entered"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#. Label of the count (Int) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:19
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
+#: frappe/workflow/doctype/workflow/workflow.js:162
+msgid "Count"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
+msgid "Count Customizations"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
+#. Shortcut'
+#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
+msgid "Count Filter"
+msgstr ""
+
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr ""
+
+#. Label of the counter (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Counter"
+msgstr ""
+
+#. Label of the country (Link) field in DocType 'Address'
+#. Label of the country (Link) field in DocType 'Address Template'
+#. Label of the country (Link) field in DocType 'System Settings'
+#. Name of a DocType
+#. Label of the country (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Country"
+msgstr ""
+
+#: frappe/utils/__init__.py:132
+msgid "Country Code Required"
+msgstr ""
+
+#. Label of the country_name (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "Country Name"
+msgstr ""
+
+#. Label of the county (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "County"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:23
+#: frappe/public/js/frappe/utils/number_systems.js:45
+msgctxt "Number system"
+msgid "Cr"
+msgstr ""
+
+#. Label of the create (Check) field in DocType 'Custom DocPerm'
+#. Label of the create (Check) field in DocType 'DocPerm'
+#. Label of the create (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/communication/communication.js:117
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/public/js/frappe/form/reminders.js:49
+#: frappe/public/js/frappe/views/file/file_view.js:112
+#: frappe/public/js/frappe/views/interaction.js:18
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
+#: frappe/public/js/frappe/views/workspace/workspace.js:469
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+msgid "Create"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:103
+msgid "Create & Continue"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
+msgid "Create Address"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
+msgid "Create Card"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
+msgid "Create Chart"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:62
+msgid "Create Child Doctype"
+msgstr ""
+
+#. Label of the create_contact (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Create Contacts from Incoming Emails"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Create Entry"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
+msgid "Create Letter Head"
+msgstr ""
+
+#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Create Log"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
+#: frappe/public/js/frappe/views/treeview.js:378
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:41
+msgid "Create New"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:514
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:101
+msgid "Create New DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:204
+msgid "Create New Kanban Board"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:264
+msgid "Create User Email"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16
+msgid "Create a New Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:9
+msgid "Create a Reminder"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
+msgid "Create a new ..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
+msgid "Create a new record"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:315
+#: frappe/public/js/frappe/form/controls/link.js:317
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
+msgid "Create a new {0}"
+msgstr ""
+
+#: frappe/www/login.html:162
+msgid "Create a {0} Account"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+msgid "Create or Edit Print Format"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
+msgid "Create or Edit Workflow"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:509
+msgid "Create your first {0}"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:16
+msgid "Create your workflow visually using the Workflow Builder."
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/views/file/file_view.js:370
+msgid "Created"
+msgstr ""
+
+#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Created At"
+msgstr ""
+
+#: frappe/model/meta.py:58
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73
+#: frappe/public/js/frappe/model/meta.js:206
+#: frappe/public/js/frappe/model/model.js:123
+msgid "Created By"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:65
+msgid "Created Custom Field {0} in {1}"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
+#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53
+#: frappe/public/js/frappe/model/meta.js:201
+#: frappe/public/js/frappe/model/model.js:125
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479
+msgid "Created On"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:517
+#: frappe/public/js/frappe/views/treeview.js:393
+msgid "Creating {0}"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
+msgid "Creation of this document is only permitted in developer mode."
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Cron"
+msgstr ""
+
+#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
+#. Label of the cron_format (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Cron Format"
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
+msgid "Cron format is required for job types with Cron frequency."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
+msgid "Crop"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Down"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:32
+msgid "Ctrl+Enter to add comment"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Label of the currency (Link) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the currency (Link) field in DocType 'Dashboard Chart'
+#. Label of the currency (Link) field in DocType 'Number Card'
+#. Name of a DocType
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:414
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Currency"
+msgstr ""
+
+#. Label of the currency_name (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency Name"
+msgstr ""
+
+#. Label of the currency_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Currency Precision"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency list stores the currency value, its symbol and fraction unit"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Current"
+msgstr ""
+
+#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Current Job ID"
+msgstr ""
+
+#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Current Value"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Current status"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_viewers.js:5
+msgid "Currently Viewing"
+msgstr ""
+
+#. Label of the custom (Check) field in DocType 'DocType Action'
+#. Label of the custom (Check) field in DocType 'DocType Link'
+#. Label of the custom (Check) field in DocType 'DocType State'
+#. Label of the custom (Check) field in DocType 'Module Def'
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Label of the custom (Check) field in DocType 'Desktop Icon'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_type/user_type_list.js:7
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/frappe/form/reminders.js:20
+msgid "Custom"
+msgstr ""
+
+#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Custom Base URL"
+msgstr ""
+
+#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
+#. Block'
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+msgid "Custom Block Name"
+msgstr ""
+
+#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the custom_blocks (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Custom Blocks"
+msgstr ""
+
+#. Label of the css (Code) field in DocType 'Print Format'
+#. Label of the custom_css (Code) field in DocType 'Web Form'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Custom CSS"
+msgstr ""
+
+#. Label of the custom_configuration_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Custom Configuration"
+msgstr ""
+
+#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Custom Delimiters"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+msgid "Custom DocPerm"
+msgstr ""
+
+#. Label of the custom_select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Custom Document Types (Select Permission)"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:105
+msgid "Custom Document Types Limit Exceeded"
+msgstr ""
+
+#: frappe/desk/desktop.py:524
+msgid "Custom Documents"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Custom Field"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:220
+msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:277
+msgid "Custom Fields can only be added to a standard DocType."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:274
+msgid "Custom Fields cannot be added to core DocTypes."
+msgstr ""
+
+#. Label of the custom_footer_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Custom Footer"
+msgstr ""
+
+#. Label of the custom_format (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom Format"
+msgstr ""
+
+#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Custom Group Search"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
+msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:190
+#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
+msgid "Custom HTML"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "Custom HTML Block"
+msgstr ""
+
+#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom HTML Help"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
+msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Web Form Field'
+#. Label of the label (Data) field in DocType 'Web Form List Column'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+msgid "Custom Label"
+msgstr ""
+
+#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Custom Menu Items"
+msgstr ""
+
+#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Custom Options"
+msgstr ""
+
+#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom Overrides"
+msgstr ""
+
+#. Option for the 'Report Type' (Select) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Custom Report"
+msgstr ""
+
+#: frappe/desk/desktop.py:525
+msgid "Custom Reports"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/custom_role/custom_role.json
+msgid "Custom Role"
+msgstr ""
+
+#. Label of the custom_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom SCSS"
+msgstr ""
+
+#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Custom Sidebar Menu"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Custom Translation"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:423
+msgid "Custom field renamed to {0} successfully."
+msgstr ""
+
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
+#. Label of the custom (Check) field in DocType 'DocType'
+#. Label of the custom (Check) field in DocType 'Website Theme'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:83
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom?"
+msgstr ""
+
+#. Group in DocType's connections
+#. Group in Module Def's connections
+#. Label of a Card Break in the Build Workspace
+#. Label of the customization_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Customization"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:358
+msgid "Customizations Discarded"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:465
+msgid "Customizations Reset"
+msgstr ""
+
+#: frappe/modules/utils.py:96
+msgid "Customizations for {0} exported to:
{1}"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:184
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:600
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
+msgid "Customize"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1949
+msgctxt "Button in list view menu"
+msgid "Customize"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:89
+msgid "Customize Child Table"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
+msgid "Customize Dashboard"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33
+#: frappe/core/doctype/doctype/doctype.js:61
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+msgid "Customize Form"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:100
+msgid "Customize Form - {0}"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Customize Form Field"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Customize properties, naming, fields and more for standard doctypes"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:144
+msgid "Cut"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Cyan"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "DELETE"
+msgstr ""
+
+#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "DESC"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "DLE"
+msgstr ""
+
+#: frappe/templates/print_formats/standard_macros.html:215
+msgid "DRAFT"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Frequency' (Select) field in DocType 'User'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:398
+#: frappe/website/report/website_analytics/website_analytics.js:23
+msgid "Daily"
+msgstr ""
+
+#: frappe/templates/emails/upcoming_events.html:8
+msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
+msgstr ""
+
+#: frappe/desk/doctype/event/event.py:104
+msgid "Daily Events should finish on the Same Day."
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Daily Long"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Daily Maintenance"
+msgstr ""
+
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Danger"
+msgstr ""
+
+#. Option for the 'Desk Theme' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Dark"
+msgstr ""
+
+#. Label of the dark_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Dark Color"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:65
+msgid "Dark Theme"
+msgstr ""
+
+#. Label of the dashboard (Check) field in DocType 'User'
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:10
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
+#: frappe/public/js/frappe/utils/utils.js:935
+msgid "Dashboard"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
+msgid "Dashboard Chart"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+msgid "Dashboard Chart Field"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Dashboard Chart Link"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+msgid "Dashboard Chart Source"
+msgstr ""
+
+#. Name of a role
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dashboard Manager"
+msgstr ""
+
+#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
+msgid "Dashboard Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+msgid "Dashboard Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:204
+msgid "Dashboard View"
+msgstr ""
+
+#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Dashboards"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#. Label of the data (Code) field in DocType 'Deleted Document'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Data"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/data.js:59
+msgid "Data Clipped"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Data Export"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the data_import (Link) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Data Import"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Data Import Log"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:174
+msgid "Data Import Template"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:619
+msgid "Data Too Long"
+msgstr ""
+
+#. Label of the database (Data) field in DocType 'System Health Report'
+#. Label of the database_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database"
+msgstr ""
+
+#. Label of the engine (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Database Engine"
+msgstr ""
+
+#. Label of the database_processes_section (Section Break) field in DocType
+#. 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Database Processes"
+msgstr ""
+
+#: frappe/public/js/frappe/doctype/index.js:38
+msgid "Database Row Size Utilization"
+msgstr ""
+
+#. Name of a report
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
+msgid "Database Storage Usage By Tables"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:251
+msgid "Database Table Row Size Limit"
+msgstr ""
+
+#: frappe/public/js/frappe/doctype/index.js:40
+msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
+msgstr ""
+
+#. Label of the database_version (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database Version"
+msgstr ""
+
+#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
+#. Label of the communication_date (Datetime) field in DocType 'Communication'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/report/todo/todo.py:38
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Date"
+msgstr ""
+
+#. Label of the date_format (Select) field in DocType 'Language'
+#. Label of the date_format (Select) field in DocType 'System Settings'
+#. Label of the date_format (Data) field in DocType 'Country'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+msgid "Date Format"
+msgstr ""
+
+#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/widgets/chart_widget.js:237
+msgid "Date Range"
+msgstr ""
+
+#. Label of the date_and_number_format (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Date and Number Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/date.js:247
+msgid "Date {0} must be in format: {1}"
+msgstr ""
+
+#: frappe/utils/password_strength.py:129
+msgid "Dates are often easy to guess."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Datetime"
+msgstr ""
+
+#. Label of the day (Select) field in DocType 'Assignment Rule Day'
+#. Label of the day (Select) field in DocType 'Auto Repeat Day'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/public/js/frappe/views/calendar/calendar.js:277
+msgid "Day"
+msgstr "နေ့"
+
+#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Day of Week"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Days After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Days Before"
+msgstr ""
+
+#. Label of the days_in_advance (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Days Before or After"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
+msgid "Deadlock Occurred"
+msgstr ""
+
+#: frappe/templates/emails/password_reset.html:1
+msgid "Dear"
+msgstr ""
+
+#: frappe/templates/emails/administrator_logged_in.html:1
+msgid "Dear System Manager,"
+msgstr ""
+
+#: frappe/templates/emails/account_deletion_notification.html:1
+#: frappe/templates/emails/delete_data_confirmation.html:1
+msgid "Dear User,"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:1
+msgid "Dear {0}"
+msgstr ""
+
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+msgid "Debug Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:318
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:310
+msgid "Decimal Separator must be a single character"
+msgstr ""
+
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#. Label of the default (Data) field in DocType 'Web Form Field'
+#. Label of the default (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/templates/form_grid/fields.html:30
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Default"
+msgstr ""
+
+#: frappe/contacts/doctype/address_template/address_template.py:41
+msgid "Default Address Template cannot be deleted"
+msgstr ""
+
+#. Label of the default_amend_naming (Select) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Default Amendment Naming"
+msgstr ""
+
+#. Label of the default_app (Select) field in DocType 'System Settings'
+#. Label of the default_app (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Default App"
+msgstr ""
+
+#. Label of the default_email_template (Link) field in DocType 'DocType'
+#. Label of the default_email_template (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Default Email Template"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account_list.js:13
+msgid "Default Inbox"
+msgstr ""
+
+#. Label of the default_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:224
+msgid "Default Incoming"
+msgstr ""
+
+#. Label of the is_default (Check) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Default Letter Head"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
+#. Settings'
+#. Option for the 'Default Amendment Naming' (Select) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Default Naming"
+msgstr ""
+
+#. Label of the default_outgoing (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:232
+msgid "Default Outgoing"
+msgstr ""
+
+#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Default Portal Home"
+msgstr ""
+
+#. Label of the default_print_format (Data) field in DocType 'DocType'
+#. Label of the default_print_format (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Default Print Format"
+msgstr ""
+
+#. Label of the default_print_language (Link) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Default Print Language"
+msgstr ""
+
+#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Default Redirect URI"
+msgstr ""
+
+#. Label of the default_role (Link) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Default Role at Time of Signup"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account_list.js:16
+msgid "Default Sending"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account_list.js:7
+msgid "Default Sending and Inbox"
+msgstr ""
+
+#. Label of the sort_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Default Sort Field"
+msgstr ""
+
+#. Label of the sort_order (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Default Sort Order"
+msgstr ""
+
+#. Label of the field (Data) field in DocType 'Print Format Field Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+msgid "Default Template For Field"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.js:28
+msgid "Default Theme"
+msgstr ""
+
+#. Label of the default_role (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Default User Role"
+msgstr ""
+
+#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Default User Type"
+msgstr ""
+
+#. Label of the default (Text) field in DocType 'Custom Field'
+#. Label of the default_value (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Default Value"
+msgstr ""
+
+#. Label of the default_view (Select) field in DocType 'DocType'
+#. Label of the default_view (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Default View"
+msgstr ""
+
+#. Label of the default_workspace (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Default Workspace"
+msgstr ""
+
+#. Description of the 'Currency' (Link) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Default display currency"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1377
+msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1390
+msgid "Default value for {0} must be in the list of options."
+msgstr ""
+
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
+msgid "Default {0}"
+msgstr ""
+
+#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Default: \"Contact Us\""
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+msgid "DefaultValue"
+msgstr ""
+
+#. Label of the defaults_section (Section Break) field in DocType 'DocField'
+#. Label of the sb2 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
+msgid "Defaults"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:243
+msgid "Defaults Updated"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Defines actions on states and the next step and allowed roles."
+msgstr ""
+
+#. Description of the 'Delete Background Exported Reports After (Hours)' (Int)
+#. field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Defines workflow states and rules for a document."
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Delayed"
+msgstr ""
+
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:627
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:1749
+#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
+#: frappe/templates/discussions/reply_card.html:35
+#: frappe/templates/discussions/reply_section.html:29
+msgid "Delete"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2174
+msgctxt "Button in list view actions menu"
+msgid "Delete"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:52
+msgctxt "Button in web form"
+msgid "Delete"
+msgstr ""
+
+#: frappe/www/me.html:65
+msgid "Delete Account"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr ""
+
+#. Label of the delete_background_exported_reports_after (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Delete Background Exported Reports After (Hours)"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:196
+msgctxt "Title of confirmation dialog"
+msgid "Delete Column"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
+msgid "Delete Data"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
+msgid "Delete Kanban Board"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:125
+msgctxt "Title of confirmation dialog"
+msgid "Delete Section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:64
+msgctxt "Title of confirmation dialog"
+msgid "Delete Tab"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:944
+msgid "Delete and Generate New"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:203
+msgctxt "Button text"
+msgid "Delete column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:742
+msgid "Delete comment?"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:205
+msgctxt "Button text"
+msgid "Delete entire column with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:134
+msgctxt "Button text"
+msgid "Delete entire section with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:73
+msgctxt "Button text"
+msgid "Delete entire tab with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:132
+msgctxt "Button text"
+msgid "Delete section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:71
+msgctxt "Button text"
+msgid "Delete tab"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
+msgid "Delete this record to allow sending to this email address"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2179
+msgctxt "Title of confirmation dialog"
+msgid "Delete {0} item permanently?"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2185
+msgctxt "Title of confirmation dialog"
+msgid "Delete {0} items permanently?"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Deleted"
+msgstr ""
+
+#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Deleted DocType"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Deleted Document"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Deleted Documents"
+msgstr ""
+
+#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Deleted Name"
+msgstr ""
+
+#: frappe/desk/reportview.py:641
+msgid "Deleted all documents successfully"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:211
+msgid "Deleted!"
+msgstr ""
+
+#: frappe/desk/reportview.py:618
+msgid "Deleting {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:202
+msgid "Deleting {0} records..."
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:692
+msgid "Deleting {0}..."
+msgstr ""
+
+#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Deletion Steps"
+msgstr ""
+
+#: frappe/core/doctype/page/page.py:110
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
+msgid "Deletion of this document is only permitted in developer mode."
+msgstr ""
+
+#. Label of the delimiter_options (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Delimiter Options"
+msgstr ""
+
+#: frappe/utils/csvutils.py:76
+msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:306
+msgid "Delimiter must be a single character"
+msgstr ""
+
+#. Label of the delivery_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Delivery Status"
+msgstr ""
+
+#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:17
+msgid "Deny"
+msgstr ""
+
+#. Label of the department (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Department"
+msgstr ""
+
+#. Label of the dependencies (Data) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
+#: frappe/www/attribution.html:29
+msgid "Dependencies"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Dependencies & Licenses"
+msgstr ""
+
+#. Label of the depends_on (Code) field in DocType 'Custom Field'
+#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Depends On"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:32
+msgid "Descendants Of"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:33
+msgid "Descendants Of (inclusive)"
+msgstr ""
+
+#. Label of the description (Small Text) field in DocType 'Assignment Rule'
+#. Label of the description (Small Text) field in DocType 'Reminder'
+#. Label of the description (Small Text) field in DocType 'DocField'
+#. Label of the description (Small Text) field in DocType 'DocType'
+#. Label of the description (Text) field in DocType 'Customize Form Field'
+#. Label of the description (Small Text) field in DocType 'Desktop Icon'
+#. Label of the description (Text Editor) field in DocType 'Event'
+#. Label of the description (HTML Editor) field in DocType 'Form Tour Step'
+#. Label of the description_section (Section Break) field in DocType
+#. 'Onboarding Step'
+#. Label of the description (Markdown Editor) field in DocType 'Onboarding
+#. Step'
+#. Label of the description (Small Text) field in DocType 'Tag'
+#. Label of the description (Text Editor) field in DocType 'ToDo'
+#. Label of the description (HTML Editor) field in DocType 'Workspace Link'
+#. Label of the description (Small Text) field in DocType 'Print Heading'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
+msgid "Description"
+msgstr ""
+
+#. Description of the 'Description' (Section Break) field in DocType
+#. 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Description to inform the user about any action that is going to be performed"
+msgstr ""
+
+#. Label of the designation (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Designation"
+msgstr ""
+
+#. Label of the desk_access (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
+msgid "Desk Access"
+msgstr ""
+
+#. Label of the desk_settings_section (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Desk Settings"
+msgstr ""
+
+#. Label of the desk_theme (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Desk Theme"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Desk User"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Desktop Icon"
+msgstr ""
+
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225
+msgid "Desktop Icon already exists"
+msgstr ""
+
+#. Label of the details_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the details (Code) field in DocType 'Scheduled Job Log'
+#. Label of the details_tab (Tab Break) field in DocType 'Customize Form'
+#. Label of the details (Section Break) field in DocType 'Event'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/form_builder/components/Tabs.vue:92
+#: frappe/public/js/form_builder/store.js:259
+#: frappe/public/js/form_builder/utils.js:38
+#: frappe/public/js/frappe/form/layout.js:152
+#: frappe/public/js/frappe/views/treeview.js:292
+msgid "Details"
+msgstr ""
+
+#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Detect CSV type"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:494
+msgid "Did not add"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:388
+msgid "Did not remove"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:57
+msgid "Diff"
+msgstr ""
+
+#. Description of the 'States' (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc."
+msgstr ""
+
+#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Digits"
+msgstr ""
+
+#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Directory Server"
+msgstr ""
+
+#. Label of the disable_auto_refresh (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Auto Refresh"
+msgstr ""
+
+#. Label of the disable_automatic_recency_filters (Check) field in DocType
+#. 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Automatic Recency Filters"
+msgstr ""
+
+#. Label of the disable_change_log_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Change Log Notification"
+msgstr ""
+
+#. Label of the disable_comment_count (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Comment Count"
+msgstr ""
+
+#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Disable Contact Us Page"
+msgstr ""
+
+#. Label of the disable_count (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Count"
+msgstr ""
+
+#. Label of the disable_document_sharing (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Document Sharing"
+msgstr ""
+
+#: frappe/core/doctype/report/report.js:39
+msgid "Disable Report"
+msgstr ""
+
+#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Disable SMTP server authentication"
+msgstr ""
+
+#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Scrolling"
+msgstr ""
+
+#. Label of the disable_sidebar_stats (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Sidebar Stats"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:146
+msgid "Disable Signup for your site"
+msgstr ""
+
+#. Label of the disable_standard_email_footer (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Standard Email Footer"
+msgstr ""
+
+#. Label of the disable_system_update_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable System Update Notification"
+msgstr ""
+
+#. Label of the disable_user_pass_login (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Username/Password Login"
+msgstr ""
+
+#. Label of the disable_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Disable signups"
+msgstr ""
+
+#. Label of the disabled (Check) field in DocType 'Assignment Rule'
+#. Label of the disabled (Check) field in DocType 'Auto Repeat'
+#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
+#. Label of the disabled (Check) field in DocType 'Milestone Tracker'
+#. Label of the disabled (Check) field in DocType 'Address'
+#. Label of the disabled (Check) field in DocType 'Document Naming Rule'
+#. Label of the disabled (Check) field in DocType 'Report'
+#. Label of the disabled (Check) field in DocType 'Role'
+#. Label of the disabled (Check) field in DocType 'Server Script'
+#. Label of the disabled (Check) field in DocType 'Letter Head'
+#. Label of the disabled (Check) field in DocType 'Print Format'
+#. Label of the disabled (Check) field in DocType 'Print Style'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
+msgid "Disabled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:300
+msgid "Disabled Auto Reply"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:338
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:193
+msgid "Discard"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:44
+msgctxt "Button in web form"
+msgid "Discard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:30
+msgctxt "Discard Email"
+msgid "Discard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:848
+msgid "Discard {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:190
+msgid "Discard?"
+msgstr ""
+
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr ""
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+msgid "Discussion Reply"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+msgid "Discussion Topic"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:639
+#: frappe/templates/discussions/reply_card.html:16
+#: frappe/templates/discussions/reply_section.html:29
+msgid "Dismiss"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:572
+msgctxt "Stop showing the onboarding widget."
+msgid "Dismiss"
+msgstr ""
+
+#. Label of the display (Section Break) field in DocType 'DocField'
+#. Label of the updates_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the display (Section Break) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Display"
+msgstr ""
+
+#. Label of the depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Display Depends On"
+msgstr ""
+
+#. Label of the depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Display Depends On (JS)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
+msgid "Divider"
+msgstr ""
+
+#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Do Not Create New User"
+msgstr ""
+
+#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Do not create new user if user with email does not exist in the system"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1195
+msgid "Do not edit headers which are preset in the template"
+msgstr ""
+
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.js:71
+msgid "Do you still want to proceed?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:958
+msgid "Do you want to cancel all linked documents?"
+msgstr ""
+
+#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Doc Event"
+msgstr ""
+
+#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Doc Events"
+msgstr ""
+
+#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Doc Status"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocField"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/docperm/docperm.json
+msgid "DocPerm"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/docshare/docshare.json
+msgid "DocShare"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:264
+msgid "DocStatus of the following states have changed:
{0}
\n"
+"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n"
+"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n"
+"\t\t\t\t"
+msgstr ""
+
+#. Label of the document_type (Link) field in DocType 'Amended Document Naming
+#. Settings'
+#. Label of the doctype_name (Link) field in DocType 'Audit Trail'
+#. Name of a DocType
+#. Group in Module Def's connections
+#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector'
+#. Label of the ref_doctype (Link) field in DocType 'Version'
+#. Label of a shortcut in the Build Workspace
+#. Label of the dt (Link) field in DocType 'Client Script'
+#. Label of the dt (Link) field in DocType 'Custom Field'
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#. Label of the doc_type (Link) field in DocType 'Property Setter'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
+#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
+#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/data_export/exporter.py:26
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:164
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
+msgid "DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1578
+msgid "DocType {0} provided for the field {1} must have atleast one Link field"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocType Action"
+msgstr ""
+
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#. Label of the doctype_event (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "DocType Event"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+msgid "DocType Layout"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+msgid "DocType Layout Field"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocType Link"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocType State"
+msgstr ""
+
+#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
+msgid "DocType View"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:657
+msgid "DocType can not be merged"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:651
+msgid "DocType can only be renamed by Administrator"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:83
+msgid "DocType must be Submittable for the selected Doc Event"
+msgstr ""
+
+#: frappe/client.py:403
+msgid "DocType must be a string"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:154
+msgid "DocType must have atleast one field"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:57
+msgid "DocType not supported by Log Settings."
+msgstr ""
+
+#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "DocType on which this Workflow is applicable."
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
+msgid "DocType required"
+msgstr ""
+
+#: frappe/modules/utils.py:175
+msgid "DocType {0} does not exist."
+msgstr ""
+
+#: frappe/modules/utils.py:238
+msgid "DocType {} not found"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1029
+msgid "DocType's name should not start or end with whitespace"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
+msgstr ""
+
+#. Label of the ref_doctype (Link) field in DocType 'Document Follow'
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
+msgid "Doctype"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1023
+msgid "Doctype name is limited to {0} characters ({1})"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:3
+msgid "Doctype required"
+msgstr ""
+
+#. Label of the reference_name (Data) field in DocType 'Milestone'
+#. Label of the document (Dynamic Link) field in DocType 'Audit Trail'
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector'
+#. Label of the document (Link) field in DocType 'Notification Subscribed
+#. Document'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+#: frappe/public/js/frappe/views/render_preview.js:42
+msgid "Document"
+msgstr ""
+
+#. Label of the actions (Table) field in DocType 'DocType'
+#. Label of the document_actions_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Document Actions"
+msgstr ""
+
+#. Label of the document_follow_notifications_section (Section Break) field in
+#. DocType 'User'
+#. Name of a DocType
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/document_follow/document_follow.json
+msgid "Document Follow"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:94
+msgid "Document Follow Notification"
+msgstr ""
+
+#. Label of the document_name (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Document Link"
+msgstr ""
+
+#. Label of the section_break_12 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Document Linking"
+msgstr ""
+
+#. Label of the links (Table) field in DocType 'DocType'
+#. Label of the document_links_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Document Links"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1212
+msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1232
+msgid "Document Links Row #{0}: Invalid doctype or fieldname."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1195
+msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1201
+msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
+msgstr ""
+
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
+msgid "Document Name"
+msgstr ""
+
+#: frappe/client.py:406
+msgid "Document Name must be a string"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Document Naming Rule"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "Document Naming Rule Condition"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Document Naming Settings"
+msgstr ""
+
+#: frappe/model/document.py:478
+msgid "Document Queued"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:38
+msgid "Document Restoration Summary"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:68
+msgid "Document Restored"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:354
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:396
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:415
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
+msgid "Document Saved"
+msgstr ""
+
+#. Label of the enable_email_share (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Document Share"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_share_key/document_share_key.json
+msgid "Document Share Key"
+msgstr ""
+
+#. Label of the document_share_key_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Document Share Key Expiry (in Days)"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Users Workspace
+#: frappe/core/report/document_share_report/document_share_report.json
+#: frappe/core/workspace/users/users.json
+msgid "Document Share Report"
+msgstr ""
+
+#. Label of the states (Table) field in DocType 'DocType'
+#. Label of the document_states_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the states (Table) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Document States"
+msgstr ""
+
+#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202
+#: frappe/public/js/frappe/model/model.js:137
+msgid "Document Status"
+msgstr ""
+
+#. Label of the tag (Link) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
+msgid "Document Tag"
+msgstr ""
+
+#. Label of the title (Data) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
+msgid "Document Title"
+msgstr ""
+
+#. Label of the document_type (Link) field in DocType 'Assignment Rule'
+#. Label of the reference_type (Link) field in DocType 'Milestone'
+#. Label of the reminder_doctype (Link) field in DocType 'Reminder'
+#. Label of the reference_doctype (Link) field in DocType 'Data Import'
+#. Label of the share_doctype (Link) field in DocType 'DocShare'
+#. Label of the document_type (Link) field in DocType 'Document Naming Rule'
+#. Label of the ref_doctype (Link) field in DocType 'Session Default'
+#. Label of the document_type (Link) field in DocType 'User Document Type'
+#. Label of the document_type (Link) field in DocType 'User Select Document
+#. Type'
+#. Label of the document_type (Link) field in DocType 'DocType Layout'
+#. Label of the document_type (Link) field in DocType 'Bulk Update'
+#. Label of the document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the document_type (Link) field in DocType 'Global Search DocType'
+#. Label of the document_type (Link) field in DocType 'Notification Log'
+#. Label of the document_type (Link) field in DocType 'Number Card'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Label of the document_type (Link) field in DocType 'Tag Link'
+#. Label of the document_type (Link) field in DocType 'Notification'
+#. Label of the document_type (Link) field in DocType 'Print Format Field
+#. Template'
+#. Label of the document_type (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the document_type (Link) field in DocType 'Workflow'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/session_default/session_default.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:26
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/page/permission_manager/permission_manager.js:49
+#: frappe/core/page/permission_manager/permission_manager.js:218
+#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/roles_editor.js:68
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Document Type"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:60
+msgid "Document Type and Function are required to create a number card"
+msgstr ""
+
+#: frappe/permissions.py:149
+msgid "Document Type is not importable"
+msgstr ""
+
+#: frappe/permissions.py:145
+msgid "Document Type is not submittable"
+msgstr ""
+
+#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Document Type to Track"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
+msgid "Document Type {0} has been repeated."
+msgstr ""
+
+#. Label of the user_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Document Types"
+msgstr ""
+
+#. Label of the select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Document Types (Select Permissions Only)"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Document Types and Permissions"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:163
+#: frappe/model/document.py:1959
+msgid "Document Unlocked"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:56
+msgid "Document follow is not enabled for this user."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1302
+msgid "Document has been cancelled"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1301
+msgid "Document has been submitted"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1300
+msgid "Document is in draft state"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Document is only editable by users with role"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:182
+msgid "Document not Relinked"
+msgstr ""
+
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
+msgid "Document renamed from {0} to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:164
+msgid "Document renaming from {0} to {1} has been queued"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
+msgid "Document type is required to create a dashboard chart"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:45
+msgid "Document {0} Already Restored"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
+msgid "Document {0} has been set to state {1} by {2}"
+msgstr ""
+
+#: frappe/client.py:430
+msgid "Document {0} {1} does not exist"
+msgstr ""
+
+#. Label of the documentation (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Documentation Link"
+msgstr ""
+
+#. Label of the documentation_url (Data) field in DocType 'DocField'
+#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Documentation URL"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
+msgid "Documents"
+msgstr "စာရွက်စာတမ်းများ"
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
+msgid "Documents restored successfully"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
+msgid "Documents that failed to restore"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
+msgid "Documents that were already restored"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the domain (Data) field in DocType 'Domain'
+#. Label of the domain (Link) field in DocType 'Has Domain'
+#. Label of the domain (Link) field in DocType 'Email Account'
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Domain"
+msgstr ""
+
+#. Label of the domain_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Domain Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/domain_settings/domain_settings.json
+msgid "Domain Settings"
+msgstr ""
+
+#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
+msgid "Domains HTML"
+msgstr ""
+
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:272
+msgid "Don't Import"
+msgstr ""
+
+#. Label of the override_status (Check) field in DocType 'Workflow'
+#. Label of the avoid_status_override (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Don't Override Status"
+msgstr ""
+
+#. Label of the mute_emails (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Don't Send Emails"
+msgstr ""
+
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
+msgstr ""
+
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:70
+msgid "Don't have an account?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:16
+#: frappe/public/js/frappe/ui/messages.js:238
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
+msgid "Done"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Donut"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/EditableInput.vue:43
+msgid "Double click to edit label"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Download"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:247
+msgctxt "Export report"
+msgid "Download"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/page/backups/backups.js:4
+msgid "Download Backups"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:6
+msgid "Download Data"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:14
+msgid "Download Files Backup"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:9
+msgid "Download Link"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:134
+msgid "Download PDF"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:840
+msgid "Download Report"
+msgstr ""
+
+#. Label of the download_template (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Download Template"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
+msgid "Download Your Data"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:49
+msgid "Download as CSV"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:46
+msgid "Dr"
+msgstr ""
+
+#: frappe/public/js/frappe/model/indicator.js:73
+#: frappe/public/js/frappe/ui/filters/filter.js:538
+msgid "Draft"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
+#: frappe/public/js/frappe/widgets/base_widget.js:33
+msgid "Drag"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:189
+msgid "Drag & Drop a section here from another tab"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14
+msgid "Drag and drop files here or upload from"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76
+msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
+msgid "Drag elements from the sidebar to add. Drag them back to trash."
+msgstr ""
+
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
+msgid "Drag to add state"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189
+msgid "Drop files here"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Dropdowns"
+msgstr ""
+
+#. Label of the date (Date) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+msgid "Due Date"
+msgstr ""
+
+#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Due Date Based On"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+#: frappe/public/js/frappe/form/toolbar.js:422
+msgid "Duplicate"
+msgstr ""
+
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
+msgid "Duplicate Entry"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:144
+msgid "Duplicate Filter Name"
+msgstr ""
+
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
+msgid "Duplicate Name"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate Row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:209
+msgid "Duplicate current row"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:245
+msgid "Duplicate field"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the duration (Float) field in DocType 'Recorder'
+#. Label of the duration (Float) field in DocType 'Recorder Query'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Duration"
+msgstr ""
+
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Dynamic"
+msgstr ""
+
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Dynamic Filters"
+msgstr ""
+
+#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters JSON"
+msgstr ""
+
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters Section"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Name of a DocType
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Dynamic Link"
+msgstr ""
+
+#. Label of the dynamic_report_filters_section (Section Break) field in DocType
+#. 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Dynamic Report Filters"
+msgstr ""
+
+#. Label of the dynamic_route (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Dynamic Route"
+msgstr ""
+
+#. Label of the dynamic_template (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Dynamic Template"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "ESC"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:169
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/form/footer/form_timeline.js:670
+#: frappe/public/js/frappe/form/footer/form_timeline.js:678
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:359
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2260
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:350
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:63
+msgid "Edit Auto Email Report Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:38
+msgid "Edit Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:50
+msgid "Edit Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+msgid "Edit Custom HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:619
+msgid "Edit DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1976
+msgctxt "Button in list view menu"
+msgid "Edit DocType"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
+msgid "Edit Existing"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:29
+msgid "Edit Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:326
+msgid "Edit Full Form"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27
+#: frappe/public/js/print_format_builder/Field.vue:83
+msgid "Edit HTML"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:9
+msgid "Edit Header"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:609
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8
+msgid "Edit Heading"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
+msgid "Edit Letter Head"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:35
+msgid "Edit Letter Head Footer"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:42
+msgid "Edit Links"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:44
+msgid "Edit Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:46
+msgid "Edit Onboarding"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24
+msgid "Edit Print Format"
+msgstr ""
+
+#: frappe/www/me.html:38
+msgid "Edit Profile"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:173
+msgid "Edit Properties"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:48
+msgid "Edit Quick List"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:40
+msgid "Edit Shortcut"
+msgstr ""
+
+#. Label of the edit_values (Button) field in DocType 'Web Page Block'
+#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
+#. Settings'
+#. Label of the edit_footer_template_values (Button) field in DocType 'Website
+#. Settings'
+#: frappe/public/js/frappe/utils/web_template.js:5
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Edit Values"
+msgstr ""
+
+#: frappe/desk/doctype/note/note.js:11
+msgid "Edit mode"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:254
+msgid "Edit the {0} Doctype"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+msgid "Edit to add content"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:470
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
+msgid "Edit your workflow visually using the Workflow Builder."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:683
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
+msgid "Edit {0}"
+msgstr ""
+
+#. Label of the editable_grid (Check) field in DocType 'DocType'
+#. Label of the editable_grid (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:58
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Editable Grid"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Editing Row"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
+msgid "Editing {0}"
+msgstr ""
+
+#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Eg. smsgateway.com/api/send_sms.cgi"
+msgstr ""
+
+#: frappe/rate_limiter.py:152
+msgid "Either key or IP flag is required."
+msgstr ""
+
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Element Selector"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Label of the email (Check) field in DocType 'Custom DocPerm'
+#. Label of the email (Check) field in DocType 'DocPerm'
+#. Option for the 'Two Factor Authentication method' (Select) field in DocType
+#. 'System Settings'
+#. Label of the email_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the email (Data) field in DocType 'User'
+#. Label of the email_settings (Section Break) field in DocType 'User'
+#. Label of the email (Check) field in DocType 'User Document Type'
+#. Label of the email (Data) field in DocType 'User Invitation'
+#. Label of the email (Data) field in DocType 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:382
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
+msgid "Email"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the email_account (Link) field in DocType 'Communication'
+#. Label of the email_account (Link) field in DocType 'User Email'
+#. Name of a DocType
+#. Label of the email_account (Data) field in DocType 'Email Flag Queue'
+#. Label of the email_account (Link) field in DocType 'Email Queue'
+#. Label of the email_account (Link) field in DocType 'Unhandled Email'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.js:199
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Email Account"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:343
+msgid "Email Account Disabled."
+msgstr ""
+
+#. Label of the email_account_name (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Email Account Name"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:749
+msgid "Email Account added multiple times"
+msgstr ""
+
+#: frappe/email/smtp.py:43
+msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:576
+msgid "Email Account {0} Disabled"
+msgstr ""
+
+#. Label of the email_id (Data) field in DocType 'Address'
+#. Label of the email_id (Data) field in DocType 'Contact'
+#. Label of the email_id (Data) field in DocType 'Email Account'
+#. Label of the email_id (Data) field in DocType 'Google Contacts'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/www/complete_signup.html:11 frappe/www/login.html:184
+#: frappe/www/login.html:216
+msgid "Email Address"
+msgstr ""
+
+#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Email Address whose Google Contacts are to be synced."
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:43
+msgid "Email Addresses"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Email Domain"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+msgid "Email Flag Queue"
+msgstr ""
+
+#. Label of the email_footer_address (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Email Footer Address"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#. Label of the email_group (Link) field in DocType 'Email Group Member'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+msgid "Email Group"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_group_member/email_group_member.json
+msgid "Email Group Member"
+msgstr ""
+
+#. Label of the email_header (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Email Header"
+msgstr ""
+
+#. Label of the email_id (Data) field in DocType 'Contact Email'
+#. Label of the email_id (Data) field in DocType 'User Email'
+#. Label of the email_id (Data) field in DocType 'Email Rule'
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact_email/contact_email.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_rule/email_rule.json
+msgid "Email ID"
+msgstr ""
+
+#. Label of the email_ids (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Email IDs"
+msgstr ""
+
+#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Email Id"
+msgstr ""
+
+#. Label of the email_inbox (Section Break) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Email Inbox"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+msgid "Email Queue Recipient"
+msgstr ""
+
+#: frappe/email/queue.py:161
+msgid "Email Queue flushing aborted due to too many failures."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue records."
+msgstr ""
+
+#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Help"
+msgstr ""
+
+#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Email Retry Limit"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_rule/email_rule.json
+msgid "Email Rule"
+msgstr ""
+
+#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Email Sent At"
+msgstr ""
+
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the column_break_3 (Section Break) field in DocType 'Notification
+#. Settings'
+#. Label of the email_settings (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Email Settings"
+msgstr ""
+
+#. Label of the email_signature (Text Editor) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Email Signature"
+msgstr ""
+
+#. Label of the email_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Email Status"
+msgstr ""
+
+#. Label of the email_sync_option (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Email Sync Option"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the email_template (Link) field in DocType 'Communication'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:107
+msgid "Email Template"
+msgstr ""
+
+#. Label of the enable_email_threads_on_assigned_document (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Email Threads on Assigned Document"
+msgstr ""
+
+#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Email To"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+msgid "Email Unsubscribe"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:342
+msgid "Email has been marked as spam"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:355
+msgid "Email has been moved to trash"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:266
+msgid "Email is mandatory to create User Email"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:822
+msgid "Email not sent to {0} (unsubscribed / disabled)"
+msgstr ""
+
+#: frappe/utils/oauth.py:163
+msgid "Email not verified with {0}"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.js:19
+msgid "Email queue is currently suspended. Resume to automatically send other emails."
+msgstr ""
+
+#. Label of the section_break_udjs (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Emails"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:216
+msgid "Emails Pulled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:934
+msgid "Emails are already being pulled from this account."
+msgstr ""
+
+#: frappe/email/queue.py:138
+msgid "Emails are muted"
+msgstr ""
+
+#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Emails will be sent with next possible workflow actions"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:34
+msgid "Embed code copied"
+msgstr ""
+
+#: frappe/database/query.py:1539
+msgid "Empty alias is not allowed"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+msgstr ""
+
+#: frappe/database/query.py:1457
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
+#. Label of the enable (Check) field in DocType 'Google Calendar'
+#. Label of the enable (Check) field in DocType 'Google Contacts'
+#. Label of the enable (Check) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "Enable"
+msgstr ""
+
+#. Label of the enable_address_autocompletion (Check) field in DocType
+#. 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Enable Address Autocompletion"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123
+msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
+msgstr ""
+
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Enable Auto Reply"
+msgstr ""
+
+#. Label of the enable_automatic_linking (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Enable Automatic Linking in Documents"
+msgstr ""
+
+#. Label of the enable_comments (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Enable Comments"
+msgstr ""
+
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
+#. Label of the enable_email_notifications (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Enable Email Notifications"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
+#: frappe/website/doctype/website_settings/website_settings.py:129
+msgid "Enable Google API in Google Settings."
+msgstr ""
+
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Enable Google indexing"
+msgstr ""
+
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
+msgid "Enable Incoming"
+msgstr ""
+
+#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Enable Onboarding"
+msgstr ""
+
+#. Label of the enable_outgoing (Check) field in DocType 'User Email'
+#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:233
+msgid "Enable Outgoing"
+msgstr ""
+
+#. Label of the enable_password_policy (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Enable Password Policy"
+msgstr ""
+
+#. Label of the enable_prepared_report (Check) field in DocType 'Role
+#. Permission for Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+msgid "Enable Prepared Report"
+msgstr ""
+
+#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Enable Print Server"
+msgstr ""
+
+#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enable Push Notification Relay"
+msgstr ""
+
+#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Enable Rate Limit"
+msgstr ""
+
+#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Enable Raw Printing"
+msgstr ""
+
+#: frappe/core/doctype/report/report.js:39
+msgid "Enable Report"
+msgstr ""
+
+#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Enable Scheduled Jobs"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:23
+msgid "Enable Scheduler"
+msgstr ""
+
+#. Label of the enable_security (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Enable Security"
+msgstr ""
+
+#. Label of the enable_social_login (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Enable Social Login"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:139
+msgid "Enable Tracking Page Views"
+msgstr ""
+
+#. Label of the enable_two_factor_auth (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/twofactor.py:438
+msgid "Enable Two Factor Auth"
+msgstr ""
+
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28
+msgid "Enable developer mode to create a standard Print Template"
+msgstr ""
+
+#: frappe/website/doctype/web_template/web_template.py:33
+msgid "Enable developer mode to create a standard Web Template"
+msgstr ""
+
+#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Enable if on click\n"
+"opens modal."
+msgstr ""
+
+#. Label of the enable_view_tracking (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Enable in-app website tracking"
+msgstr ""
+
+#. Label of the enabled (Check) field in DocType 'Language'
+#. Label of the enabled (Check) field in DocType 'User'
+#. Label of the enabled (Check) field in DocType 'Client Script'
+#. Label of the enabled (Check) field in DocType 'Notification Settings'
+#. Label of the enabled (Check) field in DocType 'Auto Email Report'
+#. Label of the enabled (Check) field in DocType 'Notification'
+#. Label of the enabled (Check) field in DocType 'Currency'
+#. Label of the enabled (Check) field in DocType 'LDAP Settings'
+#. Label of the enabled (Check) field in DocType 'Webhook'
+#. Label of the enabled (Check) field in DocType 'Portal Menu Item'
+#. Label of the enabled (Check) field in DocType 'Workflow Transition Task'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Enabled"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:29
+msgid "Enabled Scheduler"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:1010
+msgid "Enabled email inbox for user {0}"
+msgstr ""
+
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Enables Calendar and Gantt views."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:295
+msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
+msgstr ""
+
+#. Description of a DocType
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr ""
+
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Enabling this will submit documents in background"
+msgstr ""
+
+#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Encrypt Backups"
+msgstr ""
+
+#: frappe/utils/password.py:196
+msgid "Encryption key is in invalid format!"
+msgstr ""
+
+#: frappe/utils/password.py:211
+msgid "Encryption key is invalid! Please check site_config.json"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr ""
+
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
+msgid "End Date"
+msgstr ""
+
+#. Label of the end_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+msgid "End Date Field"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.py:208
+msgid "End Date cannot be before Start Date!"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146
+msgid "End Date cannot be today."
+msgstr ""
+
+#. Label of the ended_at (Datetime) field in DocType 'RQ Job'
+#. Label of the ended_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Ended At"
+msgstr ""
+
+#. Label of the sb_endpoints_section (Section Break) field in DocType
+#. 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Endpoints"
+msgstr ""
+
+#. Label of the ends_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Ends on"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Energy Point"
+msgstr ""
+
+#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Enqueued By"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.py:125
+msgid "Enqueued creation of indexes"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+msgid "Ensure the user and group search paths are correct."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
+msgid "Enter Client Id and Client Secret in Google Settings."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:777
+msgid "Enter Email Recipient(s)"
+msgstr ""
+
+#. Label of the doc_type (Link) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Enter Form Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:94
+msgctxt "Title of prompt dialog"
+msgid "Enter Value"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:60
+msgid "Enter a name for this {0}"
+msgstr ""
+
+#. Description of the 'User Defaults' (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"."
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:111
+msgid "Enter folder name"
+msgstr ""
+
+#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
+msgstr ""
+
+#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter url parameter for message"
+msgstr ""
+
+#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter url parameter for receiver nos"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:341
+msgid "Enter your password"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
+msgid "Entity Name"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
+msgid "Entity Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:16
+msgid "Equals"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Label of the error (Code) field in DocType 'Error Log'
+#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue Recipient'
+#. Label of the error (Code) field in DocType 'Integration Request'
+#. Label of the error (Text) field in DocType 'Webhook Request Log'
+#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78
+#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/user_invitation/user_invitation.py:95
+#: frappe/core/doctype/user_invitation/user_invitation.py:99
+#: frappe/core/doctype/user_invitation/user_invitation.py:102
+#: frappe/core/doctype/user_invitation/user_invitation.py:125
+#: frappe/core/doctype/user_invitation/user_invitation.py:127
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
+msgid "Error"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:264
+msgctxt "Title of error message in web form"
+msgid "Error"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/error_log/error_log.json
+msgid "Error Log"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Error Logs"
+msgstr ""
+
+#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Error Message"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:156
+msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:32
+msgid "Error connecting via IMAP/POP3: {e}"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:33
+msgid "Error connecting via SMTP: {e}"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:101
+msgid "Error has occurred in {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/script_manager.js:199
+msgid "Error in Client Script"
+msgstr ""
+
+#: frappe/public/js/frappe/form/script_manager.js:256
+msgid "Error in Client Script."
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:21
+msgid "Error in Header/Footer Script"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
+msgid "Error in Notification"
+msgstr ""
+
+#: frappe/utils/pdf.py:59
+msgid "Error in print format on line {0}: {1}"
+msgstr ""
+
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:670
+msgid "Error while connecting to email account {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:779
+msgid "Error while evaluating Notification {0}. Please fix your template."
+msgstr ""
+
+#: frappe/model/base_document.py:860
+msgid "Error: Data missing in table {0}"
+msgstr ""
+
+#: frappe/model/base_document.py:870
+msgid "Error: Value missing for {0}: {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:864
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr ""
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Name of a DocType
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
+msgid "Event"
+msgstr ""
+
+#. Label of the event_category (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Event Category"
+msgstr ""
+
+#. Label of the event_frequency (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Event Frequency"
+msgstr ""
+
+#. Label of the event_participants (Table) field in DocType 'Event'
+#. Name of a DocType
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Event Participants"
+msgstr ""
+
+#. Label of the enable_email_event_reminders (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Event Reminders"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
+msgid "Event Synced with Google Calendar."
+msgstr ""
+
+#. Label of the event_type (Data) field in DocType 'Recorder'
+#. Label of the event_type (Select) field in DocType 'Event'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/event/event.json
+msgid "Event Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:56
+msgid "Events"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.py:278
+msgid "Events in Today's Calendar"
+msgstr ""
+
+#. Label of the everyone (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:11
+msgid "Everyone"
+msgstr ""
+
+#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
+msgstr ""
+
+#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "Exact Copies"
+msgstr ""
+
+#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Example"
+msgstr ""
+
+#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Example: \"/desk\""
+msgstr ""
+
+#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Example: #Tree/Account"
+msgstr ""
+
+#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Example: 00001"
+msgstr ""
+
+#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
+msgstr ""
+
+#. Description of the 'Description' (Small Text) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Example: {{ subject }}"
+msgstr ""
+
+#. Option for the 'File Type' (Select) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Excel"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:90
+msgid "Excellent"
+msgstr ""
+
+#. Label of the exception (Text) field in DocType 'Data Import Log'
+#. Label of the exc_info (Code) field in DocType 'RQ Job'
+#. Label of the exception (Long Text) field in DocType 'Submission Queue'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Exception"
+msgstr ""
+
+#. Label of the execute_section (Section Break) field in DocType 'System
+#. Console'
+#: frappe/desk/doctype/system_console/system_console.js:17
+#: frappe/desk/doctype/system_console/system_console.js:22
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Execute"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:10
+msgid "Execute Console script"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/dropdown_console.js:132
+msgid "Executing Code"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:18
+msgid "Executing..."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
+msgid "Execution Time: {0} sec"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Executive"
+msgstr ""
+
+#. Label of the existing_role (Link) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Existing Role"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:115
+#: frappe/public/js/frappe/views/treeview.js:127
+#: frappe/public/js/frappe/views/treeview.js:137
+#: frappe/public/js/frappe/widgets/base_widget.js:159
+msgid "Expand"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/code.js:185
+msgctxt "Enlarge code field."
+msgid "Expand"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
+#: frappe/public/js/frappe/views/treeview.js:133
+msgid "Expand All"
+msgstr ""
+
+#: frappe/database/query.py:354
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "Experimental"
+msgstr ""
+
+#. Option for the 'Level' (Select) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Expert"
+msgstr ""
+
+#. Label of the expiration_time (Datetime) field in DocType 'OAuth
+#. Authorization Code'
+#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer
+#. Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "Expiration time"
+msgstr ""
+
+#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Expire Notification On"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Expired"
+msgstr ""
+
+#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token'
+#. Label of the expires_in (Int) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Expires In"
+msgstr ""
+
+#. Label of the expires_on (Date) field in DocType 'Document Share Key'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+msgid "Expires On"
+msgstr ""
+
+#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Expiry time of QR Code Image Page"
+msgstr ""
+
+#. Label of the export (Check) field in DocType 'Custom DocPerm'
+#. Label of the export (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/public/js/frappe/data_import/data_exporter.js:92
+#: frappe/public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
+#: frappe/public/js/frappe/views/reports/report_view.js:1629
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
+msgid "Export"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2282
+msgctxt "Button in list view actions menu"
+msgid "Export"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:245
+msgid "Export 1 record"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:262
+msgid "Export Custom Permissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:242
+msgid "Export Customizations"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:14
+msgid "Export Data"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:86
+#: frappe/public/js/frappe/data_import/import_preview.js:199
+msgid "Export Errored Rows"
+msgstr ""
+
+#. Label of the export_from (Data) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Export From"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:518
+msgid "Export Import Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:245
+msgctxt "Export report"
+msgid "Export Report: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
+msgid "Export Type"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1640
+msgid "Export all matching rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1650
+msgid "Export all {0} rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
+msgid "Export as zip"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:184
+msgid "Export in Background"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/tools.js:11
+msgid "Export not allowed. You need {0} role to export."
+msgstr ""
+
+#. Description of the 'Export without main header' (Check) field in DocType
+#. 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Export the data without any header notes and column descriptions"
+msgstr ""
+
+#. Label of the export_without_main_header (Check) field in DocType 'Data
+#. Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Export without main header"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:247
+msgid "Export {0} records"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr ""
+
+#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Expose Recipients"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Expression"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Expression (old style)"
+msgstr ""
+
+#. Description of the 'Condition' (Data) field in DocType 'Notification
+#. Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "Expression, Optional"
+msgstr ""
+
+#. Label of the external_link (Data) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:426
+msgid "External Link"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Connected
+#. App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Extra Parameters"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Facebook"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Fail"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Activity Log'
+#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
+#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Failed"
+msgstr ""
+
+#. Label of the failed_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Emails"
+msgstr ""
+
+#. Label of the failed_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Failed Job Count"
+msgstr ""
+
+#. Label of the failed_jobs (Int) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Failed Jobs"
+msgstr ""
+
+#. Label of the failed_logins (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Logins (Last 30 days)"
+msgstr ""
+
+#: frappe/model/workflow.py:362
+msgid "Failed Transactions"
+msgstr ""
+
+#: frappe/utils/synchronization.py:46
+msgid "Failed to aquire lock: {}. Lock may be held by another process."
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
+msgid "Failed to change password."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:232
+#: frappe/desk/page/setup_wizard/setup_wizard.py:42
+msgid "Failed to complete setup"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:141
+msgid "Failed to compute request body: {}"
+msgstr ""
+
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48
+msgid "Failed to connect to server"
+msgstr ""
+
+#: frappe/auth.py:701
+msgid "Failed to decode token, please provide a valid base64-encoded token."
+msgstr ""
+
+#: frappe/utils/password.py:210
+msgid "Failed to decrypt key {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:635
+msgid "Failed to delete {0} documents: {1}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
+msgid "Failed to enable scheduler: {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:105
+#: frappe/integrations/doctype/webhook/webhook.py:131
+msgid "Failed to evaluate conditions: {}"
+msgstr ""
+
+#: frappe/types/exporter.py:205
+msgid "Failed to export python type hints"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
+msgid "Failed to generate names from the series"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
+msgid "Failed to generate preview of series"
+msgstr ""
+
+#: frappe/handler.py:76
+msgid "Failed to get method for command {0} with {1}"
+msgstr ""
+
+#: frappe/api/v2.py:46
+msgid "Failed to get method {0} with {1}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
+msgid "Failed to get site info"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:63
+msgid "Failed to import virtual doctype {}, is controller file present?"
+msgstr ""
+
+#: frappe/utils/image.py:75
+msgid "Failed to optimize image: {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:122
+msgid "Failed to render message: {}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:140
+msgid "Failed to render subject: {}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:297
+msgid "Failed to send email with subject:"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:43
+msgid "Failed to send notification email"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.py:24
+msgid "Failed to update global settings"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
+msgid "Failed while calling API {0}"
+msgstr ""
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:459
+msgid "Failure"
+msgstr ""
+
+#. Label of the failure_rate (Percent) field in DocType 'System Health Report
+#. Failing Jobs'
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Failure Rate"
+msgstr ""
+
+#. Label of the favicon (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "FavIcon"
+msgstr ""
+
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Fax"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
+msgid "Feedback"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:29
+msgid "Female"
+msgstr ""
+
+#. Label of the fetch_from (Small Text) field in DocType 'DocField'
+#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
+#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
+msgid "Fetch From"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
+msgid "Fetch Images"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
+msgid "Fetch attached images from document"
+msgstr ""
+
+#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
+#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
+#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Fetch on Save if Empty"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
+msgid "Fetching default Global Search documents."
+msgstr ""
+
+#. Label of the field (Select) field in DocType 'Assignment Rule'
+#. Label of the field (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the field (Select) field in DocType 'Bulk Update'
+#. Label of the report_field (Select) field in DocType 'Number Card'
+#. Label of the field (Select) field in DocType 'Onboarding Step'
+#. Label of the fieldname (Select) field in DocType 'Web Form Field'
+#. Label of the fieldname (Select) field in DocType 'Web Form List Column'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/public/js/frappe/list/bulk_operations.js:327
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+msgid "Field"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:418
+msgid "Field \"route\" is mandatory for Web Views"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1527
+msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.js:17
+msgid "Field \"value\" is mandatory. Please specify value to be updated"
+msgstr ""
+
+#. Label of the description (Text) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Field Description"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1078
+msgid "Field Missing"
+msgstr ""
+
+#. Label of the field_name (Data) field in DocType 'Property Setter'
+#. Label of the field_name (Select) field in DocType 'Kanban Board'
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+msgid "Field Name"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
+msgid "Field Orientation (Left-Right)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
+msgid "Field Orientation (Top-Down)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
+#: frappe/public/js/print_format_builder/utils.js:69
+msgid "Field Template"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/templates/form_grid/fields.html:40
+msgid "Field Type"
+msgstr ""
+
+#: frappe/desk/reportview.py:202
+msgid "Field not permitted in query"
+msgstr ""
+
+#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
+msgstr ""
+
+#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Field to Track"
+msgstr ""
+
+#: frappe/custom/doctype/property_setter/property_setter.py:51
+msgid "Field type cannot be changed for {0}"
+msgstr ""
+
+#: frappe/database/database.py:919
+msgid "Field {0} does not exist on {1}"
+msgstr ""
+
+#: frappe/desk/form/meta.py:184
+msgid "Field {0} is referring to non-existing doctype {1}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1756
+msgid "Field {0} not found."
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:547
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr ""
+
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:455
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Fieldname"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:271
+msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1077
+msgid "Fieldname called {0} must exist to enable autonaming"
+msgstr ""
+
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
+msgid "Fieldname is limited to 64 characters ({0})"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:197
+msgid "Fieldname not set for Custom Field"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:107
+msgid "Fieldname which will be the DocType for this link field."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:175
+msgid "Fieldname {0} appears multiple times"
+msgstr ""
+
+#: frappe/database/schema.py:398
+msgid "Fieldname {0} cannot have special characters like {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1921
+msgid "Fieldname {0} conflicting with meta object"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:497
+#: frappe/public/js/form_builder/utils.js:302
+msgid "Fieldname {0} is restricted"
+msgstr ""
+
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:133
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Fields"
+msgstr ""
+
+#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Fields Multicheck"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:431
+msgid "Fields `file_name` or `file_url` must be set for File"
+msgstr ""
+
+#: frappe/model/db_query.py:146
+msgid "Fields must be a list or tuple when as_list is enabled"
+msgstr ""
+
+#: frappe/database/query.py:613
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
+#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Report Column'
+#. Label of the fieldtype (Select) field in DocType 'Report Filter'
+#. Label of the fieldtype (Data) field in DocType 'Form Tour Step'
+#. Label of the fieldtype (Select) field in DocType 'Web Form Field'
+#. Label of the fieldtype (Data) field in DocType 'Web Form List Column'
+#. Label of the fieldtype (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Fieldtype"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:193
+msgid "Fieldtype cannot be changed from {0} to {1}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:593
+msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
+msgstr ""
+
+#. Label of a shortcut in the Tools Workspace
+#. Name of a DocType
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "File"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:128
+msgid "File '{0}' not found"
+msgstr ""
+
+#. Label of the private_file_section (Section Break) field in DocType 'Access
+#. Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "File Information"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:74
+msgid "File Manager"
+msgstr ""
+
+#. Label of the file_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "File Name"
+msgstr ""
+
+#. Label of the file_size (Int) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "File Size"
+msgstr ""
+
+#. Label of the section_break_ryki (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "File Storage"
+msgstr ""
+
+#. Label of the file_type (Data) field in DocType 'Access Log'
+#. Label of the file_type (Select) field in DocType 'Data Export'
+#. Label of the file_type (Data) field in DocType 'File'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/file/file.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:19
+msgid "File Type"
+msgstr ""
+
+#. Label of the file_url (Code) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "File URL"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.py:107
+msgid "File backup is ready"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:649
+msgid "File name cannot have {0}"
+msgstr ""
+
+#: frappe/utils/csvutils.py:28
+msgid "File not attached"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
+msgid "File size exceeded the maximum allowed size of {0} MB"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:198
+msgid "File too big"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:390
+msgid "File type of {0} is not allowed"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
+msgid "File {0} does not exist"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the files_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Files"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:969
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
+msgid "Filter"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.html:36
+msgid "Filter By"
+msgstr ""
+
+#. Label of the filter_data (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Filter Data"
+msgstr ""
+
+#. Label of the filter_list (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Filter List"
+msgstr ""
+
+#. Label of the filter_meta (Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Filter Meta"
+msgstr ""
+
+#. Label of the filter_name (Data) field in DocType 'List Filter'
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/public/js/frappe/list/list_filter.js:33
+msgid "Filter Name"
+msgstr ""
+
+#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Filter Values"
+msgstr ""
+
+#: frappe/database/query.py:360
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:427
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
+msgid "Filter..."
+msgstr ""
+
+#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Filtered By"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:33
+msgid "Filtered Records"
+msgstr ""
+
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
+msgid "Filtered by \"{0}\""
+msgstr ""
+
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Code) field in DocType 'Notification'
+#. Option for the 'Condition Type' (Select) field in DocType 'Notification'
+#. Label of the filters_section (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters"
+msgstr ""
+
+#. Label of the filters_config (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters Configuration"
+msgstr ""
+
+#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Filters Display"
+msgstr ""
+
+#. Label of the filters_editor (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters Editor"
+msgstr ""
+
+#. Label of the filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters JSON"
+msgstr ""
+
+#. Label of the filters_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters Section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:514
+msgid "Filters applied for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
+msgid "Filters saved"
+msgstr ""
+
+#. Description of the 'Script' (Code) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1429
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+msgid "Find '{0}' in ..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153
+msgid "Find {0} in {1}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Finished"
+msgstr ""
+
+#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Finished At"
+msgstr ""
+
+#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
+#. Label of the first_day_of_the_week (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "First Day of the Week"
+msgstr ""
+
+#. Label of the first_name (Data) field in DocType 'Contact'
+#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
+msgid "First Name"
+msgstr ""
+
+#. Label of the first_success_message (Data) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
+msgid "First Success Message"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:185
+msgid "First data column must be blank."
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
+msgid "First set the name and save the record."
+msgstr ""
+
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
+msgid "Fit"
+msgstr ""
+
+#. Label of the flag (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+msgid "Flag"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Float"
+msgstr ""
+
+#. Label of the float_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Float Precision"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Fold"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1451
+msgid "Fold can not be at the end of the form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1449
+msgid "Fold must come before a Section Break"
+msgstr ""
+
+#. Label of the folder (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Folder"
+msgstr ""
+
+#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "Folder Name"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:100
+msgid "Folder name should not include '/' (slash)"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:497
+msgid "Folder {0} is not empty"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Folio"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:879
+msgid "Follow"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
+msgid "Followed by"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
+msgid "Following Report Filters have missing values:"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:108
+msgid "Following fields are missing:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:139
+msgid "Following fields have invalid values:"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
+msgid "Following fields have missing values"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:126
+msgid "Following fields have missing values:"
+msgstr ""
+
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Font"
+msgstr ""
+
+#. Label of the font_properties (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Font Properties"
+msgstr ""
+
+#. Label of the font_size (Int) field in DocType 'Print Format'
+#. Label of the font_size (Float) field in DocType 'Print Settings'
+#. Label of the font_size (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Font Size"
+msgstr ""
+
+#. Label of the section_break_8 (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Fonts"
+msgstr ""
+
+#. Label of the set_footer (Section Break) field in DocType 'Email Account'
+#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
+#. Label of the footer (Text Editor) field in DocType 'About Us Settings'
+#. Option for the 'Type' (Select) field in DocType 'Web Template'
+#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer"
+msgstr ""
+
+#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer \"Powered By\""
+msgstr ""
+
+#. Label of the footer_source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Based On"
+msgstr ""
+
+#. Label of the footer (Text Editor) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Footer Content"
+msgstr ""
+
+#. Label of the footer_details_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Details"
+msgstr ""
+
+#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer HTML"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:81
+msgid "Footer HTML set from attachment {0}"
+msgstr ""
+
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Image"
+msgstr ""
+
+#. Label of the footer (Section Break) field in DocType 'Website Settings'
+#. Label of the footer_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Items"
+msgstr ""
+
+#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Logo"
+msgstr ""
+
+#. Label of the footer_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Script"
+msgstr ""
+
+#. Label of the footer_template (Link) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Template"
+msgstr ""
+
+#. Label of the footer_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Template Values"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:129
+msgid "Footer might not be visible as {0} option is disabled "
+msgstr ""
+
+#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer will display correctly only in PDF"
+msgstr ""
+
+#. Label of the for_doctype (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For DocType"
+msgstr ""
+
+#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "For DocType Link / DocType Action"
+msgstr ""
+
+#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For Document"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:155
+msgid "For Document Type"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
+msgid "For Example: {} Open"
+msgstr ""
+
+#. Description of the 'Options' (Small Text) field in DocType 'DocField'
+#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "For Links, enter the DocType as range.\n"
+"For Select, enter list of Options, each on a new line."
+msgstr ""
+
+#. Label of the for_user (Link) field in DocType 'List Filter'
+#. Label of the for_user (Link) field in DocType 'Notification Log'
+#. Label of the for_user (Data) field in DocType 'Workspace'
+#: frappe/core/doctype/user_permission/user_permission_list.js:10
+#: frappe/core/doctype/user_permission/user_permission_list.js:148
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "For User"
+msgstr ""
+
+#. Label of the for_value (Dynamic Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "For Value"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
+#: frappe/public/js/frappe/views/reports/report_view.js:108
+msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "For example:"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+msgid "For example: If you want to include the document ID, use {0}"
+msgstr ""
+
+#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "For example: {} Open"
+msgstr ""
+
+#. Description of the 'Client script' (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "For help see Client Script API and Examples"
+msgstr ""
+
+#: frappe/integrations/doctype/google_settings/google_settings.js:7
+msgid "For more information, {0}."
+msgstr ""
+
+#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:197
+msgid "For updating, you can update only selective columns."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1765
+msgid "For {0} at level {1} in {2} in row {3}"
+msgstr ""
+
+#. Label of the force (Check) field in DocType 'Package Import'
+#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
+#. Provider Settings'
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+msgid "Force"
+msgstr ""
+
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'DocType'
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Force Re-route to Default View"
+msgstr ""
+
+#. Label of the force_show (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Force Show"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.js:13
+msgid "Force Stop job"
+msgstr ""
+
+#. Label of the force_user_to_reset_password (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Force User to Reset Password"
+msgstr ""
+
+#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Force Web Capture Mode for Uploads"
+msgstr ""
+
+#: frappe/www/login.html:37
+msgid "Forgot Password?"
+msgstr ""
+
+#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
+#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
+#. Label of the form_tab (Tab Break) field in DocType 'Customize Form'
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Label of the form_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/printing/page/print/print.js:96
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Form"
+msgstr ""
+
+#. Label of the form_builder (HTML) field in DocType 'DocType'
+#. Label of the form_builder (HTML) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Form Builder"
+msgstr ""
+
+#. Label of the form_dict (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Form Dict"
+msgstr ""
+
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'DocType'
+#. Label of the form_settings_section (Section Break) field in DocType 'User'
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the form_settings_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Form Settings"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Form Tour"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Form Tour Step"
+msgstr ""
+
+#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Form URL-Encoded"
+msgstr ""
+
+#. Label of the format (Data) field in DocType 'Workspace Shortcut'
+#. Label of the format (Select) field in DocType 'Auto Email Report'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
+msgid "Format"
+msgstr ""
+
+#. Label of the format_data (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Format Data"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Fortnightly"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:70
+msgid "Forward"
+msgstr ""
+
+#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Forward To Email Address"
+msgstr ""
+
+#. Label of the fraction (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Fraction"
+msgstr ""
+
+#. Label of the fraction_units (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Fraction Units"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53
+#: frappe/www/login.py:153
+msgid "Frappe"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Frappe Blog"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Frappe Forum"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Frappe Framework"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:59
+msgid "Frappe Light"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:547
+msgid "Frappe Mail OAuth Error"
+msgstr ""
+
+#. Label of the frappe_mail_site (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail Site"
+msgstr ""
+
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "Frappe Support"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Frappe page builder using components"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112
+msgctxt "Image Cropper"
+msgid "Free"
+msgstr ""
+
+#. Label of the frequency (Select) field in DocType 'Auto Repeat'
+#. Label of the frequency (Select) field in DocType 'Scheduled Job Type'
+#. Label of the document_follow_frequency (Select) field in DocType 'User'
+#. Label of the frequency (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:395
+msgid "Frequency"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the friday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Friday"
+msgstr ""
+
+#. Label of the sender (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
+msgid "From"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:197
+msgctxt "Email Sender"
+msgid "From"
+msgstr ""
+
+#. Label of the from_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:8
+msgid "From Date"
+msgstr ""
+
+#. Label of the from_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "From Date Field"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
+msgid "From Document Type"
+msgstr ""
+
+#. Label of the sender_full_name (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "From Full Name"
+msgstr ""
+
+#. Label of the from_user (Link) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "From User"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:31
+msgid "From version"
+msgstr ""
+
+#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Full"
+msgstr ""
+
+#. Label of the full_name (Data) field in DocType 'Contact'
+#. Label of the full_name (Data) field in DocType 'Activity Log'
+#. Label of the full_name (Data) field in DocType 'User'
+#. Label of the full_name (Data) field in DocType 'About Us Team Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:479
+#: frappe/templates/signup.html:4
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "Full Name"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:80
+#: frappe/public/js/frappe/form/templates/print_layout.html:42
+msgid "Full Page"
+msgstr ""
+
+#. Label of the full_width (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Full Width"
+msgstr ""
+
+#. Label of the function (Select) field in DocType 'Number Card'
+#. Label of the report_function (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
+msgid "Function"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
+msgid "Function Based On"
+msgstr ""
+
+#: frappe/__init__.py:466
+msgid "Function {0} is not whitelisted."
+msgstr ""
+
+#: frappe/database/query.py:1419
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:419
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:291
+msgid "Fw: {0}"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "GET"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "GMail"
+msgstr ""
+
+#. Option for the 'License Type' (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "GNU Affero General Public License"
+msgstr ""
+
+#. Option for the 'License Type' (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "GNU General Public License"
+msgstr ""
+
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:10
+msgid "Gantt"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:205
+msgid "Gantt View"
+msgstr ""
+
+#. Label of the gender (Link) field in DocType 'Contact'
+#. Name of a DocType
+#. Label of the gender (Data) field in DocType 'Gender'
+#. Label of the gender (Link) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/core/doctype/user/user.json
+msgid "Gender"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:32
+msgid "Genderqueer"
+msgstr ""
+
+#: frappe/www/contact.html:29
+msgid "General"
+msgstr ""
+
+#. Label of the generate_keys (Button) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Generate Keys"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:882
+msgid "Generate New Report"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
+msgid "Generate Random Password"
+msgstr ""
+
+#. Label of the generate_separate_documents_for_each_assignee (Check) field in
+#. DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Generate Separate Documents For Each Assignee"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
+#: frappe/public/js/frappe/utils/utils.js:1827
+msgid "Generate Tracking URL"
+msgstr ""
+
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geoapify"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Geolocation"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geolocation Settings"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:226
+msgid "Get Alerts for Today"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:21
+msgid "Get Backup Encryption Key"
+msgstr ""
+
+#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Get Contacts"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:93
+msgid "Get Fields"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Get Header and Footer wkhtmltopdf variables"
+msgstr ""
+
+#: frappe/public/js/frappe/form/multi_select_dialog.js:86
+msgid "Get Items"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.js:6
+msgid "Get OpenID Configuration"
+msgstr ""
+
+#: frappe/www/printview.html:22
+msgid "Get PDF"
+msgstr ""
+
+#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Get a preview of generated names with a series."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:305
+msgid "Get more insights with"
+msgstr ""
+
+#. Description of the 'Email Threads on Assigned Document' (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Get notified when an email is received on any of the documents assigned to you."
+msgstr ""
+
+#. Description of the 'User Image' (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Get your globally recognized avatar from Gravatar.com"
+msgstr ""
+
+#. Label of the git_branch (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Git Branch"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "GitHub"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Github flavoured markdown syntax"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+msgid "Global Search DocType"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24
+msgid "Global Search Document Types Reset."
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+msgid "Global Search Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:122
+msgid "Global Shortcuts"
+msgstr ""
+
+#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+msgid "Global Unsubscribe"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:843
+msgid "Go"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:241
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:321
+msgid "Go Back"
+msgstr ""
+
+#: frappe/desk/doctype/notification_settings/notification_settings.js:17
+msgid "Go to Notification Settings List"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Go to Page"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
+msgid "Go to Workflow"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.js:18
+msgid "Go to Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:144
+msgid "Go to next record"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:154
+msgid "Go to previous record"
+msgstr ""
+
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53
+msgid "Go to the document"
+msgstr ""
+
+#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Go to this URL after completing the form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.js:54
+#: frappe/custom/doctype/client_script/client_script.js:12
+msgid "Go to {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:92
+#: frappe/core/doctype/doctype/doctype.js:55
+#: frappe/custom/doctype/customize_form/customize_form.js:104
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42
+#: frappe/workflow/doctype/workflow/workflow.js:44
+msgid "Go to {0} List"
+msgstr ""
+
+#: frappe/core/doctype/page/page.js:11
+msgid "Go to {0} Page"
+msgstr ""
+
+#: frappe/utils/goal.py:115 frappe/utils/goal.py:122
+msgid "Goal"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Google"
+msgstr ""
+
+#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Google Analytics ID"
+msgstr ""
+
+#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Google Analytics anonymise IP"
+msgstr ""
+
+#. Label of the sb_00 (Section Break) field in DocType 'Event'
+#. Label of the google_calendar (Link) field in DocType 'Event'
+#. Name of a DocType
+#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar'
+#. Label of a Link in the Integrations Workspace
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Calendar"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
+msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:610
+msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:305
+msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
+msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
+msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:496
+msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:580
+msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}."
+msgstr ""
+
+#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Google Calendar Event ID"
+msgstr ""
+
+#. Label of the google_calendar_id (Data) field in DocType 'Event'
+#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Google Calendar ID"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
+msgid "Google Calendar has been configured."
+msgstr ""
+
+#. Label of the sb_00 (Section Break) field in DocType 'Contact'
+#. Label of the google_contacts (Link) field in DocType 'Contact'
+#. Name of a DocType
+#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts'
+#. Label of a Link in the Integrations Workspace
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Contacts"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
+msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
+msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
+msgstr ""
+
+#. Label of the google_contacts_id (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Google Contacts Id"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
+msgid "Google Drive"
+msgstr ""
+
+#. Label of the section_break_7 (Section Break) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "Google Drive Picker"
+msgstr ""
+
+#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "Google Drive Picker Enabled"
+msgstr ""
+
+#. Label of the font (Data) field in DocType 'Print Format'
+#. Label of the google_font (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Google Font"
+msgstr ""
+
+#. Label of the google_meet_link (Small Text) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Google Meet Link"
+msgstr ""
+
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Services"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Settings"
+msgstr ""
+
+#: frappe/utils/csvutils.py:226
+msgid "Google Sheets URL is invalid or not publicly accessible."
+msgstr ""
+
+#: frappe/utils/csvutils.py:231
+msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again."
+msgstr ""
+
+#. Label of the grant_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Grant Type"
+msgstr ""
+
+#: frappe/public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
+msgid "Graph"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Gray"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:23
+msgid "Greater Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:25
+msgid "Greater Than Or Equal To"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Green"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:53
+msgid "Grid Empty State"
+msgstr ""
+
+#. Label of the grid_page_length (Int) field in DocType 'DocType'
+#. Label of the grid_page_length (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Grid Page Length"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:127
+msgid "Grid Shortcuts"
+msgstr ""
+
+#. Label of the group (Data) field in DocType 'DocType Action'
+#. Label of the group (Data) field in DocType 'DocType Link'
+#. Label of the group (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
+msgid "Group"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:32
+msgid "Group By"
+msgstr ""
+
+#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Group By Based On"
+msgstr ""
+
+#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Group By Type"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
+msgid "Group By field is required to create a dashboard chart"
+msgstr ""
+
+#: frappe/database/query.py:752
+msgid "Group By must be a string"
+msgstr ""
+
+#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Group Object Class"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Group your custom doctypes under modules"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
+msgid "Grouped by
{0}"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "HEAD"
+msgstr ""
+
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "HERE"
+msgstr ""
+
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
+#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "HH:mm"
+msgstr ""
+
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
+#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "HH:mm:ss"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the html_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
+#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
+#. Head'
+#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
+#. Label of the html (Code) field in DocType 'Print Format'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/print_format_builder/Field.vue:86
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
+msgid "HTML"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "HTML Editor"
+msgstr ""
+
+#. Label of the page (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "HTML Page"
+msgstr ""
+
+#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "HTML for header section. Optional"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "HTML with jinja support"
+msgstr ""
+
+#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Half"
+msgstr ""
+
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Half Yearly"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/public/js/frappe/utils/common.js:402
+msgid "Half-yearly"
+msgstr ""
+
+#. Label of the handled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Handled Emails"
+msgstr ""
+
+#. Label of the has_attachment (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Has Attachment"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/has_domain/has_domain.json
+msgid "Has Domain"
+msgstr ""
+
+#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Has Next Condition"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/has_role/has_role.json
+msgid "Has Role"
+msgstr ""
+
+#. Label of the has_setup_wizard (Check) field in DocType 'Installed
+#. Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Has Setup Wizard"
+msgstr ""
+
+#. Label of the has_web_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Has Web View"
+msgstr ""
+
+#: frappe/templates/signup.html:19
+msgid "Have an account? Login"
+msgstr ""
+
+#. Label of the header (Check) field in DocType 'SMS Parameter'
+#. Label of the header_section (Section Break) field in DocType 'Letter Head'
+#. Label of the header (HTML Editor) field in DocType 'Web Page'
+#. Label of the header (HTML Editor) field in DocType 'Website Slideshow'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Header"
+msgstr ""
+
+#. Label of the content (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Header HTML"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:69
+msgid "Header HTML set from attachment {0}"
+msgstr ""
+
+#. Label of the header_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Header Script"
+msgstr ""
+
+#. Label of the sb2 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Header and Breadcrumbs"
+msgstr ""
+
+#. Label of the section_break_38 (Tab Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Header, Robots"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Header/Footer scripts can be used to add dynamic behaviours."
+msgstr ""
+
+#. Label of the webhook_headers (Table) field in DocType 'Webhook'
+#. Label of the headers (Code) field in DocType 'Webhook Request Log'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+msgid "Headers"
+msgstr ""
+
+#: frappe/email/email_body.py:322
+msgid "Headers must be a dictionary"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the heading (Data) field in DocType 'Contact Us Settings'
+#. Label of the heading (Data) field in DocType 'Website Slideshow Item'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:609
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+msgid "Heading"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Heatmap"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:2
+msgid "Hello"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:2
+#: frappe/templates/emails/user_invitation_cancelled.html:2
+#: frappe/templates/emails/user_invitation_expired.html:2
+msgid "Hello,"
+msgstr ""
+
+#. Label of the help_section (Section Break) field in DocType 'Server Script'
+#. Label of the help (HTML) field in DocType 'Property Setter'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/workflow.js:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:87
+#: frappe/public/js/frappe/utils/help.js:27
+msgid "Help"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/workspace/website/website.json
+msgid "Help Article"
+msgstr ""
+
+#. Label of the help_articles (Int) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
+msgid "Help Articles"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/workspace/website/website.json
+msgid "Help Category"
+msgstr ""
+
+#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:84
+msgid "Help Dropdown"
+msgstr ""
+
+#. Label of the help_html (HTML) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Help HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
+msgid "Help on Search"
+msgstr ""
+
+#. Description of the 'Content' (Text Editor) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")"
+msgstr ""
+
+#. Label of the helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Helpful"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Helvetica"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Helvetica Neue"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1824
+msgid "Here's your tracking URL"
+msgstr ""
+
+#: frappe/www/qrcode.html:9
+msgid "Hi {0}"
+msgstr ""
+
+#. Label of the hidden (Check) field in DocType 'DocField'
+#. Label of the hidden (Check) field in DocType 'DocType Action'
+#. Label of the hidden (Check) field in DocType 'DocType Link'
+#. Label of the hidden (Check) field in DocType 'Navbar Item'
+#. Label of the hidden (Check) field in DocType 'Custom Field'
+#. Label of the hidden (Check) field in DocType 'Customize Form Field'
+#. Label of the hidden (Check) field in DocType 'Desktop Icon'
+#. Label of the hidden (Check) field in DocType 'Workspace Link'
+#. Label of the hidden (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Hidden"
+msgstr ""
+
+#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Hidden Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
+msgid "Hidden columns include: {0}"
+msgstr ""
+
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
+#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
+msgid "Hide"
+msgstr ""
+
+#. Label of the hide_block (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Hide Block"
+msgstr ""
+
+#. Label of the hide_border (Check) field in DocType 'DocField'
+#. Label of the hide_border (Check) field in DocType 'Custom Field'
+#. Label of the hide_border (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Hide Border"
+msgstr ""
+
+#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Hide Buttons"
+msgstr ""
+
+#. Label of the allow_copy (Check) field in DocType 'DocType'
+#. Label of the allow_copy (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Hide Copy"
+msgstr ""
+
+#. Label of the hide_custom (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Hide Custom DocTypes and Reports"
+msgstr ""
+
+#. Label of the hide_days (Check) field in DocType 'DocField'
+#. Label of the hide_days (Check) field in DocType 'Custom Field'
+#. Label of the hide_days (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Hide Days"
+msgstr ""
+
+#. Label of the hide_descendants (Check) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:96
+msgid "Hide Descendants"
+msgstr ""
+
+#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hide Empty Read-Only Fields"
+msgstr ""
+
+#: frappe/www/error.html:62
+msgid "Hide Error"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:488
+msgid "Hide Label"
+msgstr ""
+
+#. Label of the hide_login (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Hide Login"
+msgstr ""
+
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
+msgid "Hide Preview"
+msgstr ""
+
+#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Hide Previous, Next and Close button on highlight dialog."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:94
+msgid "Hide Saved"
+msgstr ""
+
+#. Label of the hide_seconds (Check) field in DocType 'DocField'
+#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
+#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Hide Seconds"
+msgstr ""
+
+#. Label of the hide_toolbar (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Hide Sidebar, Menu, and Comments"
+msgstr ""
+
+#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Hide Standard Menu"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1851
+msgid "Hide Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
+msgid "Hide Weekends"
+msgstr ""
+
+#. Description of the 'Hide Descendants' (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Hide descendant records of For Value."
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:285
+msgid "Hide details"
+msgstr ""
+
+#. Label of the hide_footer (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Hide footer"
+msgstr ""
+
+#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hide footer in auto email reports"
+msgstr ""
+
+#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Hide footer signup"
+msgstr ""
+
+#. Label of the hide_navbar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Hide navbar"
+msgstr ""
+
+#. Option for the 'Priority' (Select) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:225
+msgid "High"
+msgstr ""
+
+#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Higher priority rule will be applied first"
+msgstr ""
+
+#. Label of the highlight (Text) field in DocType 'Company History'
+#: frappe/website/doctype/company_history/company_history.json
+msgid "Highlight"
+msgstr ""
+
+#: frappe/www/update-password.html:301
+msgid "Hint: Include symbols, numbers and capital letters in the password"
+msgstr ""
+
+#. Label of the home_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38
+#: frappe/public/js/frappe/views/file/file_view.js:67
+#: frappe/public/js/frappe/views/file/file_view.js:88
+#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19
+#: frappe/templates/includes/navbar/navbar.html:9
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
+#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
+#: frappe/www/message.html:29
+msgid "Home"
+msgstr ""
+
+#. Label of the home_page (Data) field in DocType 'Role'
+#. Label of the home_page (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Home Page"
+msgstr ""
+
+#. Label of the home_settings (Code) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Home Settings"
+msgstr ""
+
+#: frappe/core/doctype/file/test_file.py:321
+#: frappe/core/doctype/file/test_file.py:323
+#: frappe/core/doctype/file/test_file.py:387
+msgid "Home/Test Folder 1"
+msgstr ""
+
+#: frappe/core/doctype/file/test_file.py:376
+msgid "Home/Test Folder 1/Test Folder 3"
+msgstr ""
+
+#: frappe/core/doctype/file/test_file.py:332
+msgid "Home/Test Folder 2"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Frequency' (Select) field in DocType 'User'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+msgid "Hourly"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Hourly Long"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Hourly Maintenance"
+msgstr ""
+
+#. Description of the 'Password Reset Link Generation Limit' (Int) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hourly rate limit for generating password reset links"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
+#. Description of the 'Number Format' (Select) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "How should this currency be formatted? If not set, will use system defaults"
+msgstr ""
+
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
+#. Paragraph text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
+#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
+#: frappe/public/js/frappe/data_import/data_exporter.js:330
+#: frappe/public/js/frappe/data_import/data_exporter.js:345
+#: frappe/public/js/frappe/list/list_settings.js:335
+#: frappe/public/js/frappe/list/list_view.js:386
+#: frappe/public/js/frappe/list/list_view.js:450
+#: frappe/public/js/frappe/model/meta.js:200
+#: frappe/public/js/frappe/model/model.js:122
+msgid "ID"
+msgstr ""
+
+#: frappe/desk/reportview.py:526
+#: frappe/public/js/frappe/views/reports/report_view.js:989
+msgctxt "Label of name column in report"
+msgid "ID"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169
+msgid "ID (name)"
+msgstr ""
+
+#. Description of the 'Field Name' (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "ID (name) of the entity whose property is to be set"
+msgstr ""
+
+#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique."
+msgstr ""
+
+#. Label of the section_break_25 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "IMAP Details"
+msgstr ""
+
+#. Label of the imap_folder (Data) field in DocType 'Communication'
+#. Label of the imap_folder (Table) field in DocType 'Email Account'
+#. Name of a DocType
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "IMAP Folder"
+msgstr ""
+
+#. Label of the ip_address (Data) field in DocType 'Activity Log'
+#. Label of the ip_address (Data) field in DocType 'Comment'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+msgid "IP Address"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the icon (Data) field in DocType 'DocType'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the icon (Data) field in DocType 'Desktop Icon'
+#. Label of the icon (Icon) field in DocType 'Workspace'
+#. Label of the icon (Data) field in DocType 'Workspace Link'
+#. Label of the icon (Data) field in DocType 'Workspace Shortcut'
+#. Label of the icon (Data) field in DocType 'Social Login Key'
+#. Label of the icon (Select) field in DocType 'Workflow State'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:458
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Icon"
+msgstr ""
+
+#. Description of the 'Icon' (Select) field in DocType 'Workflow State'
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Icon will appear on the button"
+msgstr ""
+
+#. Label of the sb_identity_details (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Identity Details"
+msgstr ""
+
+#. Label of the idx (Int) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Idx"
+msgstr ""
+
+#. Description of the 'Apply Strict User Permissions' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User"
+msgstr ""
+
+#. Description of the 'Don't Override Status' (Check) field in DocType
+#. 'Workflow'
+#. Description of the 'Don't Override Status' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "If Checked workflow status will not override status in list view"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1777
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
+#: frappe/public/js/frappe/roles_editor.js:68
+msgid "If Owner"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:25
+msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
+msgstr ""
+
+#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "If checked, all other workflows become inactive."
+msgstr ""
+
+#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
+#. Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive"
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "If checked, users will not see the Confirm Access dialog."
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
+msgid "If disabled, this role will be removed from all users."
+msgstr ""
+
+#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
+#. Enabled' (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings"
+msgstr ""
+
+#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "If enabled, all responses on the web form will be submitted anonymously"
+msgstr ""
+
+#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
+#. Enabled' (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page"
+msgstr ""
+
+#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "If enabled, changes to the document are tracked and shown in timeline"
+msgstr ""
+
+#. Description of the 'Track Views' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "If enabled, document views are tracked, this can happen multiple times"
+msgstr ""
+
+#. Description of the 'Track Seen' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "If enabled, the document is marked as seen, the first time a user opens it"
+msgstr ""
+
+#. Description of the 'Send System Notification' (Check) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar."
+msgstr ""
+
+#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong."
+msgstr ""
+
+#. Description of the 'Bypass Two Factor Auth for users who login from
+#. restricted IP Address' (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth"
+msgstr ""
+
+#. Description of the 'Notify Users On Every Login' (Check) field in DocType
+#. 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
+msgstr ""
+
+#. Description of the 'Default Workspace' (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "If left empty, the default workspace will be the last visited workspace"
+msgstr ""
+
+#. Description of the 'Port' (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "If non standard port (e.g. 587)"
+msgstr ""
+
+#. Description of the 'Port' (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
+msgstr ""
+
+#. Description of the 'Port' (Data) field in DocType 'Email Account'
+#. Description of the 'Port' (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
+msgstr ""
+
+#. Description of the 'Currency Precision' (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If not set, the currency precision will depend on number format"
+msgstr ""
+
+#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
+msgstr ""
+
+#. Description of the 'User Type' (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
+msgstr ""
+
+#: frappe/templates/emails/user_invitation_cancelled.html:8
+msgid "If this was a mistake or you need access again, please reach out to your team."
+msgstr ""
+
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
+#. 'DocField'
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
+#. Field'
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "If unchecked, the value will always be re-fetched on save."
+msgstr ""
+
+#. Label of the if_owner (Check) field in DocType 'Custom DocPerm'
+#. Label of the if_owner (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+msgid "If user is the owner"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:204
+msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:188
+msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:186
+msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:19
+msgid "If you have any questions, reach out to your system administrator."
+msgstr ""
+
+#: frappe/utils/password.py:213
+msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key."
+msgstr ""
+
+#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "If you set this, this Item will come in a drop-down under the selected parent."
+msgstr ""
+
+#: frappe/templates/emails/administrator_logged_in.html:3
+msgid "If you think this is unauthorized, please change the Administrator password."
+msgstr ""
+
+#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included."
+msgstr ""
+
+#. Description of the 'Source Text' (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
+msgstr ""
+
+#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Ignore User Permissions"
+msgstr ""
+
+#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Ignore XSS Filter"
+msgstr ""
+
+#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
+#. Account'
+#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Ignore attachments over this size"
+msgstr ""
+
+#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Ignored Apps"
+msgstr ""
+
+#: frappe/model/workflow.py:202
+msgid "Illegal Document Status for {0}"
+msgstr ""
+
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
+msgid "Illegal SQL Query"
+msgstr ""
+
+#: frappe/utils/jinja.py:127
+msgid "Illegal template"
+msgstr ""
+
+#. Label of the image (Attach Image) field in DocType 'Contact'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
+#. Head'
+#. Label of the image (Attach Image) field in DocType 'Letter Head'
+#. Label of the footer_image (Attach Image) field in DocType 'Letter Head'
+#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
+#. Label of the meta_image (Attach Image) field in DocType 'Web Page'
+#. Label of the image (Attach) field in DocType 'Website Slideshow Item'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+msgid "Image"
+msgstr ""
+
+#. Label of the image_field (Data) field in DocType 'DocType'
+#. Label of the image_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Image Field"
+msgstr ""
+
+#. Label of the image_height (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Image Height"
+msgstr ""
+
+#. Label of the image_link (Attach) field in DocType 'About Us Team Member'
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "Image Link"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:208
+msgid "Image View"
+msgstr ""
+
+#. Label of the image_width (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_width (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Image Width"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1507
+msgid "Image field must be a valid fieldname"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1509
+msgid "Image field must be of type Attach Image"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:136
+msgid "Image link '{0}' is not valid"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:108
+msgid "Image optimized"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:289
+msgid "Image: Corrupted Data Stream"
+msgstr ""
+
+#: frappe/public/js/frappe/views/image/image_view.js:13
+msgid "Images"
+msgstr ""
+
+#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.js:372
+msgid "Impersonate"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:399
+msgid "Impersonate as {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352
+msgid "Impersonated by {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:21
+msgid "Impersonating {0}"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:56
+msgid "Implement `clear_old_logs` method to enable auto error clearing."
+msgstr ""
+
+#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Implicit"
+msgstr ""
+
+#. Label of the import (Check) field in DocType 'Custom DocPerm'
+#. Label of the import (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/email/doctype/email_group/email_group.js:31
+msgid "Import"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1913
+msgctxt "Button in list view menu"
+msgid "Import"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of a shortcut in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Import Data"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:14
+msgid "Import Email From"
+msgstr ""
+
+#. Label of the import_file (Attach) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import File"
+msgstr ""
+
+#. Label of the import_warnings_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import File Errors and Warnings"
+msgstr ""
+
+#. Label of the import_log_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import Log"
+msgstr ""
+
+#. Label of the import_log_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import Log Preview"
+msgstr ""
+
+#. Label of the import_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import Preview"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:41
+msgid "Import Progress"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:8
+#: frappe/email/doctype/email_group/email_group.js:30
+msgid "Import Subscribers"
+msgstr ""
+
+#. Label of the import_type (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import Type"
+msgstr ""
+
+#. Label of the import_warnings (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import Warnings"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:117
+msgid "Import Zip"
+msgstr ""
+
+#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Import from Google Sheets"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:612
+msgid "Import template should be of type .csv, .xlsx or .xls"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:482
+msgid "Import template should contain a Header and atleast one row."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:165
+msgid "Import timed out, please re-try."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.py:68
+msgid "Importing {0} is not allowed."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:19
+msgid "Importing {0} of {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:35
+msgid "Importing {0} of {1}, {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:20
+msgid "In"
+msgstr ""
+
+#. Description of the 'Force User to Reset Password' (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "In Days"
+msgstr ""
+
+#. Label of the in_filter (Check) field in DocType 'DocField'
+#. Label of the in_filter (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "In Filter"
+msgstr ""
+
+#. Label of the in_global_search (Check) field in DocType 'DocField'
+#. Label of the in_global_search (Check) field in DocType 'Custom Field'
+#. Label of the in_global_search (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "In Global Search"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.js:88
+msgid "In Grid View"
+msgstr ""
+
+#. Label of the in_standard_filter (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "In List Filter"
+msgstr ""
+
+#. Label of the in_list_view (Check) field in DocType 'DocField'
+#. Label of the in_list_view (Check) field in DocType 'Custom Field'
+#. Label of the in_list_view (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.js:89
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "In List View"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
+msgid "In Minutes"
+msgstr ""
+
+#. Label of the in_preview (Check) field in DocType 'DocField'
+#. Label of the in_preview (Check) field in DocType 'Custom Field'
+#. Label of the in_preview (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "In Preview"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:42
+msgid "In Progress"
+msgstr ""
+
+#: frappe/database/database.py:287
+msgid "In Read Only Mode"
+msgstr ""
+
+#. Label of the in_reply_to (Link) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "In Reply To"
+msgstr ""
+
+#. Label of the in_standard_filter (Check) field in DocType 'Custom Field'
+#. Label of the in_standard_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "In Standard Filter"
+msgstr ""
+
+#. Description of the 'Font Size' (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "In points. Default is 9."
+msgstr ""
+
+#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "In seconds"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:209
+msgid "Inactive"
+msgstr ""
+
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/email/doctype/email_account/email_account_list.js:19
+msgid "Inbox"
+msgstr ""
+
+#. Name of a role
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Inbox User"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:209
+msgid "Inbox View"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:110
+msgid "Include Disabled"
+msgstr ""
+
+#. Label of the include_name_field (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Include Name Field"
+msgstr ""
+
+#. Label of the navbar_search (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Include Search in Top Bar"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.js:61
+msgid "Include Theme from Apps"
+msgstr ""
+
+#. Label of the attach_view_link (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Include Web View Link in Email"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
+msgid "Include filters"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
+msgid "Include indentation"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:106
+msgid "Include symbols, numbers and capital letters in the password"
+msgstr ""
+
+#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Incoming"
+msgstr ""
+
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Incoming (POP/IMAP) Settings"
+msgstr ""
+
+#. Label of the incoming_emails_last_7_days_column (Column Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Incoming Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the email_server (Data) field in DocType 'Email Account'
+#. Label of the email_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Incoming Server"
+msgstr ""
+
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Incoming Settings"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:32
+msgid "Incoming email account not correct"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
+msgid "Incomplete Virtual Doctype Implementation"
+msgstr ""
+
+#: frappe/auth.py:258
+msgid "Incomplete login details"
+msgstr ""
+
+#: frappe/email/smtp.py:104
+msgid "Incorrect Configuration"
+msgstr ""
+
+#: frappe/utils/csvutils.py:234
+msgid "Incorrect URL"
+msgstr ""
+
+#: frappe/utils/password.py:100
+msgid "Incorrect User or Password"
+msgstr ""
+
+#: frappe/twofactor.py:176 frappe/twofactor.py:188
+msgid "Incorrect Verification code"
+msgstr ""
+
+#: frappe/model/document.py:1555
+msgid "Incorrect value in row {0}:"
+msgstr ""
+
+#: frappe/model/document.py:1557
+msgid "Incorrect value:"
+msgstr ""
+
+#. Label of the search_index (Check) field in DocType 'DocField'
+#. Label of the index (Int) field in DocType 'Recorder Query'
+#. Label of the search_index (Check) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55
+#: frappe/public/js/frappe/model/meta.js:203
+#: frappe/public/js/frappe/model/model.js:124
+#: frappe/public/js/frappe/views/reports/report_view.js:1010
+msgid "Index"
+msgstr ""
+
+#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Index Web Pages for Search"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.py:132
+msgid "Index created successfully on column {0} of doctype {1}"
+msgstr ""
+
+#. Label of the indexing_authorization_code (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Indexing authorization code"
+msgstr ""
+
+#. Label of the indexing_refresh_token (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Indexing refresh token"
+msgstr ""
+
+#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Indicator"
+msgstr ""
+
+#. Label of the indicator_color (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Indicator Color"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:463
+msgid "Indicator color"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Info"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:144
+msgid "Info:"
+msgstr ""
+
+#. Label of the initial_sync_count (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Initial Sync Count"
+msgstr ""
+
+#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "InnoDB"
+msgstr ""
+
+#. Description of the 'New Role' (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Input existing role name if you would like to extend it with access of another role."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import_list.js:35
+msgid "Insert"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Above"
+msgstr ""
+
+#. Label of the insert_after (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
+msgid "Insert After"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:251
+msgid "Insert After cannot be set as {0}"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:244
+msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Below"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:395
+msgid "Insert Column Before {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:82
+msgid "Insert Image in Markdown"
+msgstr ""
+
+#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Insert New Records"
+msgstr ""
+
+#. Label of the insert_style (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Insert Style"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Instagram"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
+msgid "Install {0} from Marketplace"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Installed Application"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the installed_applications (Table) field in DocType 'Installed
+#. Applications'
+#: frappe/core/doctype/installed_applications/installed_applications.json
+msgid "Installed Applications"
+msgstr ""
+
+#: frappe/core/doctype/installed_applications/installed_applications.js:18
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Installed Apps"
+msgstr ""
+
+#. Label of the instructions (HTML) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Instructions"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:261
+msgid "Instructions Emailed"
+msgstr ""
+
+#: frappe/permissions.py:840
+msgid "Insufficient Permission Level for {0}"
+msgstr ""
+
+#: frappe/database/query.py:808 frappe/database/query.py:1054
+msgid "Insufficient Permission for {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:361
+msgid "Insufficient Permissions for deleting Report"
+msgstr ""
+
+#: frappe/desk/reportview.py:332
+msgid "Insufficient Permissions for editing Report"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:446
+msgid "Insufficient attachment limit"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Int"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Integration Request"
+msgstr ""
+
+#. Group in User's connections
+#. Name of a Workspace
+#. Label of the integrations (Tab Break) field in DocType 'Website Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Integrations"
+msgstr ""
+
+#. Description of the 'Delivery Status' (Select) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Integrations can use this field to set email delivery status"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Inter"
+msgstr ""
+
+#. Label of the interest (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Interests"
+msgstr ""
+
+#. Option for the 'Level' (Select) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Intermediate"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:235
+msgid "Internal Server Error"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/docshare/docshare.json
+msgid "Internal record of document shares"
+msgstr ""
+
+#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Intro Video URL"
+msgstr ""
+
+#. Description of the 'Company Introduction' (Text Editor) field in DocType
+#. 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Introduce your company to the website visitor."
+msgstr ""
+
+#. Label of the introduction_section (Section Break) field in DocType 'Contact
+#. Us Settings'
+#. Label of the introduction (Text Editor) field in DocType 'Contact Us
+#. Settings'
+#. Label of the introduction_text (Text Editor) field in DocType 'Web Form'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Introduction"
+msgstr ""
+
+#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Introductory information for the Contact Us Page"
+msgstr ""
+
+#. Label of the introspection_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Introspection URI"
+msgstr ""
+
+#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Invalid"
+msgstr ""
+
+#: frappe/public/js/form_builder/utils.js:221
+#: frappe/public/js/frappe/form/grid_row.js:850
+#: frappe/public/js/frappe/form/layout.js:810
+#: frappe/public/js/frappe/views/reports/report_view.js:721
+msgid "Invalid \"depends_on\" expression"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:514
+msgid "Invalid \"depends_on\" expression set in filter {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:210
+msgid "Invalid \"mandatory_depends_on\" expression"
+msgstr ""
+
+#: frappe/utils/nestedset.py:178
+msgid "Invalid Action"
+msgstr ""
+
+#: frappe/utils/csvutils.py:37
+msgid "Invalid CSV Format"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
+msgid "Invalid Code. Please try again."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:91
+msgid "Invalid Condition: {}"
+msgstr ""
+
+#: frappe/email/smtp.py:135
+msgid "Invalid Credentials"
+msgstr ""
+
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
+msgid "Invalid Date"
+msgstr ""
+
+#: frappe/www/list.py:85
+msgid "Invalid DocType"
+msgstr ""
+
+#: frappe/database/query.py:144
+msgid "Invalid DocType: {0}"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.py:51
+msgid "Invalid Doctype"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1273
+msgid "Invalid Fieldname"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:221
+msgid "Invalid File URL"
+msgstr ""
+
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
+msgid "Invalid Filter"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:221
+msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
+msgstr ""
+
+#: frappe/utils/dashboard.py:61
+msgid "Invalid Filter Value"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.py:83
+msgid "Invalid Home Page"
+msgstr ""
+
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
+msgid "Invalid Link"
+msgstr ""
+
+#: frappe/www/login.py:128
+msgid "Invalid Login Token"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:290
+msgid "Invalid Login. Try again."
+msgstr ""
+
+#: frappe/email/receive.py:112 frappe/email/receive.py:149
+msgid "Invalid Mail Server. Please rectify and try again."
+msgstr ""
+
+#: frappe/model/naming.py:109
+msgid "Invalid Naming Series: {}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
+msgid "Invalid Operation"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1642
+#: frappe/core/doctype/doctype/doctype.py:1651
+msgid "Invalid Option"
+msgstr ""
+
+#: frappe/email/smtp.py:103
+msgid "Invalid Outgoing Mail Server or Port: {0}"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
+msgid "Invalid Output Format"
+msgstr ""
+
+#: frappe/model/base_document.py:134
+msgid "Invalid Override"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.py:202
+msgid "Invalid Parameters."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
+msgid "Invalid Password"
+msgstr ""
+
+#: frappe/utils/__init__.py:125
+msgid "Invalid Phone Number"
+msgstr ""
+
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/www/login.py:128
+msgid "Invalid Request"
+msgstr ""
+
+#: frappe/desk/search.py:26
+msgid "Invalid Search Field {0}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1215
+msgid "Invalid Table Fieldname"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/store.js:192
+msgid "Invalid Transition"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:232
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
+#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
+msgid "Invalid URL"
+msgstr ""
+
+#: frappe/email/receive.py:157
+msgid "Invalid User Name or Support Password. Please rectify and try again."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:137
+msgid "Invalid Values"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:120
+msgid "Invalid Webhook Secret"
+msgstr ""
+
+#: frappe/desk/reportview.py:187
+msgid "Invalid aggregate function"
+msgstr ""
+
+#: frappe/database/query.py:1544
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:195
+msgid "Invalid app"
+msgstr ""
+
+#: frappe/database/query.py:1470
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1446
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:462
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:577
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:404
+msgid "Invalid column"
+msgstr ""
+
+#: frappe/database/query.py:383
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:789
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
+#: frappe/model/document.py:1020 frappe/model/document.py:1034
+msgid "Invalid docstatus"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:229
+msgid "Invalid expression set in filter {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:219
+msgid "Invalid expression set in filter {0} ({1})"
+msgstr ""
+
+#: frappe/database/query.py:1303
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:736
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1622
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2241
+msgid "Invalid field name {0}"
+msgstr ""
+
+#: frappe/database/query.py:670
+msgid "Invalid field type: {0}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1086
+msgid "Invalid fieldname '{0}' in autoname"
+msgstr ""
+
+#: frappe/deprecation_dumpster.py:283
+msgid "Invalid file path: {0}"
+msgstr ""
+
+#: frappe/database/query.py:366
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:452
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:201
+msgid "Invalid filter: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1424
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1385
+msgid "Invalid function dictionary format"
+msgstr ""
+
+#: frappe/core/api/user_invitation.py:17
+msgid "Invalid input"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard/dashboard.py:67
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
+msgid "Invalid json added in the custom options: {0}"
+msgstr ""
+
+#: frappe/core/api/user_invitation.py:115
+msgid "Invalid key"
+msgstr ""
+
+#: frappe/model/naming.py:498
+msgid "Invalid name type (integer) for varchar name column"
+msgstr ""
+
+#: frappe/model/naming.py:62
+msgid "Invalid naming series {}: dot (.) missing"
+msgstr ""
+
+#: frappe/model/naming.py:76
+msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:453
+msgid "Invalid or corrupted content for import"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.py:139
+msgid "Invalid redirect regex in row #{}: {}"
+msgstr ""
+
+#: frappe/app.py:340
+msgid "Invalid request arguments"
+msgstr ""
+
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:181
+msgid "Invalid role"
+msgstr ""
+
+#: frappe/database/query.py:412
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:343
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1491
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:430
+msgid "Invalid template file for import"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.py:208
+msgid "Invalid token state! Check if the token has been created by the OAuth user."
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
+msgid "Invalid username or password"
+msgstr ""
+
+#: frappe/model/naming.py:176
+msgid "Invalid value specified for UUID: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:253
+msgctxt "Error message in web form"
+msgid "Invalid values for fields:"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:654
+msgid "Invalid wkhtmltopdf version"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1565
+msgid "Invalid {0} condition"
+msgstr ""
+
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Inverse"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:95
+msgid "Invitation already accepted"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:99
+msgid "Invitation already exists"
+msgstr ""
+
+#: frappe/core/api/user_invitation.py:84
+msgid "Invitation cannot be cancelled"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:127
+msgid "Invitation is cancelled"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:125
+msgid "Invitation is expired"
+msgstr ""
+
+#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78
+msgid "Invitation not found"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:59
+msgid "Invitation to join {0} cancelled"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:76
+msgid "Invitation to join {0} expired"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:30
+msgid "Invite as User"
+msgstr ""
+
+#. Label of the invited_by (Link) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Invited By"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:22
+msgid "Is"
+msgstr ""
+
+#. Label of the is_active (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Is Active"
+msgstr ""
+
+#. Label of the is_attachments_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Is Attachments Folder"
+msgstr ""
+
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Is Calendar and Gantt"
+msgstr ""
+
+#. Label of the istable (Check) field in DocType 'DocType'
+#. Label of the is_child_table (Check) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:50
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Is Child Table"
+msgstr ""
+
+#. Label of the is_complete (Check) field in DocType 'Module Onboarding'
+#. Label of the is_complete (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Is Complete"
+msgstr ""
+
+#. Label of the is_completed (Check) field in DocType 'Email Flag Queue'
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+msgid "Is Completed"
+msgstr ""
+
+#. Label of the is_custom (Check) field in DocType 'Role'
+#. Label of the is_custom (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "Is Custom"
+msgstr ""
+
+#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Is Custom Field"
+msgstr ""
+
+#. Label of the is_default (Check) field in DocType 'Address Template'
+#. Label of the is_default (Check) field in DocType 'User Permission'
+#. Label of the is_default (Check) field in DocType 'Dashboard'
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:69
+#: frappe/desk/doctype/dashboard/dashboard.json
+msgid "Is Default"
+msgstr ""
+
+#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Is Dynamic URL?"
+msgstr ""
+
+#. Label of the is_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Is Folder"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:43
+msgid "Is Global"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
+#. Label of the is_hidden (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Is Hidden"
+msgstr ""
+
+#. Label of the is_home_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Is Home Folder"
+msgstr ""
+
+#. Label of the reqd (Check) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Is Mandatory Field"
+msgstr ""
+
+#. Label of the is_optional_state (Check) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Is Optional State"
+msgstr ""
+
+#. Label of the is_primary (Check) field in DocType 'Contact Email'
+#: frappe/contacts/doctype/contact_email/contact_email.json
+msgid "Is Primary"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
+#. Label of the is_primary_contact (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
+msgid "Is Primary Contact"
+msgstr ""
+
+#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
+msgid "Is Primary Mobile"
+msgstr ""
+
+#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
+msgid "Is Primary Phone"
+msgstr ""
+
+#. Label of the is_private (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Is Private"
+msgstr ""
+
+#. Label of the is_public (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_public (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Is Public"
+msgstr ""
+
+#. Label of the is_published_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Is Published Field"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1516
+msgid "Is Published Field must be a valid fieldname"
+msgstr ""
+
+#. Label of the is_query_report (Check) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
+msgid "Is Query Report"
+msgstr ""
+
+#. Label of the is_remote_request (Check) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Is Remote Request?"
+msgstr ""
+
+#. Label of the is_setup_complete (Check) field in DocType 'Installed
+#. Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Is Setup Complete?"
+msgstr ""
+
+#. Label of the issingle (Check) field in DocType 'DocType'
+#. Label of the is_single (Check) field in DocType 'Onboarding Step'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:65
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Is Single"
+msgstr ""
+
+#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Is Skipped"
+msgstr ""
+
+#. Label of the is_spam (Check) field in DocType 'Email Rule'
+#: frappe/email/doctype/email_rule/email_rule.json
+msgid "Is Spam"
+msgstr ""
+
+#. Label of the is_standard (Check) field in DocType 'Navbar Item'
+#. Label of the is_standard (Select) field in DocType 'Report'
+#. Label of the is_standard (Check) field in DocType 'User Type'
+#. Label of the is_standard (Check) field in DocType 'Dashboard'
+#. Label of the is_standard (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_standard (Check) field in DocType 'Form Tour'
+#. Label of the is_standard (Check) field in DocType 'Number Card'
+#. Label of the is_standard (Check) field in DocType 'Notification'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Is Standard"
+msgstr ""
+
+#. Label of the is_submittable (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:40
+msgid "Is Submittable"
+msgstr ""
+
+#. Label of the is_system_generated (Check) field in DocType 'Custom Field'
+#. Label of the is_system_generated (Check) field in DocType 'Customize Form
+#. Field'
+#. Label of the is_system_generated (Check) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Is System Generated"
+msgstr ""
+
+#. Label of the istable (Check) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Is Table"
+msgstr ""
+
+#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Is Table Field"
+msgstr ""
+
+#. Label of the is_tree (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Is Tree"
+msgstr ""
+
+#. Label of the is_unique (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "Is Unique"
+msgstr ""
+
+#. Label of the is_virtual (Check) field in DocType 'DocType'
+#. Label of the is_virtual (Check) field in DocType 'Custom Field'
+#. Label of the is_virtual (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Is Virtual"
+msgstr ""
+
+#. Label of the is_standard (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Is standard"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311
+msgid "It is risky to delete this file: {0}. Please contact your System Manager."
+msgstr ""
+
+#. Label of the item_label (Data) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+msgid "Item Label"
+msgstr ""
+
+#. Label of the item_type (Select) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+msgid "Item Type"
+msgstr ""
+
+#: frappe/utils/nestedset.py:229
+msgid "Item cannot be added to its own descendants"
+msgstr ""
+
+#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "JS"
+msgstr ""
+
+#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "JS Message"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the json (Code) field in DocType 'Report'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "JSON"
+msgstr ""
+
+#. Label of the webhook_json (Code) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "JSON Request Body"
+msgstr ""
+
+#: frappe/templates/signup.html:5
+msgid "Jane Doe"
+msgstr ""
+
+#. Label of the js (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "JavaScript"
+msgstr ""
+
+#. Description of the 'Javascript' (Code) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
+msgstr ""
+
+#. Label of the javascript (Code) field in DocType 'Report'
+#. Label of the javascript_section (Section Break) field in DocType 'Custom
+#. HTML Block'
+#. Label of the javascript (Code) field in DocType 'Web Page'
+#. Label of the javascript (Code) field in DocType 'Website Script'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
+msgid "Javascript"
+msgstr ""
+
+#: frappe/www/login.html:74
+msgid "Javascript is disabled on your browser"
+msgstr ""
+
+#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Jinja"
+msgstr ""
+
+#. Label of the job_id (Data) field in DocType 'Prepared Report'
+#. Label of the job_id (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Job ID"
+msgstr ""
+
+#. Label of the job_id (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Job Id"
+msgstr ""
+
+#. Label of the job_info_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Job Info"
+msgstr ""
+
+#. Label of the job_name (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Job Name"
+msgstr ""
+
+#. Label of the job_status_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Job Status"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.js:24
+msgid "Job Stopped Successfully"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.py:121
+msgid "Job is in {0} state and can't be cancelled"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.py:113
+msgid "Job is not running."
+msgstr ""
+
+#: frappe/desk/doctype/event/event.js:55
+msgid "Join video conference with {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
+msgid "Jump to field"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:17
+#: frappe/public/js/frappe/utils/number_systems.js:31
+#: frappe/public/js/frappe/utils/number_systems.js:53
+msgctxt "Number system"
+msgid "K"
+msgstr ""
+
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Kanban"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
+msgid "Kanban Board"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Kanban Board Column"
+msgstr ""
+
+#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
+msgid "Kanban Board Name"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
+msgctxt "Button in kanban view menu"
+msgid "Kanban Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:206
+msgid "Kanban View"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Keep track of all update feeds"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/communication/communication.json
+msgid "Keeps track of all communications"
+msgstr ""
+
+#. Label of the defkey (Data) field in DocType 'DefaultValue'
+#. Label of the key (Data) field in DocType 'Document Share Key'
+#. Label of the key (Data) field in DocType 'User Invitation'
+#. Label of the key (Data) field in DocType 'Query Parameters'
+#. Label of the key (Data) field in DocType 'Webhook Data'
+#. Label of the key (Small Text) field in DocType 'Webhook Header'
+#. Label of the key (Data) field in DocType 'Website Meta Tag'
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
+msgid "Key"
+msgstr ""
+
+#. Label of a standard help item
+#. Type: Action
+#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
+msgid "Keyboard Shortcuts"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Keycloak"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:37
+msgctxt "Number system"
+msgid "Kh"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/doctype/help_article/help_article.py:80
+#: frappe/website/doctype/help_article/templates/help_article_list.html:2
+#: frappe/website/doctype/help_article/templates/help_article_list.html:11
+#: frappe/website/workspace/website/website.json
+msgid "Knowledge Base"
+msgstr ""
+
+#. Name of a role
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Knowledge Base Contributor"
+msgstr ""
+
+#. Name of a role
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Knowledge Base Editor"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:27
+#: frappe/public/js/frappe/utils/number_systems.js:49
+msgctxt "Number system"
+msgid "L"
+msgstr ""
+
+#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Auth"
+msgstr ""
+
+#. Label of the ldap_custom_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Custom Settings"
+msgstr ""
+
+#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Email Field"
+msgstr ""
+
+#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP First Name Field"
+msgstr ""
+
+#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
+msgid "LDAP Group"
+msgstr ""
+
+#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Group Field"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
+msgid "LDAP Group Mapping"
+msgstr ""
+
+#. Label of the ldap_group_mappings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Group Mappings"
+msgstr ""
+
+#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Group Member attribute"
+msgstr ""
+
+#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Last Name Field"
+msgstr ""
+
+#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Middle Name Field"
+msgstr ""
+
+#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Mobile Field"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
+msgid "LDAP Not Installed"
+msgstr ""
+
+#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Phone Field"
+msgstr ""
+
+#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Search String"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
+msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
+msgstr ""
+
+#. Label of the ldap_search_and_paths_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Search and Paths"
+msgstr ""
+
+#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Security"
+msgstr ""
+
+#. Label of the ldap_server_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Server Settings"
+msgstr ""
+
+#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Server Url"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "LDAP Settings"
+msgstr ""
+
+#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in
+#. DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP User Creation and Mapping"
+msgstr ""
+
+#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP Username Field"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
+msgid "LDAP is not enabled."
+msgstr ""
+
+#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP search path for Groups"
+msgstr ""
+
+#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "LDAP search path for Users"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
+msgid "LDAP settings incorrect. validation response was: {0}"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Label of the label (Data) field in DocType 'DocField'
+#. Label of the label (Data) field in DocType 'DocType Action'
+#. Label of the label (Data) field in DocType 'Report Column'
+#. Label of the label (Data) field in DocType 'Report Filter'
+#. Label of the label (Data) field in DocType 'Custom Field'
+#. Label of the label (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'DocType Layout Field'
+#. Label of the label (Data) field in DocType 'Desktop Icon'
+#. Label of the label (Data) field in DocType 'Form Tour Step'
+#. Label of the label (Data) field in DocType 'Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Chart'
+#. Label of the label (Data) field in DocType 'Workspace Custom Block'
+#. Label of the label (Data) field in DocType 'Workspace Link'
+#. Label of the label (Data) field in DocType 'Workspace Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Quick List'
+#. Label of the label (Data) field in DocType 'Workspace Shortcut'
+#. Label of the label (Data) field in DocType 'Top Bar Item'
+#. Label of the label (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:474
+#: frappe/public/js/form_builder/components/Field.vue:208
+#: frappe/public/js/frappe/widgets/widget_dialog.js:183
+#: frappe/public/js/frappe/widgets/widget_dialog.js:251
+#: frappe/public/js/frappe/widgets/widget_dialog.js:313
+#: frappe/public/js/frappe/widgets/widget_dialog.js:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:643
+#: frappe/public/js/frappe/widgets/widget_dialog.js:676
+#: frappe/public/js/print_format_builder/Field.vue:18
+#: frappe/templates/form_grid/fields.html:37
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Label"
+msgstr ""
+
+#. Label of the label_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Label Help"
+msgstr ""
+
+#. Label of the label_and_type (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Label and Type"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:145
+msgid "Label is mandatory"
+msgstr ""
+
+#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Landing Page"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:23
+msgid "Landscape"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the language (Link) field in DocType 'System Settings'
+#. Label of the language (Link) field in DocType 'Translation'
+#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
+#: frappe/public/js/frappe/form/templates/print_layout.html:11
+msgid "Language"
+msgstr ""
+
+#. Label of the language_code (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+msgid "Language Code"
+msgstr ""
+
+#. Label of the language_name (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+msgid "Language Name"
+msgstr ""
+
+#. Label of the last_10_active_users (Code) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Last 10 active users"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:628
+msgid "Last 14 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:632
+msgid "Last 30 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:652
+msgid "Last 6 Months"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:624
+msgid "Last 7 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:636
+msgid "Last 90 Days"
+msgstr ""
+
+#. Label of the last_active (Datetime) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Last Active"
+msgstr ""
+
+#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Last Execution"
+msgstr ""
+
+#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Last Heartbeat"
+msgstr ""
+
+#. Label of the last_ip (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Last IP"
+msgstr ""
+
+#. Label of the last_known_versions (Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Last Known Versions"
+msgstr ""
+
+#. Label of the last_login (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Last Login"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:32
+msgid "Last Modified Date"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480
+msgid "Last Modified On"
+msgstr ""
+
+#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:644
+msgid "Last Month"
+msgstr ""
+
+#. Label of the last_name (Data) field in DocType 'Contact'
+#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
+msgid "Last Name"
+msgstr ""
+
+#. Label of the last_password_reset_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Last Password Reset Date"
+msgstr ""
+
+#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:648
+msgid "Last Quarter"
+msgstr ""
+
+#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Last Received At"
+msgstr ""
+
+#. Label of the last_reset_password_key_generated_on (Datetime) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Last Reset Password Key Generated On"
+msgstr ""
+
+#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Last Run"
+msgstr ""
+
+#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Last Sync On"
+msgstr ""
+
+#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Last Synced On"
+msgstr ""
+
+#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205
+#: frappe/public/js/frappe/model/model.js:130
+msgid "Last Updated By"
+msgstr ""
+
+#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204
+#: frappe/public/js/frappe/model/model.js:126
+msgid "Last Updated On"
+msgstr ""
+
+#. Label of the last_user (Link) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Last User"
+msgstr ""
+
+#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:640
+msgid "Last Week"
+msgstr ""
+
+#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:656
+msgid "Last Year"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/chart_widget.js:753
+msgid "Last synced {0}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:194
+msgid "Layout Reset"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:186
+msgid "Layout will be reset to standard layout, are you sure you want to do this?"
+msgstr ""
+
+#: frappe/website/web_template/section_with_features/section_with_features.html:26
+msgid "Learn more"
+msgstr ""
+
+#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Leave blank to repeat always"
+msgstr ""
+
+#: frappe/core/doctype/communication/mixins.py:207
+#: frappe/email/doctype/email_account/email_account.py:720
+msgid "Leave this conversation"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Ledger"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Align' (Select) field in DocType 'Letter Head'
+#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Left"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155
+msgctxt "alignment"
+msgid "Left"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Left Bottom"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Left Center"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
+msgid "Left this conversation"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Legal"
+msgstr ""
+
+#. Label of the length (Int) field in DocType 'DocField'
+#. Label of the length (Int) field in DocType 'Custom Field'
+#. Label of the length (Int) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Length"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/chart.js:11
+msgid "Length of passed data array is greater than value of maximum allowed label points!"
+msgstr ""
+
+#: frappe/database/schema.py:138
+msgid "Length of {0} should be between 1 and 1000"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+msgid "Less"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:24
+msgid "Less Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:26
+msgid "Less Than Or Equal To"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
+msgid "Let us continue with the onboarding"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:597
+msgid "Let's Get Started"
+msgstr ""
+
+#: frappe/utils/password_strength.py:111
+msgid "Let's avoid repeated words and characters"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:474
+msgid "Let's set up your account"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:263
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:304
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:375
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:414
+msgid "Let's take you back to onboarding"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Letter"
+msgstr ""
+
+#. Label of the letter_head (Link) field in DocType 'Report'
+#. Name of a DocType
+#: frappe/core/doctype/report/report.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/page/print/print.js:140
+#: frappe/public/js/frappe/form/print_utils.js:50
+#: frappe/public/js/frappe/form/templates/print_layout.html:16
+#: frappe/public/js/frappe/list/bulk_operations.js:52
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
+msgid "Letter Head"
+msgstr ""
+
+#. Label of the source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Letter Head Based On"
+msgstr ""
+
+#. Label of the letter_head_image_section (Section Break) field in DocType
+#. 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Letter Head Image"
+msgstr ""
+
+#. Label of the letter_head_name (Data) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198
+msgid "Letter Head Name"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Letter Head Scripts"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:49
+msgid "Letter Head cannot be both disabled and default"
+msgstr ""
+
+#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Letter Head in HTML"
+msgstr ""
+
+#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
+#. Label of the permlevel (Int) field in DocType 'DocPerm'
+#. Label of the level (Select) field in DocType 'Help Article'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/page/permission_manager/permission_manager.js:144
+#: frappe/core/page/permission_manager/permission_manager.js:220
+#: frappe/public/js/frappe/roles_editor.js:68
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Level"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:467
+msgid "Level 0 is for document level permissions, higher levels for field level permissions."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94
+msgid "Library"
+msgstr ""
+
+#. Label of the license (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36
+msgid "License"
+msgstr ""
+
+#. Label of the license_type (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "License Type"
+msgstr ""
+
+#. Option for the 'Desk Theme' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Light"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Light Blue"
+msgstr ""
+
+#. Label of the light_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Light Color"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:60
+msgid "Light Theme"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/ui/filters/filter.js:18
+msgid "Like"
+msgstr ""
+
+#: frappe/desk/like.py:92
+msgid "Liked"
+msgstr ""
+
+#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208
+#: frappe/public/js/frappe/model/model.js:134
+msgid "Liked By"
+msgstr ""
+
+#. Label of the likes (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Likes"
+msgstr ""
+
+#. Label of the limit (Int) field in DocType 'Bulk Update'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+msgid "Limit"
+msgstr ""
+
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Line"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the link (Long Text) field in DocType 'Changelog Feed'
+#. Label of the link (Small Text) field in DocType 'Desktop Icon'
+#. Label of the link (Small Text) field in DocType 'Notification Log'
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Link"
+msgstr ""
+
+#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Link Cards"
+msgstr ""
+
+#. Label of the link_count (Int) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+msgid "Link Count"
+msgstr ""
+
+#. Label of the link_details_section (Section Break) field in DocType
+#. 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+msgid "Link Details"
+msgstr ""
+
+#. Label of the link_doctype (Link) field in DocType 'Activity Log'
+#. Label of the link_doctype (Link) field in DocType 'Communication Link'
+#. Label of the link_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Link DocType"
+msgstr ""
+
+#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
+msgid "Link Document Type"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
+msgid "Link Expired"
+msgstr ""
+
+#. Label of the link_field_results_limit (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Link Field Results Limit"
+msgstr ""
+
+#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Link Fieldname"
+msgstr ""
+
+#. Label of the link_filters (JSON) field in DocType 'DocField'
+#. Label of the link_filters (JSON) field in DocType 'Custom Field'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Link Filters"
+msgstr ""
+
+#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link'
+#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
+msgid "Link Name"
+msgstr ""
+
+#. Label of the link_title (Read Only) field in DocType 'Communication Link'
+#. Label of the link_title (Read Only) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
+msgid "Link Title"
+msgstr ""
+
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:418
+#: frappe/public/js/frappe/widgets/widget_dialog.js:281
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
+msgid "Link To"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
+msgid "Link To in Row"
+msgstr ""
+
+#. Label of the link_type (Select) field in DocType 'Workspace'
+#. Label of the link_type (Select) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
+#: frappe/public/js/frappe/widgets/widget_dialog.js:273
+msgid "Link Type"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
+msgid "Link Type in Row"
+msgstr ""
+
+#: frappe/website/doctype/about_us_settings/about_us_settings.js:6
+msgid "Link for About Us Page is \"/about\"."
+msgstr ""
+
+#. Description of the 'Home Page' (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)"
+msgstr ""
+
+#. Description of the 'URL' (Data) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "Link to the page you want to open. Leave blank if you want to make it a group parent."
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Activity Log'
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+msgid "Linked"
+msgstr ""
+
+#: frappe/public/js/frappe/form/linked_with.js:23
+msgid "Linked With"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "LinkedIn"
+msgstr ""
+
+#. Label of the links (Table) field in DocType 'Address'
+#. Label of the links (Table) field in DocType 'Contact'
+#. Label of the links_section (Tab Break) field in DocType 'DocType'
+#. Label of the links (Table) field in DocType 'Customize Form'
+#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links (Table) field in DocType 'Workspace'
+#: frappe/contacts/doctype/address/address.js:39
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.js:92
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Links"
+msgstr ""
+
+#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/utils/utils.js:926
+msgid "List"
+msgstr ""
+
+#. Label of the list__search_settings_section (Section Break) field in DocType
+#. 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "List / Search Settings"
+msgstr ""
+
+#. Label of the list_columns (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List Columns"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/list_filter/list_filter.json
+msgid "List Filter"
+msgstr ""
+
+#. Label of the list_settings_section (Section Break) field in DocType 'User'
+#. Label of the section_break_8 (Section Break) field in DocType 'Customize
+#. Form'
+#. Label of the section_break_3 (Section Break) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1993
+msgctxt "Button in list view menu"
+msgid "List Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:202
+msgid "List View"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "List View Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
+msgid "List a document type"
+msgstr ""
+
+#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form'
+#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
+msgstr ""
+
+#. Description of the 'Send Notification to' (Small Text) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "List of email addresses, separated by comma or new line."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "List of patches executed"
+msgstr ""
+
+#. Label of the list_setting_message (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List setting message"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
+msgid "Lists"
+msgstr ""
+
+#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Load Balancing"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:399
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
+#: frappe/website/doctype/help_article/templates/help_article_list.html:30
+msgid "Load More"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:215
+msgctxt "Form timeline"
+msgid "Load More Communications"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
+msgid "Load more"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:172
+#: frappe/public/js/frappe/form/controls/multicheck.js:13
+#: frappe/public/js/frappe/form/linked_with.js:13
+#: frappe/public/js/frappe/list/base_list.js:526
+#: frappe/public/js/frappe/list/list_view.js:363
+#: frappe/public/js/frappe/ui/listing.html:16
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
+msgid "Loading"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:107
+msgid "Loading Filters..."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:257
+msgid "Loading import file..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Loading versions..."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
+#: frappe/public/js/frappe/list/list_sidebar.js:243
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
+#: frappe/public/js/frappe/widgets/chart_widget.js:50
+#: frappe/public/js/frappe/widgets/number_card_widget.js:188
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:129
+msgid "Loading..."
+msgstr ""
+
+#. Label of the location (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Location"
+msgstr ""
+
+#. Label of the log (Code) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
+msgid "Log"
+msgstr ""
+
+#. Label of the log_api_requests (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Log API Requests"
+msgstr ""
+
+#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Log Data"
+msgstr ""
+
+#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
+msgid "Log DocType"
+msgstr ""
+
+#: frappe/templates/emails/login_with_email_link.html:27
+msgid "Log In To {0}"
+msgstr ""
+
+#. Label of the log_index (Int) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Log Index"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
+msgid "Log Setting User"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/public/js/frappe/logtypes.js:20
+msgid "Log Settings"
+msgstr ""
+
+#: frappe/www/app.py:23
+msgid "Log in to access this page."
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.py:182
+msgid "Log out"
+msgstr ""
+
+#: frappe/handler.py:119
+msgid "Logged Out"
+msgstr ""
+
+#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
+#. Label of the security_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/web_form/webform_script.js:16
+#: frappe/templates/discussions/discussions_section.html:60
+#: frappe/templates/discussions/reply_section.html:44
+#: frappe/templates/includes/navbar/dropdown_login.html:15
+#: frappe/templates/includes/navbar/navbar_login.html:25
+#: frappe/website/page_renderers/not_permitted_page.py:24
+#: frappe/www/login.html:45
+msgid "Login"
+msgstr ""
+
+#. Label of the login_after (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Login After"
+msgstr ""
+
+#. Label of the login_before (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Login Before"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:256
+msgid "Login Failed please try again"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:144
+msgid "Login Id is required"
+msgstr ""
+
+#. Label of the login_methods_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Login Methods"
+msgstr ""
+
+#. Label of the misc_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Login Page"
+msgstr ""
+
+#: frappe/www/login.py:156
+msgid "Login To {0}"
+msgstr ""
+
+#: frappe/twofactor.py:260
+msgid "Login Verification Code from {}"
+msgstr ""
+
+#: frappe/templates/emails/new_message.html:4
+msgid "Login and view in Browser"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:368
+msgid "Login is required to see web form list view. Enable {0} to see list settings"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:69
+msgid "Login link sent to your email"
+msgstr ""
+
+#: frappe/auth.py:342 frappe/auth.py:345
+msgid "Login not allowed at this time"
+msgstr ""
+
+#. Label of the login_required (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Login required"
+msgstr ""
+
+#: frappe/twofactor.py:164
+msgid "Login session expired, refresh page to retry"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:110
+msgid "Login to comment"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:6
+msgid "Login to start a new discussion"
+msgstr ""
+
+#: frappe/www/login.html:64
+msgid "Login to {0}"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:319
+msgid "Login token required"
+msgstr ""
+
+#: frappe/www/login.html:126 frappe/www/login.html:210
+msgid "Login with Email Link"
+msgstr ""
+
+#: frappe/www/login.html:116
+msgid "Login with Frappe Cloud"
+msgstr ""
+
+#: frappe/www/login.html:49
+msgid "Login with LDAP"
+msgstr ""
+
+#. Label of the login_with_email_link (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Login with email link"
+msgstr ""
+
+#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Login with email link expiry (in minutes)"
+msgstr ""
+
+#: frappe/auth.py:147
+msgid "Login with username and password is not allowed."
+msgstr ""
+
+#: frappe/www/login.html:100
+msgid "Login with {0}"
+msgstr ""
+
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
+#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
+#: frappe/www/me.html:84
+msgid "Logout"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:190
+msgid "Logout All Sessions"
+msgstr ""
+
+#. Label of the logout_on_password_reset (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Logout All Sessions on Password Reset"
+msgstr ""
+
+#. Label of the logout_all_sessions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Logout From All Devices After Changing Password"
+msgstr ""
+
+#. Group in User's connections
+#. Label of a Card Break in the Users Workspace
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+msgid "Logs"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
+msgid "Logs To Clear"
+msgstr ""
+
+#. Label of the logs_to_clear (Table) field in DocType 'Log Settings'
+#: frappe/core/doctype/log_settings/log_settings.json
+msgid "Logs to Clear"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Long Text"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
+msgid "Looks like you didn't change the value"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:59
+msgid "Looks like you haven’t added any third party apps."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "Looks like you haven’t received any notifications."
+msgstr ""
+
+#. Option for the 'Priority' (Select) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:217
+msgid "Low"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:13
+msgctxt "Number system"
+msgid "M"
+msgstr ""
+
+#. Option for the 'License Type' (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "MIT License"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:48
+msgid "Madam"
+msgstr ""
+
+#. Label of the main_section (Text Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Main Section"
+msgstr ""
+
+#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Main Section (HTML)"
+msgstr ""
+
+#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Main Section (Markdown)"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Maintenance Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Maintenance User"
+msgstr ""
+
+#. Label of the major (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
+msgid "Major"
+msgstr ""
+
+#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Make \"name\" searchable in Global Search"
+msgstr ""
+
+#. Label of the make_attachment_public (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Make Attachment Public (by default)"
+msgstr ""
+
+#. Label of the make_attachments_public (Check) field in DocType 'DocType'
+#. Label of the make_attachments_public (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Make Attachments Public by Default"
+msgstr ""
+
+#. Description of the 'Disable Username/Password Login' (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Make sure to configure a Social Login Key before disabling to prevent lockout"
+msgstr ""
+
+#: frappe/utils/password_strength.py:92
+msgid "Make use of longer keyboard patterns"
+msgstr ""
+
+#: frappe/public/js/frappe/form/multi_select_dialog.js:87
+msgid "Make {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:77
+msgid "Makes the page public"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:28
+msgid "Male"
+msgstr ""
+
+#: frappe/www/me.html:56
+msgid "Manage 3rd party apps"
+msgstr ""
+
+#. Description of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Manage your data"
+msgstr ""
+
+#. Label of the reqd (Check) field in DocType 'DocField'
+#. Label of the mandatory (Check) field in DocType 'Report Filter'
+#. Label of the reqd (Check) field in DocType 'Customize Form Field'
+#. Label of the reqd (Check) field in DocType 'Web Form Field'
+#. Label of the reqd (Check) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Mandatory"
+msgstr ""
+
+#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Mandatory Depends On"
+msgstr ""
+
+#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Mandatory Depends On (JS)"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:536
+msgid "Mandatory Information missing:"
+msgstr ""
+
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
+msgid "Mandatory field: set role for"
+msgstr ""
+
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
+msgid "Mandatory field: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:172
+msgid "Mandatory fields required in table {0}, Row {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:177
+msgid "Mandatory fields required in {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:258
+msgctxt "Error message in web form"
+msgid "Mandatory fields required:"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:142
+msgid "Mandatory:"
+msgstr ""
+
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Map"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:194
+#: frappe/public/js/frappe/data_import/import_preview.js:306
+msgid "Map Columns"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:211
+msgid "Map View"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:294
+msgid "Map columns from {0} to fields in {1}"
+msgstr ""
+
+#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Map route parameters into form variables. Example /project/<name>"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:924
+msgid "Mapping column {0} to field {1}"
+msgstr ""
+
+#. Label of the margin_bottom (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Margin Bottom"
+msgstr ""
+
+#. Label of the margin_left (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Margin Left"
+msgstr ""
+
+#. Label of the margin_right (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Margin Right"
+msgstr ""
+
+#. Label of the margin_top (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Margin Top"
+msgstr ""
+
+#. Label of the mariadb_variables_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "MariaDB Variables"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:45
+msgid "Mark all as read"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:19
+msgid "Mark as Read"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:95
+msgid "Mark as Spam"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:22
+msgid "Mark as Unread"
+msgstr ""
+
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Markdown"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Markdown Editor"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Marked As Spam"
+msgstr ""
+
+#. Name of a role
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Marketing Manager"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:50
+msgid "Master"
+msgstr ""
+
+#. Description of the 'Limit' (Int) field in DocType 'Bulk Update'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+msgid "Max 500 records at a time"
+msgstr ""
+
+#. Label of the max_attachments (Int) field in DocType 'DocType'
+#. Label of the max_attachments (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Max Attachments"
+msgstr ""
+
+#. Label of the max_file_size (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max File Size (MB)"
+msgstr ""
+
+#. Label of the max_height (Data) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Max Height"
+msgstr ""
+
+#. Label of the max_length (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Max Length"
+msgstr ""
+
+#. Label of the max_report_rows (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max Report Rows"
+msgstr ""
+
+#. Label of the max_value (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Max Value"
+msgstr ""
+
+#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Max attachment size"
+msgstr ""
+
+#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max auto email report per user"
+msgstr ""
+
+#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max signups allowed per hour"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1343
+msgid "Max width for type Currency is 100px in row {0}"
+msgstr ""
+
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Maximum"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:332
+msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
+msgid "Maximum attachment limit of {0} has been reached."
+msgstr ""
+
+#: frappe/model/rename_doc.py:689
+msgid "Maximum {0} rows allowed"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
+msgid "Me"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:14
+msgid "Meaning of Submit, Cancel, Amend"
+msgstr ""
+
+#. Option for the 'Priority' (Select) field in DocType 'ToDo'
+#. Label of the medium (Data) field in DocType 'Web Page View'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
+#: frappe/public/js/frappe/utils/utils.js:1774
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:40
+msgid "Medium"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
+msgid "Meeting"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/integrations/doctype/webhook/webhook.js:96
+msgid "Meets Condition?"
+msgstr ""
+
+#. Group in Email Group's connections
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Members"
+msgstr ""
+
+#. Label of the cache_memory_usage (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Memory Usage"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
+msgid "Memory Usage in MB"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Mention"
+msgstr ""
+
+#. Label of the enable_email_mention (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Mentions"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/page.html:41
+#: frappe/public/js/frappe/ui/page.js:162
+msgid "Menu"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:242
+#: frappe/public/js/frappe/model/model.js:705
+msgid "Merge with existing"
+msgstr ""
+
+#: frappe/utils/nestedset.py:320
+msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
+msgstr ""
+
+#. Label of the message (Text) field in DocType 'Auto Repeat'
+#. Label of the content (Text Editor) field in DocType 'Activity Log'
+#. Label of the content (Text Editor) field in DocType 'Communication'
+#. Label of the message (Small Text) field in DocType 'SMS Log'
+#. Label of the message (Data) field in DocType 'Success Action'
+#. Label of the email_content (Text Editor) field in DocType 'Notification Log'
+#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email
+#. Report'
+#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
+#. Label of the message (Code) field in DocType 'Email Queue'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/notification/notification.js:205
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:126
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/www/message.html:3
+msgid "Message"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+msgctxt "Default title of the message dialog"
+msgid "Message"
+msgstr ""
+
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Message Examples"
+msgstr ""
+
+#. Label of the message_id (Small Text) field in DocType 'Communication'
+#. Label of the message_id (Small Text) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Message ID"
+msgstr ""
+
+#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Message Parameter"
+msgstr ""
+
+#: frappe/templates/includes/contact.js:36
+msgid "Message Sent"
+msgstr ""
+
+#. Label of the message_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Message Type"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:956
+msgid "Message clipped"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:344
+msgid "Message from server: {0}"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
+msgid "Message not setup"
+msgstr ""
+
+#. Description of the 'Success message' (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Message to be displayed on successful completion"
+msgstr ""
+
+#. Label of the message_id (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Message-id"
+msgstr ""
+
+#. Label of the messages (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Messages"
+msgstr ""
+
+#. Label of the meta_section (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:124
+msgid "Meta Description"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:131
+msgid "Meta Image"
+msgstr ""
+
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+msgid "Meta Tags"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:117
+msgid "Meta Title"
+msgstr ""
+
+#. Label of the meta_description (Small Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta description"
+msgstr ""
+
+#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta image"
+msgstr ""
+
+#. Label of the meta_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta title"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:110
+msgid "Meta title for SEO"
+msgstr ""
+
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
+#. Label of the method (Data) field in DocType 'Access Log'
+#. Label of the method (Data) field in DocType 'API Request Log'
+#. Label of the method (Select) field in DocType 'Recorder'
+#. Label of the method (Data) field in DocType 'Scheduled Job Type'
+#. Label of the method (Data) field in DocType 'Scheduler Event'
+#. Label of the method (Data) field in DocType 'Number Card'
+#. Label of the auth_method (Select) field in DocType 'Email Account'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Method"
+msgstr ""
+
+#: frappe/__init__.py:468
+msgid "Method Not Allowed"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:74
+msgid "Method is required to create a number card"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Mid Center"
+msgstr ""
+
+#. Label of the middle_name (Data) field in DocType 'Contact'
+#. Label of the middle_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
+msgid "Middle Name"
+msgstr ""
+
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/workspace/tools/tools.json
+msgid "Milestone"
+msgstr ""
+
+#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
+#. Name of a DocType
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Milestone Tracker"
+msgstr ""
+
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Minimum"
+msgstr ""
+
+#. Label of the minimum_password_score (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Minimum Password Score"
+msgstr ""
+
+#. Label of the minor (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
+msgid "Minor"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Before"
+msgstr ""
+
+#. Label of the minutes_offset (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Offset"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
+msgid "Misconfigured"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:49
+msgid "Miss"
+msgstr ""
+
+#: frappe/desk/form/meta.py:194
+msgid "Missing DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1527
+msgid "Missing Field"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:183
+msgid "Missing Fields"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
+msgid "Missing Filters Required"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:110
+msgid "Missing Permission"
+msgstr ""
+
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
+msgid "Missing Value"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/widgets/widget_dialog.js:374
+#: frappe/public/js/workflow_builder/store.js:97
+#: frappe/workflow/doctype/workflow/workflow.js:71
+msgid "Missing Values Required"
+msgstr ""
+
+#: frappe/www/login.py:107
+msgid "Mobile"
+msgstr ""
+
+#. Label of the mobile_no (Data) field in DocType 'Contact'
+#. Label of the mobile_no (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86
+#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
+#: frappe/tests/test_translate.py:94
+msgid "Mobile No"
+msgstr ""
+
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
+#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Modal Trigger"
+msgstr ""
+
+#. Label of the module (Data) field in DocType 'Block Module'
+#. Label of the module (Link) field in DocType 'DocType'
+#. Label of the module (Link) field in DocType 'Page'
+#. Label of the module (Link) field in DocType 'Report'
+#. Label of the module (Link) field in DocType 'User Type Module'
+#. Label of the module (Link) field in DocType 'Dashboard'
+#. Label of the module (Link) field in DocType 'Dashboard Chart'
+#. Label of the module (Link) field in DocType 'Dashboard Chart Source'
+#. Label of the module (Link) field in DocType 'Form Tour'
+#. Label of the module (Link) field in DocType 'Module Onboarding'
+#. Label of the module (Link) field in DocType 'Number Card'
+#. Label of the module (Link) field in DocType 'Workspace'
+#. Label of the module (Link) field in DocType 'Notification'
+#. Label of the module (Link) field in DocType 'Print Format'
+#. Label of the module (Link) field in DocType 'Print Format Field Template'
+#. Label of the module (Link) field in DocType 'Web Form'
+#. Label of the module (Link) field in DocType 'Web Template'
+#. Label of the module (Link) field in DocType 'Website Theme'
+#: frappe/core/doctype/block_module/block_module.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:31
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Module"
+msgstr ""
+
+#. Label of the module (Link) field in DocType 'Server Script'
+#. Label of the module (Link) field in DocType 'Client Script'
+#. Label of the module (Link) field in DocType 'Custom Field'
+#. Label of the module (Link) field in DocType 'Property Setter'
+#. Label of the module (Link) field in DocType 'Web Page'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Module (for export)"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#. Label of a shortcut in the Build Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
+msgid "Module Def"
+msgstr ""
+
+#. Label of the module_html (HTML) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
+msgid "Module HTML"
+msgstr ""
+
+#. Label of the module_name (Data) field in DocType 'Module Def'
+#. Label of the module_name (Data) field in DocType 'Desktop Icon'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Module Name"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Module Onboarding"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the module_profile (Link) field in DocType 'User'
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+msgid "Module Profile"
+msgstr ""
+
+#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
+msgid "Module Profile Name"
+msgstr ""
+
+#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
+msgid "Module onboarding progress reset"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:250
+msgid "Module to Export"
+msgstr ""
+
+#: frappe/modules/utils.py:273
+msgid "Module {} not found"
+msgstr ""
+
+#. Group in Package's connections
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/package/package.json
+#: frappe/core/workspace/build/build.json
+msgid "Modules"
+msgstr ""
+
+#. Label of the modules_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Modules HTML"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the monday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Monday"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Monitor logs for errors, background jobs, communications, and user activity"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Monospace"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:275
+msgid "Month"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:400
+#: frappe/website/report/website_analytics/website_analytics.js:25
+msgid "Monthly"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Monthly Long"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:39
+#: frappe/public/js/frappe/form/multi_select_dialog.js:45
+#: frappe/public/js/frappe/form/multi_select_dialog.js:72
+#: frappe/public/js/frappe/ui/toolbar/search.js:285
+#: frappe/public/js/frappe/ui/toolbar/search.js:300
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+#: frappe/templates/includes/list/list.html:25
+#: frappe/templates/includes/search_template.html:13
+msgid "More"
+msgstr ""
+
+#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission
+#. Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "More Info"
+msgstr ""
+
+#. Label of the more_info (Section Break) field in DocType 'Contact'
+#. Label of the additional_info (Section Break) field in DocType 'Activity Log'
+#. Label of the additional_info (Section Break) field in DocType
+#. 'Communication'
+#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "More Information"
+msgstr ""
+
+#: frappe/website/doctype/help_article/templates/help_article.html:19
+#: frappe/website/doctype/help_article/templates/help_article.html:33
+msgid "More articles on {0}"
+msgstr ""
+
+#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "More content for the bottom of the page."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/sort_selector.js:193
+msgid "Most Used"
+msgstr ""
+
+#: frappe/utils/password.py:75
+msgid "Most probably your password is too long."
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:86
+#: frappe/core/doctype/communication/communication.js:194
+#: frappe/core/doctype/communication/communication.js:212
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Move"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:194
+msgid "Move To"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:104
+msgid "Move To Trash"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:295
+msgid "Move current and all subsequent sections to a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:177
+msgid "Move cursor to above row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:181
+msgid "Move cursor to below row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:185
+msgid "Move cursor to next column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:189
+msgid "Move cursor to previous column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:294
+msgid "Move sections to new tab"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:237
+msgid "Move the current field and the following fields to a new column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:169
+msgid "Move to Row Number"
+msgstr ""
+
+#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Move to next step when clicked inside highlighted area."
+msgstr ""
+
+#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
+#. Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:43
+msgid "Mr"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:47
+msgid "Mrs"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:44
+msgid "Ms"
+msgstr ""
+
+#: frappe/utils/nestedset.py:344
+msgid "Multiple root nodes not allowed."
+msgstr ""
+
+#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Must be a publicly accessible Google Sheets URL"
+msgstr ""
+
+#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
+msgstr ""
+
+#. Description of the 'Image Field' (Data) field in DocType 'DocType'
+#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Must be of type \"Attach Image\""
+msgstr ""
+
+#: frappe/desk/query_report.py:210
+msgid "Must have report permission to access this report."
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:151
+msgid "Must specify a Query to run"
+msgstr ""
+
+#. Label of the mute_sounds (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Mute Sounds"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:45
+msgid "Mx"
+msgstr ""
+
+#: frappe/templates/includes/web_sidebar.html:41
+#: frappe/website/doctype/web_form/web_form.py:525
+#: frappe/website/doctype/website_settings/website_settings.py:181
+#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
+msgid "My Account"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57
+msgid "My Device"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/apps_switcher.js:71
+msgid "My Workspaces"
+msgstr ""
+
+#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "MyISAM"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:19
+msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
+msgstr ""
+
+#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
+msgstr ""
+
+#. Label of the fieldname (Data) field in DocType 'DocField'
+#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'Workspace'
+#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype_list.js:22
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/public/js/frappe/form/layout.js:76
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
+msgid "Name"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr ""
+
+#: frappe/desk/utils.py:24
+msgid "Name already taken, please set a new name"
+msgstr ""
+
+#: frappe/model/naming.py:512
+msgid "Name cannot contain special characters like {0}"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:91
+msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:117
+msgid "Name of the new Print Format"
+msgstr ""
+
+#: frappe/model/naming.py:507
+msgid "Name of {0} cannot be {1}"
+msgstr ""
+
+#: frappe/utils/password_strength.py:174
+msgid "Names and surnames by themselves are easy to guess."
+msgstr ""
+
+#. Label of the sb1 (Tab Break) field in DocType 'DocType'
+#. Label of the naming_section (Section Break) field in DocType 'Document
+#. Naming Rule'
+#. Label of the naming_section (Section Break) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Naming"
+msgstr ""
+
+#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Naming Options:\n"
+"- field:[fieldname] - By Field
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
+"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
+msgstr ""
+
+#. Label of the naming_rule (Select) field in DocType 'DocType'
+#. Label of the naming_rule (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Naming Rule"
+msgstr ""
+
+#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Naming Series"
+msgstr ""
+
+#: frappe/model/naming.py:268
+msgid "Naming Series mandatory"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Web Template'
+#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
+#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Navbar"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/navbar_item/navbar_item.json
+msgid "Navbar Item"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/workspace/build/build.json
+msgid "Navbar Settings"
+msgstr ""
+
+#. Label of the navbar_template (Link) field in DocType 'Website Settings'
+#. Label of the navbar_template_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Navbar Template"
+msgstr ""
+
+#. Label of the navbar_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Navbar Template Values"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1380
+msgctxt "Description of a list view shortcut"
+msgid "Navigate list down"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1387
+msgctxt "Description of a list view shortcut"
+msgid "Navigate list up"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/page.js:175
+msgid "Navigate to main content"
+msgstr ""
+
+#. Label of the navigation_settings_section (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:322
+msgid "Need Workspace Manager role to edit private workspace of other users"
+msgstr ""
+
+#: frappe/model/document.py:794
+msgid "Negative Value"
+msgstr ""
+
+#: frappe/database/query.py:335
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
+#: frappe/utils/nestedset.py:94
+msgid "Nested set error. Please contact the Administrator."
+msgstr ""
+
+#. Name of a DocType
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+msgid "Network Printer Settings"
+msgstr ""
+
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/page/dashboard_view/dashboard_view.js:173
+#: frappe/desk/doctype/todo/todo.js:46
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:77
+#: frappe/public/js/frappe/views/treeview.js:473
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/website/doctype/web_form/templates/web_list.html:15
+#: frappe/www/list.html:19
+msgid "New"
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:15
+msgid "New Activity"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:3
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5
+#: frappe/public/js/frappe/utils/address_and_contact.js:71
+msgid "New Address"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:58
+msgid "New Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:3
+msgid "New Contact"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:70
+msgid "New Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:308
+#: frappe/printing/page/print/print.js:355
+msgid "New Custom Print Format"
+msgstr ""
+
+#. Label of the new_document_form (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "New Document Form"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:154
+msgid "New Document Shared {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:27
+#: frappe/public/js/frappe/views/communication.js:23
+msgid "New Email"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:98
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:177
+msgid "New Email Account"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:47
+msgid "New Event"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:94
+msgid "New Folder"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
+msgid "New Kanban Board"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:62
+msgid "New Links"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:152
+msgid "New Mention on {0}"
+msgstr ""
+
+#: frappe/www/contact.py:61
+msgid "New Message from Website Contact Page"
+msgstr ""
+
+#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/public/js/frappe/form/toolbar.js:218
+#: frappe/public/js/frappe/model/model.js:713
+msgid "New Name"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:151
+msgid "New Notification"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:64
+msgid "New Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:66
+msgid "New Onboarding"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
+msgid "New Password"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:280
+#: frappe/printing/page/print/print.js:334
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
+msgid "New Print Format Name"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:68
+msgid "New Quick List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1386
+msgid "New Report name"
+msgstr ""
+
+#. Label of the new_role (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:60
+msgid "New Shortcut"
+msgstr ""
+
+#. Label of the new_users (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "New Users (Last 30 days)"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:15
+#: frappe/core/doctype/version/version_view.html:77
+msgid "New Value"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:61
+msgid "New Workflow Name"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:390
+msgid "New Workspace"
+msgstr ""
+
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
+msgid "New password cannot be same as old password"
+msgstr ""
+
+#: frappe/utils/change_log.py:389
+msgid "New updates are available"
+msgstr ""
+
+#. Description of the 'Disable signups' (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "New users will have to be manually registered by system managers."
+msgstr ""
+
+#. Description of the 'Set Value' (Small Text) field in DocType 'Property
+#. Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "New value to be set"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:179
+#: frappe/public/js/frappe/form/toolbar.js:37
+#: frappe/public/js/frappe/form/toolbar.js:206
+#: frappe/public/js/frappe/form/toolbar.js:221
+#: frappe/public/js/frappe/form/toolbar.js:561
+#: frappe/public/js/frappe/model/model.js:612
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
+#: frappe/public/js/frappe/views/treeview.js:366
+#: frappe/public/js/frappe/widgets/widget_dialog.js:72
+#: frappe/website/doctype/web_form/web_form.py:438
+msgid "New {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:393
+msgid "New {0} Created"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:385
+msgid "New {0} {1} added to Dashboard {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:390
+msgid "New {0} {1} created"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416
+msgid "New {0}: {1}"
+msgstr ""
+
+#: frappe/utils/change_log.py:375
+msgid "New {} releases for the following apps are available"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:815
+msgid "Newly created user {0} has no roles enabled."
+msgstr ""
+
+#. Name of a role
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+msgid "Newsletter Manager"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:14
+#: frappe/public/js/frappe/form/form_tour.js:324
+#: frappe/public/js/frappe/web_form/web_form.js:93
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:15
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:240
+#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258
+#: frappe/website/web_template/slideshow/slideshow.html:44
+msgid "Next"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/slides.js:359
+msgctxt "Go to next slide"
+msgid "Next"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:684
+msgid "Next 14 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:688
+msgid "Next 30 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:704
+msgid "Next 6 Months"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:680
+msgid "Next 7 Days"
+msgstr ""
+
+#. Label of the next_action_email_template (Link) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Next Action Email Template"
+msgstr ""
+
+#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
+msgid "Next Actions HTML"
+msgstr ""
+
+#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Next Execution"
+msgstr ""
+
+#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Next Form Tour"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:696
+msgid "Next Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:700
+msgid "Next Quarter"
+msgstr ""
+
+#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Next Schedule Date"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
+msgid "Next Scheduled Date"
+msgstr ""
+
+#. Label of the next_state (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Next State"
+msgstr ""
+
+#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Next Step Condition"
+msgstr ""
+
+#. Label of the next_sync_token (Password) field in DocType 'Google Calendar'
+#. Label of the next_sync_token (Password) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Next Sync Token"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:692
+msgid "Next Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:708
+msgid "Next Year"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Next actions"
+msgstr ""
+
+#. Label of the next_on_click (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Next on Click"
+msgstr ""
+
+#. Option for the 'Standard' (Select) field in DocType 'Page'
+#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
+#. Settings'
+#. Option for the 'Standard' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:100
+#: frappe/email/doctype/notification/notification.py:102
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:132
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:341
+#: frappe/public/js/frappe/form/controls/link.js:498
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
+#: frappe/website/doctype/help_article/templates/help_article.html:26
+msgid "No"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:546
+msgctxt "Checkbox is not checked"
+msgid "No"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:37
+msgctxt "Dismiss confirmation dialog"
+msgid "No"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:56
+msgid "No Active Sessions"
+msgstr ""
+
+#. Label of the no_copy (Check) field in DocType 'DocField'
+#. Label of the no_copy (Check) field in DocType 'Custom Field'
+#. Label of the no_copy (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "No Copy"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:162
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
+#: frappe/public/js/frappe/data_import/import_preview.js:146
+#: frappe/public/js/frappe/form/multi_select_dialog.js:224
+#: frappe/public/js/frappe/utils/datatable.js:10
+#: frappe/public/js/frappe/widgets/chart_widget.js:57
+msgid "No Data"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:134
+msgid "No Data..."
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:176
+msgid "No Email Account"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:196
+msgid "No Email Accounts Assigned"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.py:50
+msgid "No Email field found in {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:183
+msgid "No Emails"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361
+msgid "No Entry for the User {0} found within LDAP!"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/chart_widget.js:407
+msgid "No Filters Set"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:372
+msgid "No Google Calendar Event to sync."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:262
+msgid "No Images"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363
+msgid "No LDAP User found for email: {0}"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/EditableInput.vue:11
+#: frappe/public/js/form_builder/components/EditableInput.vue:14
+#: frappe/public/js/form_builder/components/Field.vue:209
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55
+#: frappe/public/js/print_format_builder/Field.vue:24
+#: frappe/public/js/workflow_builder/components/ActionNode.vue:53
+#: frappe/public/js/workflow_builder/components/StateNode.vue:47
+#: frappe/public/js/workflow_builder/store.js:51
+msgid "No Label"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:743
+#: frappe/printing/page/print/print.js:824
+#: frappe/public/js/frappe/list/bulk_operations.js:98
+#: frappe/public/js/frappe/list/bulk_operations.js:170
+#: frappe/utils/weasyprint.py:52
+msgid "No Letterhead"
+msgstr ""
+
+#: frappe/model/naming.py:489
+msgid "No Name Specified for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "No New notifications"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1757
+msgid "No Permissions Specified"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:199
+msgid "No Permissions set for this criteria."
+msgstr ""
+
+#: frappe/core/page/dashboard_view/dashboard_view.js:93
+msgid "No Permitted Charts"
+msgstr ""
+
+#: frappe/core/page/dashboard_view/dashboard_view.js:92
+msgid "No Permitted Charts on this Dashboard"
+msgstr ""
+
+#: frappe/printing/doctype/print_settings/print_settings.js:13
+msgid "No Preview"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:747
+msgid "No Preview Available"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:902
+msgid "No Printer is Available."
+msgstr ""
+
+#: frappe/core/doctype/rq_worker/rq_worker_list.js:3
+msgid "No RQ Workers connected. Try restarting the bench."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:135
+msgid "No Results"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:51
+msgid "No Results found"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:816
+msgid "No Roles Specified"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
+msgid "No Select Field Found"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.py:179
+msgid "No Suggestions"
+msgstr ""
+
+#: frappe/desk/reportview.py:707
+msgid "No Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "No Upcoming Events"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:43
+msgid "No address added yet."
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:236
+msgid "No alerts for today"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.py:178
+msgid "No automatic optimization suggestions available."
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:36
+msgid "No changes in document"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:662
+msgid "No changes made"
+msgstr ""
+
+#: frappe/model/rename_doc.py:369
+msgid "No changes made because old and new name are the same."
+msgstr ""
+
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59
+msgid "No changes to sync"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:298
+msgid "No changes to update"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:4
+msgid "No comments yet."
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:91
+msgid "No contacts added yet."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469
+msgid "No contacts linked to document"
+msgstr ""
+
+#: frappe/desk/query_report.py:381
+msgid "No data to export"
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.py:246
+msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:71
+msgid "No documents found tagged with {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
+msgid "No email account associated with the User. Please add an account under User > Email Inbox."
+msgstr ""
+
+#: frappe/core/api/user_invitation.py:17
+msgid "No email addresses to invite"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:478
+msgid "No failed logs"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
+msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
+msgstr ""
+
+#: frappe/utils/file_manager.py:143
+msgid "No file attached"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134
+msgid "No filters found"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "No filters selected"
+msgstr ""
+
+#: frappe/desk/form/utils.py:111
+msgid "No further records"
+msgstr ""
+
+#: frappe/templates/includes/search_template.html:49
+msgid "No matching records. Search something new"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
+msgid "No more items to display"
+msgstr ""
+
+#: frappe/utils/password_strength.py:45
+msgid "No need for symbols, digits, or uppercase letters."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:195
+msgid "No new Google Contacts synced."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:46
+msgid "No new notifications"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:415
+msgid "No of Columns"
+msgstr ""
+
+#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "No of Requested SMS"
+msgstr ""
+
+#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "No of Rows (Max 500)"
+msgstr ""
+
+#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "No of Sent SMS"
+msgstr ""
+
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
+msgid "No permission for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1142
+msgctxt "{0} = verb, {1} = object"
+msgid "No permission to '{0}' {1}"
+msgstr ""
+
+#: frappe/model/db_query.py:949
+msgid "No permission to read {0}"
+msgstr ""
+
+#: frappe/share.py:220
+msgid "No permission to {0} {1} {2}"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:175
+msgid "No records deleted"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
+msgid "No records present in {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
+msgid "No records tagged."
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:225
+msgid "No records will be exported"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "No rows"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:135
+msgid "No subject"
+msgstr ""
+
+#: frappe/www/printview.py:472
+msgid "No template found at path: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:262
+msgid "No values to show"
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:2
+msgid "No {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:157
+msgid "No {0} Found"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
+msgid "No {0} found"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:499
+msgid "No {0} found with matching filters. Clear filters to see all {0}."
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:171
+msgid "No {0} mail"
+msgstr ""
+
+#: frappe/public/js/form_builder/utils.js:117
+#: frappe/public/js/frappe/form/grid_row.js:257
+msgctxt "Title of the 'row number' column"
+msgid "No."
+msgstr ""
+
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Nomatim"
+msgstr ""
+
+#. Label of the non_negative (Check) field in DocType 'DocField'
+#. Label of the non_negative (Check) field in DocType 'Custom Field'
+#. Label of the non_negative (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Non Negative"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:33
+msgid "Non-Conforming"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:36
+msgid "None: End of Workflow"
+msgstr ""
+
+#. Label of the normalized_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "Normalized Copies"
+msgstr ""
+
+#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "Normalized Query"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1029
+#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
+msgid "Not Allowed"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:259
+msgid "Not Allowed: Disabled User"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:36
+msgid "Not Ancestors Of"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:34
+msgid "Not Descendants Of"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:17
+msgid "Not Equals"
+msgstr ""
+
+#: frappe/app.py:390 frappe/www/404.html:3
+msgid "Not Found"
+msgstr ""
+
+#. Label of the not_helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Not Helpful"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:21
+msgid "Not In"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:19
+msgid "Not Like"
+msgstr ""
+
+#: frappe/public/js/frappe/form/linked_with.js:45
+msgid "Not Linked to any record"
+msgstr ""
+
+#. Label of the not_nullable (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Not Nullable"
+msgstr ""
+
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
+#: frappe/public/js/frappe/web_form/webform_script.js:15
+#: frappe/website/doctype/web_form/web_form.py:774
+#: frappe/website/page_renderers/not_permitted_page.py:22
+#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
+#: frappe/www/qrcode.py:37
+msgid "Not Permitted"
+msgstr ""
+
+#: frappe/desk/query_report.py:596
+msgid "Not Permitted to read {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form_list.js:7
+#: frappe/website/doctype/web_page/web_page_list.js:7
+msgid "Not Published"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
+#: frappe/public/js/frappe/model/indicator.js:28
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
+#: frappe/public/js/frappe/views/reports/report_view.js:209
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
+#: frappe/website/doctype/web_form/templates/web_form.html:85
+msgid "Not Saved"
+msgstr ""
+
+#: frappe/core/doctype/error_log/error_log_list.js:7
+msgid "Not Seen"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+msgid "Not Sent"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219
+msgid "Not Set"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:608
+msgctxt "Field value is not set"
+msgid "Not Set"
+msgstr ""
+
+#: frappe/utils/csvutils.py:102
+msgid "Not a valid Comma Separated Value (CSV File)"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:266
+msgid "Not a valid User Image."
+msgstr ""
+
+#: frappe/model/workflow.py:117
+msgid "Not a valid Workflow Action"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:255
+msgid "Not a valid user"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:7
+msgid "Not active"
+msgstr ""
+
+#: frappe/permissions.py:383
+msgid "Not allowed for {0}: {1}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:639
+msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:336
+msgid "Not allowed to create custom Virtual DocType."
+msgstr ""
+
+#: frappe/www/printview.py:165
+msgid "Not allowed to print cancelled documents"
+msgstr ""
+
+#: frappe/www/printview.py:162
+msgid "Not allowed to print draft documents"
+msgstr ""
+
+#: frappe/permissions.py:213
+msgid "Not allowed via controller permission check"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+msgid "Not found"
+msgstr ""
+
+#: frappe/core/doctype/page/page.py:62
+msgid "Not in Developer Mode"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:331
+msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:217
+#: frappe/public/js/frappe/request.js:159
+#: frappe/public/js/frappe/request.js:170
+#: frappe/public/js/frappe/request.js:175
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
+#: frappe/website/js/website.js:97
+msgid "Not permitted"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:53
+msgid "Not permitted to view {0}"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/note/note.json
+msgid "Note"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
+msgid "Note Seen By"
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:8
+msgid "Note:"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:775
+msgid "Note: Changing the Page Name will break previous URL to this page."
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:35
+msgid "Note: Etc timezones have their signs reversed."
+msgstr ""
+
+#. Description of the 'sb0' (Section Break) field in DocType 'Website
+#. Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Note: For best results, images must be of the same size and width must be greater than height."
+msgstr ""
+
+#. Description of the 'Allow only one session per user' (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Note: Multiple sessions will be allowed in case of mobile device"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:387
+msgid "Note: This will be shared with user."
+msgstr ""
+
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8
+msgid "Note: Your request for account deletion will be fulfilled within {0} hours."
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:183
+msgid "Notes:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "Nothing New"
+msgstr ""
+
+#: frappe/public/js/frappe/form/undo_manager.js:43
+msgid "Nothing left to redo"
+msgstr ""
+
+#: frappe/public/js/frappe/form/undo_manager.js:33
+msgid "Nothing left to undo"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:383
+#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/templates/includes/list/list.html:9
+#: frappe/website/doctype/help_article/templates/help_article_list.html:21
+msgid "Nothing to show"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:129
+msgid "Nothing to update"
+msgstr ""
+
+#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/email/doctype/notification/notification.json
+msgid "Notification"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Notification Log"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "Notification Recipient"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:37
+msgid "Notification Settings"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+msgid "Notification Subscribed Document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
+msgid "Notification sent to"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:544
+msgid "Notification: customer {0} has no Mobile number set"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:530
+msgid "Notification: document {0} has no {1} number set (field: {2})"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:539
+msgid "Notification: user {0} has no Mobile number set"
+msgstr ""
+
+#. Label of the notifications (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:50
+#: frappe/public/js/frappe/ui/notifications/notifications.js:187
+msgid "Notifications"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:299
+msgid "Notifications Disabled"
+msgstr ""
+
+#. Description of the 'Default Outgoing' (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Notifications and bulk mails will be sent from this outgoing server."
+msgstr ""
+
+#. Label of the notify_on_every_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Notify Users On Every Login"
+msgstr ""
+
+#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Notify by Email"
+msgstr ""
+
+#. Label of the notify_by_email (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
+msgid "Notify by email"
+msgstr ""
+
+#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Notify if unreplied"
+msgstr ""
+
+#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Notify if unreplied for (in mins)"
+msgstr ""
+
+#. Label of the notify_on_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Notify users with a popup when they log in"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/datetime.js:41
+#: frappe/public/js/frappe/form/controls/time.js:37
+msgid "Now"
+msgstr ""
+
+#. Label of the phone (Data) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
+msgid "Number"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
+msgid "Number Card"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/number_card_link/number_card_link.json
+msgid "Number Card Link"
+msgstr ""
+
+#. Label of the number_card_name (Link) field in DocType 'Workspace Number
+#. Card'
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
+msgid "Number Card Name"
+msgstr ""
+
+#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the number_cards (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
+msgid "Number Cards"
+msgstr ""
+
+#. Label of the number_format (Select) field in DocType 'Language'
+#. Label of the number_format (Select) field in DocType 'System Settings'
+#. Label of the number_format (Select) field in DocType 'Currency'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Number Format"
+msgstr ""
+
+#. Label of the backup_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Number of Backups"
+msgstr ""
+
+#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Number of Groups"
+msgstr ""
+
+#. Label of the number_of_queries (Int) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Number of Queries"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:443
+#: frappe/public/js/frappe/doctype/index.js:59
+msgid "Number of attachment fields are more than {}, limit updated to {}."
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:172
+msgid "Number of backups must be greater than zero."
+msgstr ""
+
+#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)"
+msgstr ""
+
+#. Description of the 'Columns' (Int) field in DocType 'DocField'
+#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
+msgstr ""
+
+#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Number of days after which the document Web View link shared on email will be expired"
+msgstr ""
+
+#. Label of the cache_keys (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of keys"
+msgstr ""
+
+#. Label of the onsite_backups (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of onsite backups"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "OAuth"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "OAuth Authorization Code"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "OAuth Bearer Token"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "OAuth Client"
+msgstr ""
+
+#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "OAuth Client ID"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+msgid "OAuth Client Role"
+msgstr ""
+
+#: frappe/email/oauth.py:30
+msgid "OAuth Error"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "OAuth Provider Settings"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
+msgid "OAuth Scope"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:250
+msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "OPTIONS"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:190
+msgid "OR"
+msgstr ""
+
+#. Option for the 'Two Factor Authentication method' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "OTP App"
+msgstr ""
+
+#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "OTP Issuer Name"
+msgstr ""
+
+#: frappe/twofactor.py:450
+msgid "OTP Secret Reset - {0}"
+msgstr ""
+
+#: frappe/twofactor.py:469
+msgid "OTP Secret has been reset. Re-registration will be required on next login."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:355
+msgid "OTP setup using OTP App was not completed. Please contact Administrator."
+msgstr ""
+
+#. Label of the occurrences (Int) field in DocType 'System Health Report
+#. Errors'
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "Occurrences"
+msgstr ""
+
+#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Off"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Office"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Office 365"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.js:36
+msgid "Official Documentation"
+msgstr ""
+
+#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Offset X"
+msgstr ""
+
+#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Offset Y"
+msgstr ""
+
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
+#: frappe/www/update-password.html:38
+msgid "Old Password"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:412
+msgid "Old and new fieldnames are same."
+msgstr ""
+
+#. Description of the 'Number of Backups' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Older backups will be automatically deleted"
+msgstr ""
+
+#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Oldest Unscheduled Job"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "On Hold"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Authorization"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Failed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Acquisition Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Paid"
+msgstr ""
+
+#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "On checking this option, URL will be treated like a jinja template string"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:66
+#: frappe/public/js/frappe/ui/filters/filter.js:72
+msgid "On or After"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:65
+#: frappe/public/js/frappe/ui/filters/filter.js:71
+msgid "On or Before"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:966
+msgid "On {0}, {1} wrote:"
+msgstr ""
+
+#. Label of the onboard (Check) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
+msgid "Onboard"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:232
+msgid "Onboarding Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
+msgid "Onboarding Permission"
+msgstr ""
+
+#. Label of the onboarding_status (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Onboarding Status"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Onboarding Step"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
+msgid "Onboarding Step Map"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:264
+msgid "Onboarding complete"
+msgstr ""
+
+#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:43
+msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:35
+msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
+msgstr ""
+
+#: frappe/www/complete_signup.html:7
+msgid "One Last Step"
+msgstr ""
+
+#: frappe/twofactor.py:278
+msgid "One Time Password (OTP) Registration Code from {}"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:331
+msgid "One of"
+msgstr ""
+
+#: frappe/client.py:213
+msgid "Only 200 inserts allowed in one request"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:87
+msgid "Only Administrator can delete Email Queue"
+msgstr ""
+
+#: frappe/core/doctype/page/page.py:66
+msgid "Only Administrator can edit"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:75
+msgid "Only Administrator can save a standard report. Please rename and save."
+msgstr ""
+
+#: frappe/recorder.py:314
+msgid "Only Administrator is allowed to use Recorder"
+msgstr ""
+
+#. Label of the allow_edit (Link) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Only Allow Edit For"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1621
+msgid "Only Options allowed for Data field are:"
+msgstr ""
+
+#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Only Send Records Updated in Last X Hours"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.js:32
+msgid "Only Workspace Manager can edit public workspaces"
+msgstr ""
+
+#: frappe/modules/utils.py:65
+msgid "Only allowed to export customizations in developer mode"
+msgstr ""
+
+#: frappe/model/document.py:1239
+msgid "Only draft documents can be discarded"
+msgstr ""
+
+#. Label of the only_for (Link) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
+msgid "Only for"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:192
+msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish."
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact/contact.py:158
+msgid "Only one {0} can be set as primary."
+msgstr ""
+
+#: frappe/desk/reportview.py:358
+msgid "Only reports of type Report Builder can be deleted"
+msgstr ""
+
+#: frappe/desk/reportview.py:329
+msgid "Only reports of type Report Builder can be edited"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:131
+msgid "Only standard DocTypes are allowed to be customized from Customize Form."
+msgstr ""
+
+#: frappe/model/delete_doc.py:281
+msgid "Only the Administrator can delete a standard DocType."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:198
+msgid "Only the assignee can complete this to-do."
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+msgid "Only {0} emailed reports are allowed per user."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:291
+msgid "Oops! Something went wrong."
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Contact'
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#. Option for the 'Email Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'ToDo'
+#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/deleted_document/deleted_document.js:7
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Open"
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo_list.js:14
+msgctxt "Access"
+msgid "Open"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:207
+#: frappe/public/js/frappe/ui/keyboard.js:217
+msgid "Open Awesomebar"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
+msgid "Open Communication"
+msgstr ""
+
+#: frappe/templates/emails/new_notification.html:10
+msgid "Open Document"
+msgstr ""
+
+#. Label of the subscribed_documents (Table MultiSelect) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Open Documents"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:243
+msgid "Open Help"
+msgstr ""
+
+#. Label of the open_reference_document (Button) field in DocType 'Notification
+#. Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Open Reference Document"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:226
+msgid "Open Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Open Source Applications for the Web"
+msgstr ""
+
+#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "Open URL in a New Tab"
+msgstr ""
+
+#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176
+msgid "Open a module or tool"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:367
+msgid "Open console"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Preview.vue:17
+msgid "Open in a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1433
+msgctxt "Description of a list view shortcut"
+msgid "Open list item"
+msgstr ""
+
+#: frappe/core/doctype/error_log/error_log.js:15
+msgid "Open reference document"
+msgstr ""
+
+#: frappe/www/qrcode.html:13
+msgid "Open your authentication app on your mobile phone."
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo_list.js:17
+#: frappe/public/js/frappe/form/templates/form_links.html:18
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336
+msgid "Open {0}"
+msgstr ""
+
+#. Label of the openid_configuration (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "OpenID Configuration"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.js:15
+msgid "OpenID Configuration fetched successfully!"
+msgstr ""
+
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "OpenLDAP"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Opened"
+msgstr ""
+
+#. Label of the operation (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Operation"
+msgstr ""
+
+#: frappe/utils/data.py:2172
+msgid "Operator must be one of {0}"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:34
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28
+msgid "Optimize"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:106
+msgid "Optimizing image..."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:100
+msgid "Option 1"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:102
+msgid "Option 2"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:104
+msgid "Option 3"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1639
+msgid "Option {0} for field {1} is not a child table"
+msgstr ""
+
+#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "Optional: Always send to these ids. Each Email Address on a new row"
+msgstr ""
+
+#. Description of the 'Condition' (Code) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Optional: The alert will be sent if this expression is true"
+msgstr ""
+
+#. Label of the options (Small Text) field in DocType 'DocField'
+#. Label of the options (Data) field in DocType 'Report Column'
+#. Label of the options (Small Text) field in DocType 'Report Filter'
+#. Label of the options (Small Text) field in DocType 'Custom Field'
+#. Label of the options (Small Text) field in DocType 'Customize Form Field'
+#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
+#. Label of the options (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/templates/form_grid/fields.html:43
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Options"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1367
+msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
+msgstr ""
+
+#. Label of the options_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Options Help"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1661
+msgid "Options for Rating field can range from 3 to 10"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:96
+msgid "Options for select. Each option on a new line."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1384
+msgid "Options for {0} must be set before setting the default value."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:182
+msgid "Options is required for field {0} of type {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:928
+msgid "Options not set for link field {0}"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Orange"
+msgstr ""
+
+#. Label of the order (Code) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Order"
+msgstr ""
+
+#: frappe/database/query.py:769
+msgid "Order By must be a string"
+msgstr ""
+
+#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
+#. Label of the company_history (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Org History"
+msgstr ""
+
+#. Label of the company_history_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Org History Heading"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:21
+msgid "Orientation"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:14
+#: frappe/core/doctype/version/version_view.html:76
+msgid "Original Value"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/page/setup_wizard/install_fixtures.py:30
+msgid "Other"
+msgstr ""
+
+#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Outgoing"
+msgstr ""
+
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Outgoing (SMTP) Settings"
+msgstr ""
+
+#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Outgoing Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the smtp_server (Data) field in DocType 'Email Account'
+#. Label of the smtp_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Outgoing Server"
+msgstr ""
+
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Outgoing Settings"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:33
+msgid "Outgoing email account not correct"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Outlook.com"
+msgstr ""
+
+#. Label of the output (Code) field in DocType 'Permission Inspector'
+#. Label of the output (Code) field in DocType 'System Console'
+#. Label of the output (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Output"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
+msgid "Overview"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "PATCH"
+msgstr ""
+
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/page/print/print.js:84
+#: frappe/public/js/frappe/form/templates/print_layout.html:44
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
+msgid "PDF"
+msgstr ""
+
+#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+msgid "PDF Generation in Progress"
+msgstr ""
+
+#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "PDF Generator"
+msgstr ""
+
+#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "PDF Page Height (in mm)"
+msgstr ""
+
+#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "PDF Page Size"
+msgstr ""
+
+#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "PDF Page Width (in mm)"
+msgstr ""
+
+#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "PDF Settings"
+msgstr ""
+
+#: frappe/utils/print_format.py:289
+msgid "PDF generation failed"
+msgstr ""
+
+#: frappe/utils/pdf.py:106
+msgid "PDF generation failed because of broken image links"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:656
+msgid "PDF generation may not work as expected."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:574
+msgid "PDF printing via \"Raw Print\" is not supported."
+msgstr ""
+
+#. Label of the pid (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "PID"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "POST"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "PUT"
+msgstr ""
+
+#. Label of the package (Link) field in DocType 'Module Def'
+#. Name of a DocType
+#. Label of the package (Link) field in DocType 'Package Release'
+#. Label of a Link in the Build Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34
+msgid "Package"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/workspace/build/build.json
+msgid "Package Import"
+msgstr ""
+
+#. Label of the package_name (Data) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "Package Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/package_release/package_release.json
+msgid "Package Release"
+msgstr ""
+
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Packages"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI"
+msgstr ""
+
+#. Label of the page (Link) field in DocType 'Custom Role'
+#. Name of a DocType
+#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
+#. Page and Report'
+#. Label of the page (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Page"
+msgstr ""
+
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Page Break"
+msgstr ""
+
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Page Builder"
+msgstr ""
+
+#. Label of the page_blocks (Table) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Page Building Blocks"
+msgstr ""
+
+#. Label of the page_html (Section Break) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "Page HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:73
+msgid "Page Height (in mm)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5
+msgid "Page Margins"
+msgstr ""
+
+#. Label of the page_name (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "Page Name"
+msgstr ""
+
+#. Label of the page_number (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63
+msgid "Page Number"
+msgstr ""
+
+#. Label of the page_route (Small Text) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Page Route"
+msgstr ""
+
+#. Label of the view_link_in_email (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Page Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:125
+msgid "Page Shortcuts"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:66
+msgid "Page Size"
+msgstr ""
+
+#. Label of the page_title (Data) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Page Title"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:80
+msgid "Page Width (in mm)"
+msgstr ""
+
+#: frappe/www/qrcode.py:35
+msgid "Page has expired!"
+msgstr ""
+
+#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/public/js/frappe/list/bulk_operations.js:106
+msgid "Page height and width cannot be zero"
+msgstr ""
+
+#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23
+msgid "Page not found"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Page to show on the website\n"
+msgstr ""
+
+#: frappe/public/html/print_template.html:25
+#: frappe/public/js/frappe/views/reports/print_tree.html:89
+#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/templates/print_formats/standard.html:34
+msgid "Page {0} of {1}"
+msgstr ""
+
+#. Label of the parameter (Data) field in DocType 'SMS Parameter'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+msgid "Parameter"
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:142
+#: frappe/public/js/frappe/views/workspace/workspace.js:434
+msgid "Parent"
+msgstr ""
+
+#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Parent DocType"
+msgstr ""
+
+#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the parent_document_type (Link) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Parent Document Type"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:66
+msgid "Parent Document Type is required to create a number card"
+msgstr ""
+
+#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Parent Element Selector"
+msgstr ""
+
+#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Parent Field"
+msgstr ""
+
+#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype.py:934
+msgid "Parent Field (Tree)"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:940
+msgid "Parent Field must be a valid fieldname"
+msgstr ""
+
+#. Label of the parent_label (Select) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "Parent Label"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1198
+msgid "Parent Missing"
+msgstr ""
+
+#. Label of the parent_page (Link) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Parent Page"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:24
+msgid "Parent Table"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
+msgid "Parent document type is required to create a dashboard chart"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:253
+msgid "Parent is the name of the document to which the data will get added to."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr ""
+
+#: frappe/permissions.py:820
+msgid "Parentfield not specified in {0}: {1}"
+msgstr ""
+
+#: frappe/client.py:467
+msgid "Parenttype, Parent and Parentfield are required to insert a child record"
+msgstr ""
+
+#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Partial"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Partial Success"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Partially Sent"
+msgstr ""
+
+#. Label of the participants (Section Break) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
+msgid "Participants"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pass"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Passive"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the password_settings (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the password_tab (Tab Break) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the password (Password) field in DocType 'Email Account'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:493
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/www/login.html:22
+msgid "Password"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1094
+msgid "Password Email Sent"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:459
+msgid "Password Reset"
+msgstr ""
+
+#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Password Reset Link Generation Limit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:897
+msgid "Password cannot be filtered"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
+msgid "Password changed successfully."
+msgstr ""
+
+#. Label of the password (Password) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Password for Base DN"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:189
+msgid "Password is required or select Awaiting Password"
+msgstr ""
+
+#: frappe/www/update-password.html:94
+msgid "Password is valid. 👍"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:212
+msgid "Password missing in Email Account"
+msgstr ""
+
+#: frappe/utils/password.py:47
+msgid "Password not found for {0} {1} {2}"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
+msgid "Password reset instructions have been sent to {}'s email"
+msgstr ""
+
+#: frappe/www/update-password.html:191
+msgid "Password set"
+msgstr ""
+
+#: frappe/auth.py:261
+msgid "Password size exceeded the maximum allowed size"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:882
+msgid "Password size exceeded the maximum allowed size."
+msgstr ""
+
+#: frappe/www/update-password.html:93
+msgid "Passwords do not match"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:198
+msgid "Passwords do not match!"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:151
+msgid "Paste"
+msgstr ""
+
+#. Label of the patch (Int) field in DocType 'Package Release'
+#. Label of the patch (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "Patch"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "Patch Log"
+msgstr ""
+
+#: frappe/modules/patch_handler.py:136
+msgid "Patch type {} not found in patches.txt"
+msgstr ""
+
+#. Label of the path (Data) field in DocType 'API Request Log'
+#. Label of the path (Small Text) field in DocType 'Package Release'
+#. Label of the path (Data) field in DocType 'Recorder'
+#. Label of the path (Data) field in DocType 'Onboarding Step'
+#. Label of the path (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:35
+msgid "Path"
+msgstr ""
+
+#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Path to CA Certs File"
+msgstr ""
+
+#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Path to Server Certificate"
+msgstr ""
+
+#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Path to private Key File"
+msgstr ""
+
+#: frappe/website/path_resolver.py:208
+msgid "Path {0} it not a valid path"
+msgstr ""
+
+#. Label of the payload_count (Int) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Payload Count"
+msgstr ""
+
+#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Peak Memory Usage"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Pending"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Pending Approval"
+msgstr ""
+
+#. Label of the pending_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pending Emails"
+msgstr ""
+
+#. Label of the pending_jobs (Int) field in DocType 'System Health Report
+#. Queue'
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "Pending Jobs"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Pending Verification"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Percent"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Percentage"
+msgstr ""
+
+#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Period"
+msgstr ""
+
+#. Label of the permlevel (Int) field in DocType 'DocField'
+#. Label of the permlevel (Int) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Perm Level"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Permanent"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1028
+msgid "Permanently Cancel {0}?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1074
+msgid "Permanently Discard {0}?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:861
+msgid "Permanently Submit {0}?"
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:684
+msgid "Permanently delete {0}?"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
+msgid "Permission Error"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "Permission Inspector"
+msgstr ""
+
+#. Label of the permlevel (Int) field in DocType 'Custom Field'
+#: frappe/core/page/permission_manager/permission_manager.js:463
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Permission Level"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:22
+msgid "Permission Levels"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Permission Log"
+msgstr ""
+
+#. Label of a shortcut in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Permission Manager"
+msgstr ""
+
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Permission Query"
+msgstr ""
+
+#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
+msgid "Permission Rules"
+msgstr ""
+
+#. Label of the permission_type (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "Permission Type"
+msgstr ""
+
+#. Label of the section_break_4 (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the permissions (Section Break) field in DocType 'DocField'
+#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm'
+#. Label of the permissions (Table) field in DocType 'DocType'
+#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
+#. Label of the permissions (Section Break) field in DocType 'System Settings'
+#. Label of a Card Break in the Users Workspace
+#. Label of the permissions (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
+#: frappe/core/page/permission_manager/permission_manager.js:221
+#: frappe/core/workspace/users/users.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Permissions"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "Permissions Error"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:10
+msgid "Permissions are automatically applied to Standard Reports and searches."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:5
+msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
+msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:24
+msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:6
+msgid "Permissions get applied on Users based on what Roles they are assigned."
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Users Workspace
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json
+#: frappe/core/workspace/users/users.json
+msgid "Permitted Documents For User"
+msgstr ""
+
+#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow
+#. Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Permitted Roles"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Personal"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Personal Data Deletion Request"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Personal Data Deletion Step"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+msgid "Personal Data Download Request"
+msgstr ""
+
+#. Label of the phone (Data) field in DocType 'Address'
+#. Label of the phone (Data) field in DocType 'Contact'
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the phone (Data) field in DocType 'Contact Us Settings'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Phone"
+msgstr ""
+
+#. Label of the phone_no (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Phone No."
+msgstr ""
+
+#: frappe/utils/__init__.py:124
+msgid "Phone Number {0} set in field {1} is not valid."
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:68
+#: frappe/public/js/frappe/views/reports/report_view.js:1581
+#: frappe/public/js/frappe/views/reports/report_view.js:1584
+msgid "Pick Columns"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Pie"
+msgstr ""
+
+#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Pincode"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Pink"
+msgstr ""
+
+#. Label of the placeholder (Data) field in DocType 'DocField'
+#. Label of the placeholder (Data) field in DocType 'Custom Field'
+#. Label of the placeholder (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Placeholder"
+msgstr ""
+
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Plain Text"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Plant"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:544
+msgid "Please Authorize OAuth for Email Account {0}"
+msgstr ""
+
+#: frappe/email/oauth.py:29
+msgid "Please Authorize OAuth for Email Account {}"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.py:77
+msgid "Please Duplicate this Website Theme to customize."
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162
+msgid "Please Install the ldap3 library via pip to use ldap functionality."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:308
+msgid "Please Set Chart"
+msgstr ""
+
+#: frappe/core/doctype/sms_settings/sms_settings.py:88
+msgid "Please Update SMS Settings"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613
+msgid "Please add a subject to your email"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:168
+msgid "Please add a valid comment."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1076
+msgid "Please ask your administrator to verify your sign-up"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/select.js:101
+msgid "Please attach a file first."
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:82
+msgid "Please attach an image file to set HTML for Footer."
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:70
+msgid "Please attach an image file to set HTML for Letter Head."
+msgstr ""
+
+#: frappe/core/doctype/package_import/package_import.py:39
+msgid "Please attach the package"
+msgstr ""
+
+#: frappe/utils/dashboard.py:58
+msgid "Please check the filter values set for Dashboard Chart: {}"
+msgstr ""
+
+#: frappe/model/base_document.py:1008
+msgid "Please check the value of \"Fetch From\" set for field {0}"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1074
+msgid "Please check your email for verification"
+msgstr ""
+
+#: frappe/email/smtp.py:134
+msgid "Please check your email login credentials."
+msgstr ""
+
+#: frappe/twofactor.py:243
+msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.js:23
+msgid "Please click Edit on the Workspace for best results"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:158
+msgid "Please click on 'Export Errored Rows', fix the errors and import again."
+msgstr ""
+
+#: frappe/twofactor.py:286
+msgid "Please click on the following link and follow the instructions on the page. {0}"
+msgstr ""
+
+#: frappe/templates/emails/password_reset.html:2
+msgid "Please click on the following link to set your new password"
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:4
+msgid "Please confirm your action to {0} this document."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:658
+msgid "Please contact your system manager to install correct version."
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:45
+msgid "Please create Card first"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42
+msgid "Please create chart first"
+msgstr ""
+
+#: frappe/desk/form/meta.py:190
+msgid "Please delete the field from {0} or add the required doctype."
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:184
+msgid "Please do not change the template headings."
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:19
+msgid "Please duplicate this to make changes"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:165
+msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.js:45
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
+#: frappe/printing/page/print/print.js:678
+#: frappe/printing/page/print/print.js:708
+#: frappe/public/js/frappe/list/bulk_operations.js:161
+#: frappe/public/js/frappe/utils/utils.js:1471
+msgid "Please enable pop-ups"
+msgstr ""
+
+#: frappe/public/js/frappe/microtemplate.js:162
+#: frappe/public/js/frappe/microtemplate.js:177
+msgid "Please enable pop-ups in your browser"
+msgstr ""
+
+#: frappe/integrations/google_oauth.py:55
+msgid "Please enable {} before continuing."
+msgstr ""
+
+#: frappe/utils/oauth.py:191
+msgid "Please ensure that your profile has an email address"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
+msgid "Please enter Access Token URL"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
+msgid "Please enter Authorize URL"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
+msgid "Please enter Base URL"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
+msgid "Please enter Client ID before social login is enabled"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
+msgid "Please enter Client Secret before social login is enabled"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.py:54
+msgid "Please enter OpenID Configuration URL"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
+msgid "Please enter Redirect URL"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:163
+msgid "Please enter a valid email address."
+msgstr ""
+
+#: frappe/templates/includes/contact.js:15
+msgid "Please enter both your email and message so that we can get back to you. Thanks!"
+msgstr ""
+
+#: frappe/www/update-password.html:259
+msgid "Please enter the password"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:217
+msgctxt "Email Account"
+msgid "Please enter the password for: {0}"
+msgstr ""
+
+#: frappe/core/doctype/sms_settings/sms_settings.py:43
+msgid "Please enter valid mobile nos"
+msgstr ""
+
+#: frappe/www/update-password.html:142
+msgid "Please enter your new password."
+msgstr ""
+
+#: frappe/www/update-password.html:135
+msgid "Please enter your old password."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444
+msgid "Please find attached {0}: {1}"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:42
+#: frappe/templates/includes/comments/comments.py:45
+msgid "Please login to post a comment."
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.py:186
+msgid "Please make sure the Reference Communication Docs are not circularly linked."
+msgstr ""
+
+#: frappe/model/document.py:992
+msgid "Please refresh to get the latest document."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:575
+msgid "Please remove the printer mapping in Printer Settings and try again."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:358
+msgid "Please save before attaching."
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
+msgid "Please save the document before assignment"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
+msgid "Please save the document before removing assignment"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
+msgid "Please save the report first"
+msgstr ""
+
+#: frappe/website/doctype/web_template/web_template.js:22
+msgid "Please save to edit the template."
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:31
+msgid "Please select DocType first"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
+msgid "Please select Entity Type first"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:116
+msgid "Please select Minimum Password Score"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
+msgid "Please select X and Y fields"
+msgstr ""
+
+#: frappe/utils/__init__.py:131
+msgid "Please select a country code for field {1}."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526
+msgid "Please select a file first."
+msgstr ""
+
+#: frappe/utils/file_manager.py:50
+msgid "Please select a file or url"
+msgstr ""
+
+#: frappe/model/rename_doc.py:684
+msgid "Please select a valid csv file with data"
+msgstr ""
+
+#: frappe/utils/data.py:309
+msgid "Please select a valid date filter"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:203
+msgid "Please select applicable Doctypes"
+msgstr ""
+
+#: frappe/model/db_query.py:1163
+msgid "Please select atleast 1 column from {0} to sort/group"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
+msgid "Please select prefix first"
+msgstr ""
+
+#: frappe/core/doctype/data_export/data_export.js:42
+msgid "Please select the Document Type."
+msgstr ""
+
+#. Description of the 'Directory Server' (Select) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Please select the LDAP Directory being used"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:100
+msgid "Please select {0}"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.py:298
+msgid "Please set Email Address"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:589
+msgid "Please set a printer mapping for this print format in the Printer Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
+msgid "Please set filters"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
+msgid "Please set filters value in Report Filter table."
+msgstr ""
+
+#: frappe/model/naming.py:580
+msgid "Please set the document name"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard/dashboard.py:120
+msgid "Please set the following documents in this Dashboard as standard first."
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120
+msgid "Please set the series to be used."
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:129
+msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
+msgid "Please setup a message first"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:424
+msgid "Please setup default outgoing Email Account from Settings > Email Account"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:432
+msgid "Please setup default outgoing Email Account from Tools > Email Account"
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:774
+msgid "Please specify"
+msgstr ""
+
+#: frappe/permissions.py:796
+msgid "Please specify a valid parent DocType for {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:163
+msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:160
+msgid "Please specify the minutes offset"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:154
+msgid "Please specify which date field must be checked"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:158
+msgid "Please specify which datetime field must be checked"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:167
+msgid "Please specify which value field must be checked"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/views/translation_manager.js:102
+msgid "Please try again"
+msgstr ""
+
+#: frappe/integrations/google_oauth.py:58
+msgid "Please update {} before continuing."
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
+msgid "Please use a valid LDAP search filter"
+msgstr ""
+
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
+#: frappe/utils/password.py:217
+msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
+msgstr ""
+
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Polling"
+msgstr ""
+
+#. Label of the popover_element (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Popover Element"
+msgstr ""
+
+#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Popover or Modal Description"
+msgstr ""
+
+#. Label of the smtp_port (Data) field in DocType 'Email Account'
+#. Label of the incoming_port (Data) field in DocType 'Email Account'
+#. Label of the smtp_port (Data) field in DocType 'Email Domain'
+#. Label of the incoming_port (Data) field in DocType 'Email Domain'
+#. Label of the port (Int) field in DocType 'Network Printer Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+msgid "Port"
+msgstr ""
+
+#. Label of the menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Portal Menu"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+msgid "Portal Menu Item"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/workspace/website/website.json
+msgid "Portal Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:24
+msgid "Portrait"
+msgstr ""
+
+#. Label of the position (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Position"
+msgstr ""
+
+#: frappe/templates/discussions/comment_box.html:29
+#: frappe/templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
+msgid "Post"
+msgstr ""
+
+#: frappe/templates/discussions/reply_section.html:40
+msgid "Post it here, our mentors will help you out."
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Postal"
+msgstr ""
+
+#. Label of the pincode (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
+msgid "Postal Code"
+msgstr ""
+
+#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Posting Timestamp"
+msgstr ""
+
+#: frappe/database/query.py:1520
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
+#. Label of the precision (Select) field in DocType 'DocField'
+#. Label of the precision (Select) field in DocType 'Custom Field'
+#. Label of the precision (Select) field in DocType 'Customize Form Field'
+#. Label of the precision (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Precision"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1401
+msgid "Precision should be between 1 and 6"
+msgstr ""
+
+#: frappe/utils/password_strength.py:187
+msgid "Predictable substitutions like '@' instead of 'a' don't help very much."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:34
+msgid "Prefer not to say"
+msgstr ""
+
+#. Label of the is_primary_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Preferred Billing Address"
+msgstr ""
+
+#. Label of the is_shipping_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Preferred Shipping Address"
+msgstr ""
+
+#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
+#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Prefix"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the prepared_report (Check) field in DocType 'Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32
+msgid "Prepared Report"
+msgstr ""
+
+#. Name of a report
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
+msgid "Prepared Report Analytics"
+msgstr ""
+
+#. Name of a role
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Prepared Report User"
+msgstr ""
+
+#: frappe/desk/query_report.py:308
+msgid "Prepared report render failed"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:473
+msgid "Preparing Report"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:434
+msgid "Prepend the template to the email message"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:139
+msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:141
+msgid "Press Enter to save"
+msgstr ""
+
+#. Label of the section_import_preview (Section Break) field in DocType 'Data
+#. Import'
+#. Label of the preview (Section Break) field in DocType 'File'
+#. Label of the preview_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the preview (Attach Image) field in DocType 'Print Style'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/notification/notification.js:194
+#: frappe/integrations/doctype/webhook/webhook.js:90
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:17
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/ui/capture.js:236
+msgid "Preview"
+msgstr ""
+
+#. Label of the preview_html (HTML) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Preview HTML"
+msgstr ""
+
+#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Preview Message"
+msgstr ""
+
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
+msgid "Preview Mode"
+msgstr ""
+
+#. Label of the series_preview (Text) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Preview of generated names"
+msgstr ""
+
+#: frappe/public/js/frappe/views/render_preview.js:19
+msgid "Preview on {0}"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Preview.vue:103
+msgid "Preview type"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:81
+msgid "Preview:"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:15
+#: frappe/public/js/frappe/web_form/web_form.js:97
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:16
+#: frappe/templates/includes/slideshow.html:34
+#: frappe/website/web_template/slideshow/slideshow.html:40
+msgid "Previous"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/slides.js:351
+msgctxt "Go to previous slide"
+msgid "Previous"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:2216
+msgid "Previous Submission"
+msgstr ""
+
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Primary"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:27
+msgid "Primary Address"
+msgstr ""
+
+#. Label of the primary_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Primary Color"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:23
+msgid "Primary Contact"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:69
+msgid "Primary Email"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:49
+msgid "Primary Mobile"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:41
+msgid "Primary Phone"
+msgstr ""
+
+#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199
+#: frappe/database/sqlite/schema.py:141
+msgid "Primary key of doctype {0} can not be changed as there are existing values."
+msgstr ""
+
+#. Label of the print (Check) field in DocType 'Custom DocPerm'
+#. Label of the print (Check) field in DocType 'DocPerm'
+#. Label of the print (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:58
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/printing/page/print/print.js:78
+#: frappe/public/js/frappe/form/success_action.js:81
+#: frappe/public/js/frappe/form/templates/print_layout.html:46
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:95
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
+#: frappe/public/js/frappe/views/reports/report_view.js:1539
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
+msgid "Print"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2166
+msgctxt "Button in list view actions menu"
+msgid "Print"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:48
+msgid "Print Documents"
+msgstr ""
+
+#. Label of the print_format (Link) field in DocType 'Auto Repeat'
+#. Label of a Link in the Build Workspace
+#. Label of the print_format (Link) field in DocType 'Notification'
+#. Name of a DocType
+#. Label of the print_format (Link) field in DocType 'Web Form'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/workspace/build/build.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/page/print/print.js:107
+#: frappe/printing/page/print/print.js:861
+#: frappe/public/js/frappe/list/bulk_operations.js:59
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Print Format"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the print_format_builder (Check) field in DocType 'Print Format'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:44
+#: frappe/printing/page/print_format_builder/print_format_builder.js:67
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4
+msgid "Print Format Builder"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Print Format Builder (New)"
+msgstr ""
+
+#. Label of the print_format_builder_beta (Check) field in DocType 'Print
+#. Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format Builder Beta"
+msgstr ""
+
+#: frappe/utils/pdf.py:63
+msgid "Print Format Error"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+msgid "Print Format Field Template"
+msgstr ""
+
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
+#. Label of the print_format_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format Help"
+msgstr ""
+
+#. Label of the print_format_type (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format Type"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
+msgid "Print Format not found"
+msgstr ""
+
+#: frappe/www/printview.py:451
+msgid "Print Format {0} is disabled"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#. Label of the print_heading (Data) field in DocType 'Print Heading'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+msgid "Print Heading"
+msgstr ""
+
+#. Label of the print_hide (Check) field in DocType 'DocField'
+#. Label of the print_hide (Check) field in DocType 'Custom Field'
+#. Label of the print_hide (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Print Hide"
+msgstr ""
+
+#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Print Hide If No Value"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:168
+msgid "Print Language"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:225
+msgid "Print Sent to the printer!"
+msgstr ""
+
+#. Label of the server_printer (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Print Server"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.js:6
+#: frappe/printing/page/print/print.js:173
+#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/public/js/frappe/form/templates/print_layout.html:35
+msgid "Print Settings"
+msgstr ""
+
+#. Label of the print_style_section (Section Break) field in DocType 'Print
+#. Settings'
+#. Label of the print_style (Link) field in DocType 'Print Settings'
+#. Name of a DocType
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+msgid "Print Style"
+msgstr ""
+
+#. Label of the print_style_name (Data) field in DocType 'Print Style'
+#: frappe/printing/doctype/print_style/print_style.json
+msgid "Print Style Name"
+msgstr ""
+
+#. Label of the print_style_preview (HTML) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Print Style Preview"
+msgstr ""
+
+#. Label of the print_width (Data) field in DocType 'DocField'
+#. Label of the print_width (Data) field in DocType 'Custom Field'
+#. Label of the print_width (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Print Width"
+msgstr ""
+
+#. Description of the 'Print Width' (Data) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Print Width of the field, if the field is a column in a table"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:170
+msgid "Print document"
+msgstr ""
+
+#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Print with letterhead"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:870
+msgid "Printer"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:847
+msgid "Printer Mapping"
+msgstr ""
+
+#. Label of the printer_name (Select) field in DocType 'Network Printer
+#. Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+msgid "Printer Name"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:839
+msgid "Printer Settings"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:588
+msgid "Printer mapping not set."
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Printing"
+msgstr ""
+
+#: frappe/utils/print_format.py:291
+msgid "Printing failed"
+msgstr ""
+
+#. Label of the priority (Int) field in DocType 'Assignment Rule'
+#. Label of the priority (Int) field in DocType 'Document Naming Rule'
+#. Label of the priority (Select) field in DocType 'ToDo'
+#. Label of the priority (Int) field in DocType 'Email Queue'
+#. Label of the idx (Int) field in DocType 'Web Page'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:211
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Priority"
+msgstr ""
+
+#. Label of the private (Check) field in DocType 'Custom HTML Block'
+#. Option for the 'Event Type' (Select) field in DocType 'Event'
+#. Label of the private (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/note/note_list.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35
+msgid "Private"
+msgstr ""
+
+#. Label of the private_files_size (Float) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Private Files (MB)"
+msgstr ""
+
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
+#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
+msgid "Proceed"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:940
+msgid "Proceed Anyway"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/table.js:104
+msgid "Processing"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue_list.js:52
+msgid "Processing..."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:51
+msgid "Prof"
+msgstr ""
+
+#. Group in User's connections
+#: frappe/core/doctype/user/user.json
+msgid "Profile"
+msgstr ""
+
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr ""
+
+#: frappe/public/js/frappe/socketio_client.js:82
+msgid "Progress"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
+msgid "Project"
+msgstr ""
+
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:13
+#: frappe/core/doctype/version/version_view.html:38
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property"
+msgstr ""
+
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Customize Form Field'
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Web Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Property Depends On"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Setter"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Setter overrides a standard DocType or Field property"
+msgstr ""
+
+#. Label of the property_type (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Type"
+msgstr ""
+
+#. Label of the protect_attached_files (Check) field in DocType 'DocType'
+#. Label of the protect_attached_files (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Protect Attached Files"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:526
+msgid "Protected File"
+msgstr ""
+
+#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
+msgstr ""
+
+#. Label of the provider (Data) field in DocType 'User Social Login'
+#. Label of the provider (Select) field in DocType 'Geolocation Settings'
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Provider"
+msgstr ""
+
+#. Label of the provider_name (Data) field in DocType 'Connected App'
+#. Label of the provider_name (Data) field in DocType 'Social Login Key'
+#. Label of the provider_name (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Provider Name"
+msgstr ""
+
+#. Option for the 'Event Type' (Select) field in DocType 'Event'
+#. Label of the public (Check) field in DocType 'Note'
+#. Label of the public (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/note/note_list.js:6
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/interaction.js:78
+#: frappe/public/js/frappe/views/workspace/workspace.js:440
+msgid "Public"
+msgstr ""
+
+#. Label of the public_files_size (Float) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Public Files (MB)"
+msgstr ""
+
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
+#. Label of the publish (Check) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/public/js/frappe/form/footer/form_timeline.js:633
+#: frappe/website/doctype/web_form/web_form.js:86
+msgid "Publish"
+msgstr ""
+
+#. Label of the published (Check) field in DocType 'Comment'
+#. Label of the published (Check) field in DocType 'Help Article'
+#. Label of the published (Check) field in DocType 'Help Category'
+#. Label of the published (Check) field in DocType 'Web Form'
+#. Label of the published (Check) field in DocType 'Web Page'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_form/web_form_list.js:5
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page/web_page_list.js:5
+msgid "Published"
+msgstr ""
+
+#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
+#. Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Publishing Dates"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:208
+msgid "Pull Emails"
+msgstr ""
+
+#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Pull from Google Calendar"
+msgstr ""
+
+#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Pull from Google Contacts"
+msgstr ""
+
+#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Pulled from Google Calendar"
+msgstr ""
+
+#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Pulled from Google Contacts"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:209
+msgid "Pulling emails..."
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Purchase Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Purchase Master Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Purchase User"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Purple"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notification Settings"
+msgstr ""
+
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notifications"
+msgstr ""
+
+#. Label of the push_to_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Push to Google Calendar"
+msgstr ""
+
+#. Label of the push_to_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Push to Google Contacts"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
+msgid "Put on Hold"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'System Console'
+#. Option for the 'Condition Type' (Select) field in DocType 'Notification'
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Python"
+msgstr ""
+
+#: frappe/www/qrcode.html:3
+msgid "QR Code"
+msgstr ""
+
+#: frappe/www/qrcode.html:6
+msgid "QR Code for Login Verification"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:234
+msgid "QZ Tray Failed:"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:401
+msgid "Quarterly"
+msgstr ""
+
+#. Label of the query (Data) field in DocType 'Recorder Query'
+#. Label of the query (Code) field in DocType 'Report'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report/report.json
+msgid "Query"
+msgstr ""
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Query / Script"
+msgstr ""
+
+#. Label of the query_options (Small Text) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Query Options"
+msgstr ""
+
+#. Label of the query_parameters (Table) field in DocType 'Connected App'
+#. Name of a DocType
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+msgid "Query Parameters"
+msgstr ""
+
+#. Option for the 'Report Type' (Select) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/public/js/frappe/views/reports/query_report.js:17
+msgid "Query Report"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.py:188
+msgid "Query analysis complete. Check suggested indexes."
+msgstr ""
+
+#: frappe/utils/safe_exec.py:497
+msgid "Query must be of SELECT or read-only WITH type."
+msgstr ""
+
+#. Label of the queue (Select) field in DocType 'RQ Job'
+#. Label of the queue (Data) field in DocType 'System Health Report Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "Queue"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:731
+msgid "Queue Overloaded"
+msgstr ""
+
+#. Label of the queue_status (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Queue Status"
+msgstr ""
+
+#. Label of the queue_type (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Queue Type(s)"
+msgstr ""
+
+#. Label of the queue_in_background (Check) field in DocType 'DocType'
+#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Queue in Background (BETA)"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:556
+msgid "Queue should be one of {0}"
+msgstr ""
+
+#. Label of the queue (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Queue(s)"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
+#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Queued"
+msgstr ""
+
+#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Queued At"
+msgstr ""
+
+#. Label of the queued_by (Data) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Queued By"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:174
+msgid "Queued for Submission. You can track the progress over {0}."
+msgstr ""
+
+#: frappe/desk/page/backups/backups.py:96
+msgid "Queued for backup. You will receive an email with the download link"
+msgstr ""
+
+#. Label of the queues (Data) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Queues"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+msgid "Queuing {0} for Submission"
+msgstr ""
+
+#. Label of the quick_entry (Check) field in DocType 'DocType'
+#. Label of the quick_entry (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Quick Entry"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:3
+msgid "Quick Help for Setting Permissions"
+msgstr ""
+
+#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
+#. List'
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+msgid "Quick List Filter"
+msgstr ""
+
+#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the quick_lists (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Quick Lists"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:314
+msgid "Quoting must be between 0 and 3"
+msgstr ""
+
+#. Label of the raw_information_log_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "RAW Information Log"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "RQ Job"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "RQ Worker"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Random"
+msgstr ""
+
+#: frappe/website/report/website_analytics/website_analytics.js:20
+msgid "Range"
+msgstr ""
+
+#. Label of the rate_limiting_section (Section Break) field in DocType 'Server
+#. Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Rate Limiting"
+msgstr ""
+
+#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Rate limit for email link login"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Rating"
+msgstr ""
+
+#. Label of the raw_commands (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:98
+msgid "Raw Commands"
+msgstr ""
+
+#. Label of the raw (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Raw Email"
+msgstr ""
+
+#. Label of the raw_printing (Check) field in DocType 'Print Format'
+#. Label of the raw_printing_section (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Raw Printing"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:178
+msgid "Raw Printing Setting"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/print_layout.html:37
+msgid "Raw Printing Settings"
+msgstr ""
+
+#: frappe/desk/doctype/console_log/console_log.js:6
+msgid "Re-Run in Console"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:726
+msgid "Re:"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:268
+#: frappe/public/js/frappe/form/footer/form_timeline.js:601
+#: frappe/public/js/frappe/views/communication.js:370
+msgid "Re: {0}"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Label of the read (Check) field in DocType 'Custom DocPerm'
+#. Label of the read (Check) field in DocType 'DocPerm'
+#. Label of the read (Check) field in DocType 'DocShare'
+#. Label of the read (Check) field in DocType 'User Document Type'
+#. Label of the read (Check) field in DocType 'Notification Log'
+#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
+#: frappe/client.py:450 frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+msgid "Read"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the read_only (Check) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Label of the read_only (Check) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Read Only"
+msgstr ""
+
+#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Read Only Depends On"
+msgstr ""
+
+#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Read Only Depends On (JS)"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:16
+#: frappe/templates/includes/navbar/navbar_items.html:97
+msgid "Read Only Mode"
+msgstr ""
+
+#. Label of the read_by_recipient (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Read by Recipient"
+msgstr ""
+
+#. Label of the read_by_recipient_on (Datetime) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Read by Recipient On"
+msgstr ""
+
+#: frappe/desk/doctype/note/note.js:10
+msgid "Read mode"
+msgstr ""
+
+#: frappe/utils/safe_exec.py:99
+msgid "Read the documentation to know more"
+msgstr ""
+
+#. Label of the readme (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "Readme"
+msgstr ""
+
+#. Label of the realtime_socketio_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Realtime (SocketIO)"
+msgstr ""
+
+#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Reason"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:894
+msgid "Rebuild"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:511
+msgid "Rebuild Tree"
+msgstr ""
+
+#: frappe/utils/nestedset.py:177
+msgid "Rebuilding of tree is not supported for {}"
+msgstr ""
+
+#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Received"
+msgstr ""
+
+#: frappe/integrations/doctype/token_cache/token_cache.py:49
+msgid "Received an invalid token type."
+msgstr ""
+
+#. Label of the receiver_by_document_field (Select) field in DocType
+#. 'Notification Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "Receiver By Document Field"
+msgstr ""
+
+#. Label of the receiver_by_role (Link) field in DocType 'Notification
+#. Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "Receiver By Role"
+msgstr ""
+
+#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Receiver Parameter"
+msgstr ""
+
+#: frappe/utils/password_strength.py:123
+msgid "Recent years are easy to guess."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541
+msgid "Recents"
+msgstr ""
+
+#. Label of the recipients (Table) field in DocType 'Email Queue'
+#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+msgid "Recipient"
+msgstr ""
+
+#. Label of the recipient_account_field (Data) field in DocType 'DocType'
+#. Label of the recipient_account_field (Data) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Recipient Account Field"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Recipient Unsubscribed"
+msgstr ""
+
+#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
+#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
+#. Label of the recipients (Table) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Recipients"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Recorder"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "Recorder Query"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+msgid "Recorder Suggested Index"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_help.html:2
+msgid "Records for following doctypes will be filtered"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1609
+msgid "Recursive Fetch From"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Red"
+msgstr ""
+
+#. Label of the redirect_http_status (Select) field in DocType 'Website Route
+#. Redirect'
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
+msgid "Redirect HTTP Status"
+msgstr ""
+
+#. Label of the redirect_to_path (Data) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Redirect To Path"
+msgstr ""
+
+#. Label of the redirect_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Redirect URI"
+msgstr ""
+
+#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
+#. DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Redirect URI Bound To Auth Code"
+msgstr ""
+
+#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Redirect URIs"
+msgstr ""
+
+#. Label of the redirect_url (Small Text) field in DocType 'User'
+#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Redirect URL"
+msgstr ""
+
+#. Description of the 'Default App' (Select) field in DocType 'System Settings'
+#. Description of the 'Default App' (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Redirect to the selected app after login"
+msgstr ""
+
+#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Redirect to this URL after successful confirmation."
+msgstr ""
+
+#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Redirects"
+msgstr ""
+
+#: frappe/sessions.py:149
+msgid "Redis cache server not running. Please contact Administrator / Tech support"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:530
+msgid "Redo"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:164
+#: frappe/public/js/frappe/form/toolbar.js:538
+msgid "Redo last action"
+msgstr ""
+
+#. Label of the ref_doctype (Link) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Ref DocType"
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.js:38
+msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
+msgstr ""
+
+#. Label of the linked_with (Section Break) field in DocType 'Address'
+#. Label of the contact_details (Section Break) field in DocType 'Contact'
+#. Label of the reference_section (Section Break) field in DocType 'Activity
+#. Log'
+#. Label of the reference_section (Section Break) field in DocType
+#. 'Communication'
+#. Label of the reference (Dynamic Link) field in DocType 'Permission Log'
+#. Label of the section_break_6 (Section Break) field in DocType 'ToDo'
+#. Label of the reference_section (Section Break) field in DocType 'Integration
+#. Request'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/user_type/user_type_dashboard.py:5
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/views/interaction.js:54
+msgid "Reference"
+msgstr ""
+
+#. Label of the date_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Reference Date"
+msgstr ""
+
+#. Label of the datetime_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Reference Datetime"
+msgstr ""
+
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Reference Doc"
+msgstr ""
+
+#. Label of the reference_name (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Reference DocName"
+msgstr ""
+
+#. Label of the reference_doctype (Link) field in DocType 'Error Log'
+#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Reference DocType"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
+msgid "Reference DocType and Reference Name are required"
+msgstr ""
+
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
+#. Topic'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+msgid "Reference Docname"
+msgstr ""
+
+#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
+#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
+#: frappe/core/doctype/communication/communication.js:143
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/views/render_preview.js:34
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+msgid "Reference Doctype"
+msgstr ""
+
+#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
+#. Repeat'
+#. Label of the reference_document (Data) field in DocType 'Access Log'
+#. Label of the reference_doctype (Link) field in DocType 'Form Tour'
+#. Label of the reference_document (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_document (Data) field in DocType 'Webhook Request
+#. Log'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+msgid "Reference Document"
+msgstr ""
+
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
+#. Share Key'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration
+#. Request'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Reference Document Name"
+msgstr ""
+
+#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
+#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
+#. Label of the reference_doctype (Link) field in DocType 'Comment'
+#. Label of the reference_doctype (Link) field in DocType 'Communication'
+#. Label of the parent (Data) field in DocType 'Custom DocPerm'
+#. Label of the ref_doctype (Data) field in DocType 'Custom Role'
+#. Label of the reference_doctype (Link) field in DocType 'Document Share Key'
+#. Label of the reference_doctype (Link) field in DocType 'Server Script'
+#. Label of the ref_doctype (Link) field in DocType 'Success Action'
+#. Label of the reference_doctype (Link) field in DocType 'View Log'
+#. Label of the reference_doctype (Link) field in DocType 'Calendar View'
+#. Label of the reference_doctype (Link) field in DocType 'Event'
+#. Label of the reference_doctype (Link) field in DocType 'Event Participants'
+#. Label of the reference_doctype (Link) field in DocType 'Kanban Board'
+#. Label of the reference_doctype (Link) field in DocType 'List Filter'
+#. Label of the reference_doctype (Link) field in DocType 'Email Queue'
+#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe'
+#. Label of the reference_doctype (Link) field in DocType 'Integration Request'
+#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item'
+#. Label of the reference_doctype (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Reference Document Type"
+msgstr ""
+
+#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Communication'
+#. Label of the docname (Data) field in DocType 'Data Import Log'
+#. Label of the reference_name (Data) field in DocType 'Error Log'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Event
+#. Participants'
+#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Email
+#. Unsubscribe'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow
+#. Action'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.js:152
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Reference Name"
+msgstr ""
+
+#. Label of the reference_owner (Read Only) field in DocType 'Activity Log'
+#. Label of the reference_owner (Data) field in DocType 'Comment'
+#. Label of the reference_owner (Read Only) field in DocType 'Communication'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+msgid "Reference Owner"
+msgstr ""
+
+#. Label of the reference_report (Data) field in DocType 'Report'
+#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_report (Data) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Reference Report"
+msgstr ""
+
+#. Label of the reference_type (Link) field in DocType 'Permission Log'
+#. Label of the reference_type (Link) field in DocType 'ToDo'
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/todo/todo.json
+msgid "Reference Type"
+msgstr ""
+
+#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
+msgid "Reference name"
+msgstr ""
+
+#: frappe/templates/emails/auto_reply.html:3
+msgid "Reference: {0} {1}"
+msgstr ""
+
+#. Label of the referrer (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:37
+msgid "Referrer"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168
+#: frappe/public/js/frappe/desk.js:552
+#: frappe/public/js/frappe/form/form.js:1201
+#: frappe/public/js/frappe/form/templates/print_layout.html:6
+#: frappe/public/js/frappe/list/base_list.js:66
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
+#: frappe/public/js/frappe/widgets/chart_widget.js:291
+#: frappe/public/js/frappe/widgets/number_card_widget.js:352
+#: frappe/public/js/print_format_builder/Preview.vue:24
+msgid "Refresh"
+msgstr ""
+
+#: frappe/core/page/dashboard_view/dashboard_view.js:177
+msgid "Refresh All"
+msgstr ""
+
+#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Refresh Google Sheet"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:371
+msgid "Refresh Print Preview"
+msgstr ""
+
+#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
+#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
+#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the refresh_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Refresh Token"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:536
+msgctxt "Document count in list view"
+msgid "Refreshing"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.js:57
+#: frappe/core/doctype/user/user.js:362
+#: frappe/desk/page/setup_wizard/setup_wizard.js:211
+msgid "Refreshing..."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1036
+msgid "Registered but disabled"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/translation/translation.json
+msgid "Rejected"
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
+msgid "Relay Server URL missing"
+msgstr ""
+
+#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Relay Settings"
+msgstr ""
+
+#. Group in Package's connections
+#: frappe/core/doctype/package/package.json
+msgid "Release"
+msgstr ""
+
+#. Label of the release_notes (Markdown Editor) field in DocType 'Package
+#. Release'
+#: frappe/core/doctype/package_release/package_release.json
+msgid "Release Notes"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:48
+#: frappe/core/doctype/communication/communication.js:159
+msgid "Relink"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:138
+msgid "Relink Communication"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Relinked"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
+#: frappe/public/js/frappe/form/toolbar.js:447
+msgid "Reload"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/attach.js:16
+msgid "Reload File"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:249
+msgid "Reload List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:100
+msgid "Reload Report"
+msgstr ""
+
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'DocField'
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Remember Last Selected Value"
+msgstr ""
+
+#. Label of the remind_at (Datetime) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/public/js/frappe/form/reminders.js:33
+msgid "Remind At"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:479
+msgid "Remind Me"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:13
+msgid "Remind Me In"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/reminder/reminder.json
+msgid "Reminder"
+msgstr ""
+
+#: frappe/automation/doctype/reminder/reminder.py:39
+msgid "Reminder cannot be created in past."
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:96
+msgid "Reminder set at {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
+#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
+#: frappe/public/js/frappe/ui/group_by/group_by.html:4
+msgid "Remove"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:8
+msgid "Remove Failed Jobs"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:493
+msgid "Remove Field"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:427
+msgid "Remove Section"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:138
+msgid "Remove all customizations?"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:286
+msgid "Remove all fields in the column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:278
+#: frappe/public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
+msgid "Remove column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:260
+msgid "Remove field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:279
+msgid "Remove last column"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
+msgid "Remove page break"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:266
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
+msgid "Remove section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:140
+msgid "Remove tab"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Removed"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:137
+#: frappe/public/js/frappe/form/toolbar.js:254
+#: frappe/public/js/frappe/form/toolbar.js:258
+#: frappe/public/js/frappe/form/toolbar.js:435
+#: frappe/public/js/frappe/model/model.js:723
+#: frappe/public/js/frappe/views/treeview.js:311
+msgid "Rename"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:116
+#: frappe/custom/doctype/custom_field/custom_field.js:136
+msgid "Rename Fieldname"
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:710
+msgid "Rename {0}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:699
+msgid "Renamed files and replaced code in controllers, please check!"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
+msgid "Render labels to the left and values to the right in this section"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:43
+#: frappe/desk/doctype/todo/todo.js:36
+msgid "Reopen"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:547
+msgid "Repeat"
+msgstr ""
+
+#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Repeat Header and Footer"
+msgstr ""
+
+#. Label of the repeat_on (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Repeat On"
+msgstr ""
+
+#. Label of the repeat_till (Date) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Repeat Till"
+msgstr ""
+
+#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Repeat on Day"
+msgstr ""
+
+#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Repeat on Days"
+msgstr ""
+
+#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Repeat on Last Day of the Month"
+msgstr ""
+
+#. Label of the repeat_this_event (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Repeat this Event"
+msgstr ""
+
+#: frappe/utils/password_strength.py:110
+msgid "Repeats like \"aaa\" are easy to guess"
+msgstr ""
+
+#: frappe/utils/password_strength.py:105
+msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
+msgid "Repeats {0}"
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:7
+#: frappe/core/doctype/role_replication/role_replication.js:14
+msgid "Replicate"
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:8
+msgid "Replicating..."
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:13
+msgid "Replication completed."
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Contact'
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
+msgid "Replied"
+msgstr ""
+
+#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
+#: frappe/core/doctype/communication/communication.js:57
+#: frappe/public/js/frappe/form/footer/form_timeline.js:563
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+msgid "Reply"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:62
+msgid "Reply All"
+msgstr ""
+
+#. Label of the report (Check) field in DocType 'Custom DocPerm'
+#. Label of the report (Link) field in DocType 'Custom Role'
+#. Label of the report (Check) field in DocType 'DocPerm'
+#. Name of a DocType
+#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
+#. Page and Report'
+#. Label of the report (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health
+#. Report'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/request.js:616
+#: frappe/public/js/frappe/utils/utils.js:923
+msgid "Report"
+msgstr ""
+
+#. Option for the 'Report Type' (Select) field in DocType 'Report'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/list/list_view_select.js:66
+msgid "Report Builder"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/report_column/report_column.json
+msgid "Report Column"
+msgstr ""
+
+#. Label of the report_description (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Report Description"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:151
+msgid "Report Document Error"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/report_filter/report_filter.json
+msgid "Report Filter"
+msgstr ""
+
+#. Label of the report_filters (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Report Filters"
+msgstr ""
+
+#. Label of the report_hide (Check) field in DocType 'DocField'
+#. Label of the report_hide (Check) field in DocType 'Custom Field'
+#. Label of the report_hide (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Report Hide"
+msgstr ""
+
+#. Label of the report_information_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Report Information"
+msgstr ""
+
+#. Name of a role
+#: frappe/core/doctype/report/report.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Report Manager"
+msgstr ""
+
+#. Label of the report_name (Data) field in DocType 'Access Log'
+#. Label of the report_name (Data) field in DocType 'Prepared Report'
+#. Label of the report_name (Data) field in DocType 'Report'
+#. Label of the report_name (Link) field in DocType 'Dashboard Chart'
+#. Label of the report_name (Link) field in DocType 'Number Card'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
+msgid "Report Name"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:70
+msgid "Report Name, Report Field and Fucntion are required to create a number card"
+msgstr ""
+
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Report Ref DocType"
+msgstr ""
+
+#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Report Reference Doctype"
+msgstr ""
+
+#. Label of the report_type (Select) field in DocType 'Report'
+#. Label of the report_type (Data) field in DocType 'Onboarding Step'
+#. Label of the report_type (Read Only) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Report Type"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:203
+msgid "Report View"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
+msgid "Report bug"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1823
+msgid "Report cannot be set for Single types"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
+#: frappe/desk/doctype/number_card/number_card.js:194
+msgid "Report has no data, please modify the filters or change the Report Name"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
+#: frappe/desk/doctype/number_card/number_card.js:189
+msgid "Report has no numeric fields, please change the Report Name"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
+msgid "Report initiated, click to view status"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
+msgid "Report limit reached"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.py:223
+msgid "Report timed out."
+msgstr ""
+
+#: frappe/desk/query_report.py:651
+msgid "Report updated successfully"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1359
+msgid "Report was not saved (there were errors)"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
+msgid "Report with more than 10 columns looks better in Landscape mode."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261
+msgid "Report {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:365
+msgid "Report {0} deleted"
+msgstr ""
+
+#: frappe/desk/query_report.py:54
+msgid "Report {0} is disabled"
+msgstr ""
+
+#: frappe/desk/reportview.py:342
+msgid "Report {0} saved"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:20
+msgid "Report:"
+msgstr ""
+
+#. Label of the prepared_report_section (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
+msgid "Reports"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:50
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:937
+msgid "Reports already in Queue"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/user/user.json
+msgid "Represents a User in the system."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Represents the states allowed in one document and role assigned to change the state."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.js:101
+msgid "Request Body"
+msgstr ""
+
+#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request Data"
+msgstr ""
+
+#. Label of the request_description (Data) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Request Description"
+msgstr ""
+
+#. Label of the request_headers (Code) field in DocType 'Recorder'
+#. Label of the request_headers (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Request Headers"
+msgstr ""
+
+#. Label of the request_id (Data) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Request ID"
+msgstr ""
+
+#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Request Limit"
+msgstr ""
+
+#. Label of the request_method (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Request Method"
+msgstr ""
+
+#. Label of the request_structure (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Request Structure"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:231
+msgid "Request Timed Out"
+msgstr ""
+
+#. Label of the timeout (Int) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/request.js:244
+msgid "Request Timeout"
+msgstr ""
+
+#. Label of the request_url (Small Text) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Request URL"
+msgstr ""
+
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
+#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "Requested Numbers"
+msgstr ""
+
+#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Require Trusted Certificate"
+msgstr ""
+
+#. Description of the 'LDAP search path for Groups' (Data) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
+msgstr ""
+
+#. Description of the 'LDAP search path for Users' (Data) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:279
+msgid "Res: {0}"
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.js:101
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17
+#: frappe/website/doctype/portal_settings/portal_settings.js:19
+msgid "Reset"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:136
+msgid "Reset All Customizations"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37
+msgid "Reset Changes"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/chart_widget.js:306
+msgid "Reset Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39
+msgid "Reset Dashboard Customizations"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:228
+msgid "Reset Fields"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
+msgid "Reset LDAP Password"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:128
+msgid "Reset Layout"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:223
+msgid "Reset OTP Secret"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
+#: frappe/www/me.html:48 frappe/www/update-password.html:3
+#: frappe/www/update-password.html:32
+msgid "Reset Password"
+msgstr ""
+
+#. Label of the reset_password_key (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Reset Password Key"
+msgstr ""
+
+#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Reset Password Link Expiry Duration"
+msgstr ""
+
+#. Label of the reset_password_template (Link) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Reset Password Template"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:116
+msgid "Reset Permissions for {0}?"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:114
+msgid "Reset To Default"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:8
+msgid "Reset sorting"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:434
+msgid "Reset to default"
+msgstr ""
+
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
+msgid "Reset to defaults"
+msgstr ""
+
+#: frappe/templates/emails/password_reset.html:3
+msgid "Reset your password"
+msgstr ""
+
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
+#. Label of the response (Text Editor) field in DocType 'Email Template'
+#. Label of the response_html (Code) field in DocType 'Email Template'
+#. Label of the response_section (Section Break) field in DocType 'Integration
+#. Request'
+#. Label of the response (Code) field in DocType 'Webhook Request Log'
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+msgid "Response"
+msgstr ""
+
+#. Label of the response_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Response Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:414
+msgid "Rest of the day"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.js:11
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
+msgid "Restore"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:509
+msgid "Restore Original Permissions"
+msgstr ""
+
+#: frappe/website/doctype/portal_settings/portal_settings.js:20
+msgid "Restore to default settings?"
+msgstr ""
+
+#. Label of the restored (Check) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Restored"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:74
+msgid "Restoring Deleted Document"
+msgstr ""
+
+#. Label of the restrict_ip (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Restrict IP"
+msgstr ""
+
+#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
+#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
+#. Label of the restrict_to_domain (Link) field in DocType 'Page'
+#. Label of the restrict_to_domain (Link) field in DocType 'Role'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
+msgid "Restrict To Domain"
+msgstr ""
+
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Restrict to Domain"
+msgstr ""
+
+#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:199
+msgctxt "Title of message showing restrictions in list view"
+msgid "Restrictions"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
+msgid "Result"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
+msgid "Resume Sending"
+msgstr ""
+
+#. Label of the retry (Int) field in DocType 'Email Queue'
+#: frappe/core/doctype/data_import/data_import.js:110
+#: frappe/desk/page/setup_wizard/setup_wizard.js:297
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Retry"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue_list.js:47
+msgid "Retry Sending"
+msgstr ""
+
+#: frappe/www/qrcode.html:15
+msgid "Return to the Verification screen and enter the code displayed by your authentication app"
+msgstr ""
+
+#. Label of the reverse (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Reverse Icon Color"
+msgstr ""
+
+#: frappe/database/schema.py:165
+msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
+msgstr ""
+
+#. Label of the revocation_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Revocation URI"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:47
+msgid "Revoke"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "Revoked"
+msgstr ""
+
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Rich Text"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Align' (Select) field in DocType 'Letter Head'
+#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Right"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
+msgctxt "alignment"
+msgid "Right"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Right Bottom"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Right Center"
+msgstr ""
+
+#. Label of the robots_txt (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Robots.txt"
+msgstr ""
+
+#. Label of the role (Link) field in DocType 'Custom DocPerm'
+#. Label of the roles (Table) field in DocType 'Custom Role'
+#. Label of the role (Link) field in DocType 'DocPerm'
+#. Label of the role (Link) field in DocType 'Has Role'
+#. Name of a DocType
+#. Label of the role (Link) field in DocType 'User Role'
+#. Label of the role (Link) field in DocType 'User Type'
+#. Label of a Link in the Users Workspace
+#. Label of a shortcut in the Users Workspace
+#. Label of the role (Link) field in DocType 'Onboarding Permission'
+#. Label of the role (Link) field in DocType 'ToDo'
+#. Label of the role (Link) field in DocType 'OAuth Client Role'
+#. Label of the role (Link) field in DocType 'Portal Menu Item'
+#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/has_role/has_role.json
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_role/user_role.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type/user_type.py:110
+#: frappe/core/page/permission_manager/permission_manager.js:219
+#: frappe/core/page/permission_manager/permission_manager.js:456
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
+msgid "Role"
+msgstr ""
+
+#: frappe/core/doctype/role/role.js:8
+msgid "Role 'All' will be given to all system + website users."
+msgstr ""
+
+#: frappe/core/doctype/role/role.js:13
+msgid "Role 'Desk User' will be given to all system users."
+msgstr ""
+
+#. Label of the role_name (Data) field in DocType 'Role'
+#. Label of the role_profile (Data) field in DocType 'Role Profile'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_profile/role_profile.json
+msgid "Role Name"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/workspace/users/users.json
+msgid "Role Permission for Page and Report"
+msgstr ""
+
+#. Label of the permissions_section (Section Break) field in DocType 'User
+#. Document Type'
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/public/js/frappe/roles_editor.js:114
+msgid "Role Permissions"
+msgstr ""
+
+#. Label of a Link in the Users Workspace
+#: frappe/core/page/permission_manager/permission_manager.js:4
+#: frappe/core/workspace/users/users.json
+msgid "Role Permissions Manager"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1935
+msgctxt "Button in list view menu"
+msgid "Role Permissions Manager"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the role_profile_name (Link) field in DocType 'User'
+#. Label of the role_profile (Link) field in DocType 'User Role Profile'
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+#: frappe/core/workspace/users/users.json
+msgid "Role Profile"
+msgstr ""
+
+#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Role Profiles"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Role Replication"
+msgstr ""
+
+#. Label of the role_and_level (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the role_and_level (Section Break) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+msgid "Role and Level"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:365
+msgid "Role has been set as per the user type {0}"
+msgstr ""
+
+#. Label of the roles (Table) field in DocType 'Page'
+#. Label of the roles (Table) field in DocType 'Report'
+#. Label of the roles (Table) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of the sb1 (Section Break) field in DocType 'User'
+#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation'
+#. Label of the roles_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the roles (Table) field in DocType 'Custom HTML Block'
+#. Label of the roles (Table) field in DocType 'Dashboard Chart'
+#. Label of the roles (Table) field in DocType 'Workspace'
+#. Label of the roles_tab (Tab Break) field in DocType 'Workspace'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager.js:66
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Roles"
+msgstr ""
+
+#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Roles & Permissions"
+msgstr ""
+
+#. Label of the roles (Table) field in DocType 'Role Profile'
+#. Label of the roles (Table) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
+msgid "Roles Assigned"
+msgstr ""
+
+#. Label of the roles_html (HTML) field in DocType 'Role Profile'
+#. Label of the roles_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
+msgid "Roles HTML"
+msgstr ""
+
+#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
+#. and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+msgid "Roles Html"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:7
+msgid "Roles can be set for users from their User page."
+msgstr ""
+
+#: frappe/utils/nestedset.py:293
+msgid "Root {0} cannot be deleted"
+msgstr ""
+
+#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Round Robin"
+msgstr ""
+
+#. Label of the rounding_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Rounding Method"
+msgstr ""
+
+#. Label of the route (Data) field in DocType 'DocType'
+#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
+#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
+#. Label of the route (Data) field in DocType 'Navbar Item'
+#. Label of the route (Data) field in DocType 'DocType Layout'
+#. Label of the route (Data) field in DocType 'Route History'
+#. Label of the route (Data) field in DocType 'Help Article'
+#. Label of the route (Data) field in DocType 'Help Category'
+#. Label of the route (Data) field in DocType 'Portal Menu Item'
+#. Label of the route (Data) field in DocType 'Web Form'
+#. Label of the route (Data) field in DocType 'Web Page'
+#. Label of the route (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
+msgid "Route"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/route_history/route_history.json
+msgid "Route History"
+msgstr ""
+
+#. Label of the route_redirects (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Route Redirects"
+msgstr ""
+
+#. Description of the 'Home Page' (Data) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
+msgid "Route: Example \"/app\""
+msgstr ""
+
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
+msgid "Row"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+msgid "Row #"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
+msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+msgstr ""
+
+#: frappe/model/base_document.py:1039
+msgid "Row #{0}:"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:492
+msgid "Row #{}: Fieldname is required"
+msgstr ""
+
+#. Label of the row_format (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Row Format"
+msgstr ""
+
+#. Label of the row_indexes (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Row Indexes"
+msgstr ""
+
+#. Label of the row_name (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Row Name"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:483
+msgid "Row Number"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:69
+msgid "Row Values Changed"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:367
+msgid "Row {0}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:357
+msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:346
+msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
+msgstr ""
+
+#. Label of the rows_added_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:33
+msgid "Rows Added"
+msgstr ""
+
+#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:33
+msgid "Rows Removed"
+msgstr ""
+
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Rows Threshold for Grid Search"
+msgstr ""
+
+#. Label of the rule (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Rule"
+msgstr ""
+
+#. Label of the section_break_3 (Section Break) field in DocType 'Document
+#. Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Rule Conditions"
+msgstr ""
+
+#: frappe/permissions.py:675
+msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
+msgstr ""
+
+#. Group in DocType's connections
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Rules"
+msgstr ""
+
+#. Description of the 'Transitions' (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Rules defining transition of state in the workflow."
+msgstr ""
+
+#. Description of the 'Transition Rules' (Section Break) field in DocType
+#. 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc."
+msgstr ""
+
+#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Rules with higher priority number will be applied first."
+msgstr ""
+
+#. Label of the dormant_days (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Run Jobs only Daily if Inactive For (Days)"
+msgstr ""
+
+#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Run scheduled jobs only if checked"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
+msgid "Runtime in Minutes"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
+msgid "Runtime in Seconds"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Option for the 'Two Factor Authentication method' (Select) field in DocType
+#. 'System Settings'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/notification/notification.json
+msgid "SMS"
+msgstr ""
+
+#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "SMS Gateway URL"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "SMS Log"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+msgid "SMS Parameter"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "SMS Settings"
+msgstr ""
+
+#: frappe/core/doctype/sms_settings/sms_settings.py:114
+msgid "SMS sent successfully"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:369
+msgid "SMS was not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:212
+msgid "SMTP Server is required"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "SQL"
+msgstr ""
+
+#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+msgid "SQL Conditions. Example: status=\"Open\""
+msgstr ""
+
+#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:85
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "SQL Explain"
+msgstr ""
+
+#. Label of the sql_output (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "SQL Output"
+msgstr ""
+
+#. Label of the sql_queries (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "SQL Queries"
+msgstr ""
+
+#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "SSL/TLS Mode"
+msgstr ""
+
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "SWATCHES"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Sales Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Sales Master Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Sales User"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Salesforce"
+msgstr ""
+
+#. Label of the salutation (Link) field in DocType 'Contact'
+#. Name of a DocType
+#. Label of the salutation (Data) field in DocType 'Salutation'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/salutation/salutation.json
+msgid "Salutation"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:113
+msgid "Same Field is entered more than once"
+msgstr ""
+
+#. Label of the sample (HTML) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Sample"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the saturday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Saturday"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/data_import/data_import.js:113
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/page/print/print.js:898
+#: frappe/printing/page/print_format_builder/print_format_builder.js:160
+#: frappe/public/js/frappe/form/footer/form_timeline.js:678
+#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/list/list_settings.js:37
+#: frappe/public/js/frappe/list/list_settings.js:245
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
+#: frappe/public/js/frappe/utils/common.js:443
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
+#: frappe/public/js/frappe/views/reports/report_view.js:1735
+#: frappe/public/js/frappe/views/workspace/workspace.js:335
+#: frappe/public/js/frappe/widgets/base_widget.js:142
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
+msgid "Save"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:143
+msgid "Save Anyway"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1390
+#: frappe/public/js/frappe/views/reports/report_view.js:1742
+msgid "Save As"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
+msgid "Save Customizations"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
+msgid "Save Report"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
+msgid "Save filters"
+msgstr ""
+
+#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Save on Completion"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:295
+msgid "Save the document."
+msgstr ""
+
+#: frappe/model/rename_doc.py:106
+#: frappe/printing/page/print_format_builder/print_format_builder.js:858
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
+#: frappe/public/js/frappe/views/workspace/workspace.js:684
+msgid "Saved"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.html:88
+msgid "Saved Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:41
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
+#: frappe/public/js/frappe/views/workspace/workspace.js:348
+msgid "Saving"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:9
+msgctxt "Freeze message while saving a document"
+msgid "Saving"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:411
+msgid "Saving Customization..."
+msgstr ""
+
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
+msgid "Saving this will export this document as well as the steps linked here as json."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:233
+#: frappe/public/js/print_format_builder/store.js:36
+#: frappe/public/js/workflow_builder/store.js:73
+msgid "Saving..."
+msgstr ""
+
+#: frappe/public/js/frappe/scanner/index.js:72
+msgid "Scan QRCode"
+msgstr ""
+
+#: frappe/www/qrcode.html:14
+msgid "Scan the QR Code and enter the resulting code displayed."
+msgstr ""
+
+#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Schedule"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:97
+msgid "Schedule Send At"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+msgid "Scheduled"
+msgstr ""
+
+#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+msgid "Scheduled Against"
+msgstr ""
+
+#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+msgid "Scheduled Job"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+msgid "Scheduled Job Log"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#. Label of the scheduled_job_type (Link) field in DocType 'System Health
+#. Report Failing Jobs'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Scheduled Job Type"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Scheduled Jobs Logs"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.py:150
+msgid "Scheduled execution for script {0} has updated"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:26
+msgid "Scheduled to send"
+msgstr ""
+
+#. Label of the scheduler_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Scheduler"
+msgstr ""
+
+#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type'
+#. Name of a DocType
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Scheduler Event"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.py:107
+msgid "Scheduler Inactive"
+msgstr ""
+
+#. Label of the scheduler_status (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Scheduler Status"
+msgstr ""
+
+#: frappe/utils/scheduler.py:247
+msgid "Scheduler can not be re-enabled when maintenance mode is active."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.py:107
+msgid "Scheduler is inactive. Cannot import data."
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:19
+msgid "Scheduler: Active"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:21
+msgid "Scheduler: Inactive"
+msgstr ""
+
+#. Label of the scope (Data) field in DocType 'OAuth Scope'
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
+msgid "Scope"
+msgstr ""
+
+#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
+#. App'
+#. Label of the scopes (Table) field in DocType 'Connected App'
+#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code'
+#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token'
+#. Label of the scopes (Text) field in DocType 'OAuth Client'
+#. Label of the scopes (Table) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Scopes"
+msgstr ""
+
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
+#. Label of the report_script (Code) field in DocType 'Report'
+#. Label of the script (Code) field in DocType 'Server Script'
+#. Label of the script (Code) field in DocType 'Client Script'
+#. Label of the script (Code) field in DocType 'Console Log'
+#. Label of the custom_javascript (Section Break) field in DocType 'Web Page'
+#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Script"
+msgstr ""
+
+#. Name of a role
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Script Manager"
+msgstr ""
+
+#. Option for the 'Report Type' (Select) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Script Report"
+msgstr ""
+
+#. Label of the script_type (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Script Type"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/website_script/website_script.json
+msgid "Script to attach to all web pages."
+msgstr ""
+
+#. Label of a Card Break in the Build Workspace
+#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page'
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Scripting"
+msgstr ""
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Scripting / Style"
+msgstr ""
+
+#. Label of the scripts_section (Section Break) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Scripts"
+msgstr ""
+
+#. Label of the search_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/form/link_selector.js:46
+#: frappe/public/js/frappe/list/list_sidebar.html:69
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
+#: frappe/public/js/frappe/ui/toolbar/search.js:49
+#: frappe/public/js/frappe/ui/toolbar/search.js:68
+#: frappe/templates/discussions/search.html:2
+#: frappe/templates/includes/search_template.html:26
+msgid "Search"
+msgstr ""
+
+#. Label of the search_bar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Search Bar"
+msgstr ""
+
+#. Label of the search_fields (Data) field in DocType 'DocType'
+#. Label of the search_fields (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Search Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186
+msgid "Search Help"
+msgstr ""
+
+#. Label of the allowed_in_global_search (Table) field in DocType 'Global
+#. Search Settings'
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+msgid "Search Priorities"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
+msgid "Search Results"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13
+msgid "Search by filename or extension"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1468
+msgid "Search field {0} is not valid"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87
+msgid "Search fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:19
+msgid "Search fieldtypes..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:50
+#: frappe/public/js/frappe/ui/toolbar/search.js:69
+msgid "Search for anything"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306
+msgid "Search for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
+msgid "Search in a document type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
+msgid "Search or type a command ({0})"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/SearchBox.vue:8
+msgid "Search properties..."
+msgstr ""
+
+#: frappe/templates/includes/search_box.html:8
+msgid "Search results for"
+msgstr ""
+
+#: frappe/templates/includes/navbar/navbar_search.html:6
+#: frappe/templates/includes/search_box.html:2
+#: frappe/templates/includes/search_template.html:23
+msgid "Search..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:210
+msgid "Searching ..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Web Template'
+#: frappe/public/js/form_builder/components/Section.vue:263
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Section"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Section Break"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:421
+msgid "Section Heading"
+msgstr ""
+
+#. Label of the section_id (Data) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Section ID"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:28
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8
+msgid "Section Title"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:217
+#: frappe/public/js/form_builder/components/Section.vue:240
+msgid "Section must have at least one column"
+msgstr ""
+
+#. Label of the sb3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Security Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:309
+msgid "See all Activity"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:863
+msgid "See all past reports."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1235
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
+msgid "See on Website"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:160
+msgctxt "Button in web form"
+msgid "See previous responses"
+msgstr ""
+
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49
+msgid "See the document at {0}"
+msgstr ""
+
+#. Label of the seen (Check) field in DocType 'Comment'
+#. Label of the seen (Check) field in DocType 'Communication'
+#. Label of the seen (Check) field in DocType 'Error Log'
+#. Label of the seen (Check) field in DocType 'Notification Settings'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log_list.js:5
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Seen"
+msgstr ""
+
+#. Label of the seen_by_section (Section Break) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Seen By"
+msgstr ""
+
+#. Label of the seen_by (Table) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Seen By Table"
+msgstr ""
+
+#. Label of the select (Check) field in DocType 'Custom DocPerm'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the select (Check) field in DocType 'DocPerm'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/page/print/print.js:642
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Select"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+#: frappe/public/js/frappe/form/grid_row.js:498
+msgid "Select All"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:601
+#: frappe/public/js/frappe/views/interaction.js:93
+#: frappe/public/js/frappe/views/interaction.js:155
+msgid "Select Attachments"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:27
+#: frappe/custom/doctype/client_script/client_script.js:30
+msgid "Select Child Table"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:388
+msgid "Select Column"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
+#: frappe/public/js/frappe/form/print_utils.js:73
+msgid "Select Columns"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:399
+msgid "Select Country"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:415
+msgid "Select Currency"
+msgstr ""
+
+#. Label of the dashboard_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/utils/dashboard_utils.js:240
+msgid "Select Dashboard"
+msgstr ""
+
+#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Select Date Range"
+msgstr ""
+
+#. Label of the doc_type (Link) field in DocType 'Web Form'
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
+#: frappe/public/js/frappe/doctype/index.js:171
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Select DocType"
+msgstr ""
+
+#. Label of the reference_doctype (Link) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Select Doctype"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
+msgid "Select Document Type"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:179
+msgid "Select Document Type or Role to start."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:34
+msgid "Select Document Types to set which User Permissions are used to limit access."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
+#: frappe/public/js/frappe/doctype/index.js:200
+#: frappe/public/js/frappe/form/toolbar.js:838
+msgid "Select Field"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.html:35
+#: frappe/public/js/frappe/ui/group_by/group_by.js:141
+msgid "Select Field..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:490
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
+msgid "Select Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:234
+msgid "Select Fields (Up to {0})"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:147
+msgid "Select Fields To Insert"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
+msgid "Select Fields To Update"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
+msgid "Select Filters"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.py:107
+msgid "Select Google Calendar to which event should be synced."
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.py:77
+msgid "Select Google Contacts to which contact should be synced."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.html:10
+msgid "Select Group By..."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:185
+msgid "Select Kanban"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:391
+msgid "Select Language"
+msgstr ""
+
+#. Label of the list_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Select List View"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:158
+msgid "Select Mandatory"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:280
+msgid "Select Module"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:188
+#: frappe/printing/page/print/print.js:625
+msgid "Select Network Printer"
+msgstr ""
+
+#. Label of the page_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Select Page"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
+#: frappe/public/js/frappe/views/communication.js:160
+msgid "Select Print Format"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:82
+msgid "Select Print Format to Edit"
+msgstr ""
+
+#. Label of the report_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Select Report"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:631
+msgid "Select Table Columns for {0}"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:408
+msgid "Select Time Zone"
+msgstr ""
+
+#. Label of the transaction_type (Autocomplete) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Select Transaction"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
+msgid "Select Workflow"
+msgstr ""
+
+#. Label of the workspace_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Select Workspace"
+msgstr ""
+
+#. Label of the select_workspaces_section (Section Break) field in DocType
+#. 'Workspace Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Select Workspaces"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:23
+msgid "Select a Brand Image first."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:108
+msgid "Select a DocType to make a new format"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:56
+msgid "Select a field to edit its properties."
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:358
+msgid "Select a group {0} first."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1956
+msgid "Select a valid Sender Field for creating documents from Email"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Select a valid Subject field for creating documents from Email"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:321
+msgid "Select an Image"
+msgstr ""
+
+#: frappe/www/apps.html:10
+msgid "Select an app to continue"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
+msgid "Select an existing format to edit or start a new format."
+msgstr ""
+
+#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Select an image of approx width 150px with a transparent background for best results."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:36
+msgid "Select atleast 1 record for printing"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:18
+msgid "Select atleast 2 actions"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1447
+msgctxt "Description of a list view shortcut"
+msgid "Select list item"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
+msgctxt "Description of a list view shortcut"
+msgid "Select multiple list items"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:167
+msgid "Select or drag across time slots to create a new event."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:239
+msgid "Select records for assignment"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:260
+msgid "Select records for removing assignment"
+msgstr ""
+
+#. Description of the 'Insert After' (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Select the label after which you want to insert new field."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:102
+msgid "Select two versions to view the diff."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:24
+#: frappe/public/js/frappe/form/multi_select_dialog.js:80
+#: frappe/public/js/frappe/form/multi_select_dialog.js:282
+#: frappe/public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/print_format_builder/Preview.vue:90
+msgid "Select {0}"
+msgstr ""
+
+#: frappe/model/workflow.py:120
+msgid "Self approval is not allowed"
+msgstr ""
+
+#: frappe/www/contact.html:41
+msgid "Send"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:26
+msgctxt "Send Email"
+msgid "Send"
+msgstr ""
+
+#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence."
+msgstr ""
+
+#. Label of the send_after (Datetime) field in DocType 'Communication'
+#. Label of the send_after (Datetime) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send After"
+msgstr ""
+
+#. Label of the event (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send Alert On"
+msgstr ""
+
+#. Label of the send_email_alert (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Send Email Alert"
+msgstr ""
+
+#. Label of the send_email (Check) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send Email On State"
+msgstr ""
+
+#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Send Email Print Attachments as PDF (Recommended)"
+msgstr ""
+
+#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Send Email To Creator"
+msgstr ""
+
+#. Label of the send_me_a_copy (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Send Me A Copy of Outgoing Emails"
+msgstr ""
+
+#. Label of the send_notification_to (Small Text) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Send Notification to"
+msgstr ""
+
+#. Label of the document_follow_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Send Notifications For Documents Followed By Me"
+msgstr ""
+
+#. Label of the thread_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Send Notifications For Email Threads"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
+msgid "Send Now"
+msgstr ""
+
+#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Send Print as PDF"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:150
+msgid "Send Read Receipt"
+msgstr ""
+
+#. Label of the send_system_notification (Check) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send System Notification"
+msgstr ""
+
+#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send To All Assignees"
+msgstr ""
+
+#. Label of the send_welcome_email (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Send Welcome Email"
+msgstr ""
+
+#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send alert if date matches this field's value"
+msgstr ""
+
+#. Description of the 'Reference Datetime' (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send alert if datetime matches this field's value"
+msgstr ""
+
+#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send alert if this field's value changes"
+msgstr ""
+
+#. Label of the send_reminder (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Send an email reminder in the morning"
+msgstr ""
+
+#. Description of the 'Days Before or After' (Int) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send days before or after the reference date"
+msgstr ""
+
+#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send email when document transitions to the state."
+msgstr ""
+
+#. Description of the 'Forward To Email Address' (Data) field in DocType
+#. 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Send enquiries to this email address"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
+msgid "Send login link"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:144
+msgid "Send me a copy"
+msgstr ""
+
+#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Send only if there is any data"
+msgstr ""
+
+#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Send unsubscribe message in email"
+msgstr ""
+
+#. Label of the sender (Data) field in DocType 'Event'
+#. Label of the sender (Data) field in DocType 'ToDo'
+#. Label of the sender (Link) field in DocType 'Auto Email Report'
+#. Label of the sender (Data) field in DocType 'Email Queue'
+#. Label of the sender (Link) field in DocType 'Notification'
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Sender"
+msgstr ""
+
+#. Label of the sender_email (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Sender Email"
+msgstr ""
+
+#. Label of the sender_field (Data) field in DocType 'DocType'
+#. Label of the sender_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Sender Email Field"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1959
+msgid "Sender Field should have Email in options"
+msgstr ""
+
+#. Label of the sender_name (Data) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "Sender Name"
+msgstr ""
+
+#. Label of the sender_name_field (Data) field in DocType 'DocType'
+#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Sender Name Field"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Sendgrid"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Sending"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+msgid "Sent"
+msgstr ""
+
+#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
+#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Sent Folder Name"
+msgstr ""
+
+#. Label of the sent_on (Date) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "Sent On"
+msgstr ""
+
+#. Label of the read_receipt (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Sent Read Receipt"
+msgstr ""
+
+#. Label of the sent_to (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
+msgid "Sent To"
+msgstr ""
+
+#. Label of the sent_or_received (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Sent or Received"
+msgstr ""
+
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Sent/Received Email"
+msgstr ""
+
+#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+msgid "Separator"
+msgstr ""
+
+#. Label of the sequence_id (Float) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Sequence Id"
+msgstr ""
+
+#. Label of the naming_series_options (Text) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Series List for this Transaction"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
+msgid "Series Updated for {}"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
+msgid "Series counter for {} updated to {} successfully"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1110
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
+msgid "Series {0} already used in {1}"
+msgstr ""
+
+#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+msgid "Server Action"
+msgstr ""
+
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/www/error.html:36 frappe/www/error.py:15
+msgid "Server Error"
+msgstr ""
+
+#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+msgid "Server IP"
+msgstr ""
+
+#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/workspace/build/build.json
+msgid "Server Script"
+msgstr ""
+
+#: frappe/utils/safe_exec.py:98
+msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.js:39
+msgid "Server Scripts feature is not available on this site."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:254
+msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:246
+msgid "Server was too busy to process this request. Please try again."
+msgstr ""
+
+#. Label of the service (Select) field in DocType 'Email Account'
+#. Label of the integration_request_service (Data) field in DocType
+#. 'Integration Request'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Service"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/session_default/session_default.json
+msgid "Session Default"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+msgid "Session Default Settings"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#. Label of the session_defaults (Table) field in DocType 'Session Default
+#. Settings'
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
+msgid "Session Defaults"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
+msgid "Session Defaults Saved"
+msgstr ""
+
+#: frappe/app.py:376
+msgid "Session Expired"
+msgstr ""
+
+#. Label of the session_expiry (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Session Expiry (idle timeout)"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:123
+msgid "Session Expiry must be in format {0}"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
+#: frappe/public/js/frappe/widgets/chart_widget.js:447
+msgid "Set"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:607
+msgctxt "Field value is set"
+msgid "Set"
+msgstr ""
+
+#. Label of the set_banner_from_image (Button) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Set Banner from Image"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:200
+msgid "Set Chart"
+msgstr ""
+
+#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
+msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
+#: frappe/desk/doctype/number_card/number_card.js:384
+msgid "Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
+#: frappe/desk/doctype/number_card/number_card.js:292
+#: frappe/public/js/form_builder/components/Field.vue:80
+#: frappe/website/doctype/web_form/web_form.js:269
+msgid "Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/chart_widget.js:436
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
+msgid "Set Filters for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
+msgid "Set Level"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:92
+msgid "Set Limit"
+msgstr ""
+
+#. Description of the 'Setup Series for transactions' (Section Break) field in
+#. DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Set Naming Series options on your transactions."
+msgstr ""
+
+#. Label of the new_password (Password) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Set New Password"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:8
+msgid "Set Number of Backups"
+msgstr ""
+
+#: frappe/www/update-password.html:32
+msgid "Set Password"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:112
+msgid "Set Permissions"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:471
+msgid "Set Properties"
+msgstr ""
+
+#. Label of the property_section (Section Break) field in DocType
+#. 'Notification'
+#. Label of the set_property_after_alert (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Set Property After Alert"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:207
+#: frappe/public/js/frappe/form/link_selector.js:208
+msgid "Set Quantity"
+msgstr ""
+
+#. Label of the set_role_for (Select) field in DocType 'Role Permission for
+#. Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+msgid "Set Role For"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:124
+#: frappe/core/page/permission_manager/permission_manager.js:72
+msgid "Set User Permissions"
+msgstr ""
+
+#. Label of the value (Small Text) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Set Value"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+msgid "Set all private"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94
+msgid "Set all public"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:50
+msgid "Set as Default"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.js:33
+msgid "Set as Default Theme"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Set by user"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "Set dynamic filter values in JavaScript for the required fields here."
+msgstr ""
+
+#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
+#. Description of the 'Precision' (Select) field in DocType 'Customize Form
+#. Field'
+#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Set non-standard precision for a Float or Currency field"
+msgstr ""
+
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
+#. Label of the set_only_once (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set only once"
+msgstr ""
+
+#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Set size in MB"
+msgstr ""
+
+#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the filters here. For example:\n"
+"\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
"
+msgstr ""
+
+#. Description of the 'Method' (Data) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
+"\n"
+"{\n"
+"\t\"value\": value,\n"
+"\t\"fieldtype\": \"Currency\",\n"
+"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
+"}
"
+msgstr ""
+
+#: frappe/contacts/doctype/address_template/address_template.py:33
+msgid "Setting this Address Template as default as there is no other default"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
+msgid "Setting up Global Search documents."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:285
+msgid "Setting up your system"
+msgstr ""
+
+#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
+#. Label of the settings_tab (Tab Break) field in DocType 'User'
+#. Group in User's connections
+#. Label of a Card Break in the Integrations Workspace
+#. Label of the settings_tab (Tab Break) field in DocType 'Web Form'
+#. Label of the settings (Tab Break) field in DocType 'Web Page'
+#. Label of a Card Break in the Website Workspace
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/public/js/frappe/form/templates/print_layout.html:25
+#: frappe/public/js/frappe/ui/apps_switcher.js:137
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
+#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json frappe/www/me.html:20
+msgid "Settings"
+msgstr ""
+
+#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Settings Dropdown"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Settings for Contact Us Page"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Settings for the About Us Page"
+msgstr ""
+
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+msgid "Setup"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Setup > Customize Form"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:8
+msgid "Setup > User"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "Setup > User Permissions"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/report_view.js:1713
+msgid "Setup Auto Email"
+msgstr ""
+
+#. Label of the setup_complete (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:211
+msgid "Setup Complete"
+msgstr ""
+
+#. Label of the setup_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Setup Series for transactions"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:236
+msgid "Setup failed"
+msgstr ""
+
+#. Label of the share (Check) field in DocType 'Custom DocPerm'
+#. Label of the share (Check) field in DocType 'DocPerm'
+#. Label of the share (Check) field in DocType 'DocShare'
+#. Label of the share (Check) field in DocType 'User Document Type'
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
+msgid "Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/share.js:107
+msgid "Share With"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:49
+msgid "Share this document with"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/share.js:45
+msgid "Share {0} with"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Shared"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:132
+msgid "Shared with the following Users with Read access:{0}"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Shipping"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:31
+msgid "Shipping Address"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Shop"
+msgstr ""
+
+#: frappe/utils/password_strength.py:91
+msgid "Short keyboard patterns are easy to guess"
+msgstr ""
+
+#. Label of the shortcuts (Table) field in DocType 'Workspace'
+#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Shortcuts"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
+msgid "Show"
+msgstr ""
+
+#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
+#. 'System Settings'
+#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
+#. 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Show Absolute Datetime in Timeline"
+msgstr ""
+
+#. Label of the absolute_value (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Show Absolute Values"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
+msgid "Show All"
+msgstr ""
+
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
+#: frappe/desk/doctype/calendar_view/calendar_view.js:10
+msgid "Show Calendar"
+msgstr ""
+
+#. Label of the symbol_on_right (Check) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Show Currency Symbol on Right Side"
+msgstr ""
+
+#. Label of the show_dashboard (Check) field in DocType 'DocField'
+#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
+#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard/dashboard.js:6
+msgid "Show Dashboard"
+msgstr ""
+
+#. Label of the show_document (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Show Document"
+msgstr ""
+
+#: frappe/www/error.html:42 frappe/www/error.html:65
+msgid "Show Error"
+msgstr ""
+
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:578
+msgid "Show Fieldname (click to copy on clipboard)"
+msgstr ""
+
+#. Label of the first_document (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Show First Document Tour"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Show Form Tour"
+msgstr ""
+
+#. Label of the allow_error_traceback (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show Full Error and Allow Reporting of Issues to the Developer"
+msgstr ""
+
+#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Show Full Form?"
+msgstr ""
+
+#. Label of the show_full_number (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Full Number"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:234
+msgid "Show Keyboard Shortcuts"
+msgstr ""
+
+#. Label of the show_labels (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
+msgid "Show Labels"
+msgstr ""
+
+#. Label of the show_language_picker (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Show Language Picker"
+msgstr ""
+
+#. Label of the line_breaks (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Show Line Breaks after Sections"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:410
+msgid "Show Links"
+msgstr ""
+
+#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Show Only Failed Logs"
+msgstr ""
+
+#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Percentage Stats"
+msgstr ""
+
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
+msgid "Show Permissions"
+msgstr ""
+
+#: frappe/public/js/form_builder/form_builder.bundle.js:31
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
+msgid "Show Preview"
+msgstr ""
+
+#. Label of the show_preview_popup (Check) field in DocType 'DocType'
+#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Show Preview Popup"
+msgstr ""
+
+#. Label of the show_processlist (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Show Processlist"
+msgstr ""
+
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
+#: frappe/core/doctype/error_log/error_log.js:9
+msgid "Show Related Errors"
+msgstr ""
+
+#. Label of the show_report (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:43
+#: frappe/core/doctype/report/report.js:16
+msgid "Show Report"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:15
+#: frappe/public/js/frappe/list/list_filter.js:94
+msgid "Show Saved"
+msgstr ""
+
+#. Label of the show_section_headings (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Show Section Headings"
+msgstr ""
+
+#. Label of the show_sidebar (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Show Sidebar"
+msgstr ""
+
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1851
+msgid "Show Tags"
+msgstr ""
+
+#. Label of the show_title (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Show Title"
+msgstr ""
+
+#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
+#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Show Title in Link Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1529
+msgid "Show Totals"
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.js:116
+msgid "Show Tour"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:448
+msgid "Show Traceback"
+msgstr ""
+
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:204
+msgid "Show Warnings"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
+msgid "Show Weekends"
+msgstr ""
+
+#. Label of the show_account_deletion_link (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Show account deletion link in My Account page"
+msgstr ""
+
+#: frappe/core/doctype/version/version.js:6
+msgid "Show all Versions"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:69
+msgid "Show all activity"
+msgstr ""
+
+#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Show as cc"
+msgstr ""
+
+#. Label of the show_attachments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show attachments"
+msgstr ""
+
+#. Label of the show_footer_on_login (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Show footer on login"
+msgstr ""
+
+#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Show full form instead of a quick entry modal"
+msgstr ""
+
+#. Label of the document_type (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Show in Module Section"
+msgstr ""
+
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
+#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Show in filter"
+msgstr ""
+
+#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+msgid "Show link to document"
+msgstr ""
+
+#. Label of the show_list (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show list"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:272
+#: frappe/public/js/frappe/form/layout.js:290
+msgid "Show more details"
+msgstr ""
+
+#. Label of the show_on_timeline (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Show on Timeline"
+msgstr ""
+
+#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show percentage difference according to this time interval"
+msgstr ""
+
+#. Label of the show_sidebar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show sidebar"
+msgstr ""
+
+#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Show title in browser window as \"Prefix - title\""
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
+msgid "Show {0} List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:506
+msgid "Showing only Numeric fields from Report"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:153
+msgid "Showing only first {0} rows out of {1}"
+msgstr ""
+
+#. Label of the list_sidebar (Check) field in DocType 'User'
+#. Label of the form_sidebar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Sidebar"
+msgstr ""
+
+#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+msgid "Sidebar Items"
+msgstr ""
+
+#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Sidebar Settings"
+msgstr ""
+
+#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Sidebar and Comments"
+msgstr ""
+
+#. Label of the sign_up_and_confirmation_section (Section Break) field in
+#. DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Sign Up and Confirmation"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1029
+msgid "Sign Up is disabled"
+msgstr ""
+
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
+msgid "Sign up"
+msgstr ""
+
+#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Sign ups"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the signature_section (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the signature (Text Editor) field in DocType 'Email Account'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Signature"
+msgstr ""
+
+#: frappe/www/login.html:168
+msgid "Signup Disabled"
+msgstr ""
+
+#: frappe/www/login.html:169
+msgid "Signups have been disabled for this website."
+msgstr ""
+
+#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
+
+#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
+
+#. Label of the simultaneous_sessions (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Simultaneous Sessions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:128
+msgid "Single DocTypes cannot be customized."
+msgstr ""
+
+#. Description of the 'Is Single' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:68
+msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
+msgstr ""
+
+#: frappe/database/database.py:284
+msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:370
+msgid "Size"
+msgstr ""
+
+#. Label of the size (Float) field in DocType 'System Health Report Tables'
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "Size (MB)"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
+msgid "Skip"
+msgstr ""
+
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
+#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
+#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Skip Authorization"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
+msgid "Skip Step"
+msgstr ""
+
+#. Label of the skipped (Check) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "Skipped"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:952
+msgid "Skipping Duplicate Column {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:977
+msgid "Skipping Untitled Column"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:963
+msgid "Skipping column {0}"
+msgstr ""
+
+#: frappe/modules/utils.py:176
+msgid "Skipping fixture syncing for doctype {0} from file {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:39
+msgid "Skipping {0} of {1}, {2}"
+msgstr ""
+
+#. Label of the skype (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Skype"
+msgstr ""
+
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Slack"
+msgstr ""
+
+#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Slack Channel"
+msgstr ""
+
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
+msgid "Slack Webhook Error"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Slack Webhook URL"
+msgstr ""
+
+#. Label of the slideshow (Link) field in DocType 'Web Page'
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Slideshow"
+msgstr ""
+
+#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow Items"
+msgstr ""
+
+#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow Name"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow like display for the website"
+msgstr ""
+
+#. Label of the slug (Data) field in DocType 'UTM Campaign'
+#. Label of the slug (Data) field in DocType 'UTM Medium'
+#. Label of the slug (Data) field in DocType 'UTM Source'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Slug"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Small Text"
+msgstr ""
+
+#. Label of the smallest_currency_fraction_value (Currency) field in DocType
+#. 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Smallest Currency Fraction Value"
+msgstr ""
+
+#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
+#. DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Snippet and more variables: {0}"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+msgid "Social Link Settings"
+msgstr ""
+
+#. Label of the social_link_type (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+msgid "Social Link Type"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Social Login Key"
+msgstr ""
+
+#. Label of the social_login_provider (Select) field in DocType 'Social Login
+#. Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Social Login Provider"
+msgstr ""
+
+#. Label of the social_logins (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Social Logins"
+msgstr ""
+
+#. Label of the socketio_ping_check (Select) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Ping Check"
+msgstr ""
+
+#. Label of the socketio_transport_mode (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Transport Mode"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Soft-Bounced"
+msgstr ""
+
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
+msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
+msgstr ""
+
+#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\""
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:20
+msgid "Some of the features might not work in your browser. Please update your browser to the latest version."
+msgstr ""
+
+#: frappe/public/js/frappe/views/translation_manager.js:101
+msgid "Something went wrong"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
+msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:293
+msgid "Something went wrong."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:117
+msgid "Sorry! I could not find what you were looking for."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:125
+msgid "Sorry! You are not permitted to view this page."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:6
+msgid "Sort Ascending"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:7
+msgid "Sort Descending"
+msgstr ""
+
+#. Label of the sort_field (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Sort Field"
+msgstr ""
+
+#. Label of the sort_options (Check) field in DocType 'DocField'
+#. Label of the sort_options (Check) field in DocType 'Custom Field'
+#. Label of the sort_options (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Sort Options"
+msgstr ""
+
+#. Label of the sort_order (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Sort Order"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1551
+msgid "Sort field {0} must be a valid fieldname"
+msgstr ""
+
+#. Label of the source (Data) field in DocType 'Web Page View'
+#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/public/js/frappe/utils/utils.js:1757
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
+#: frappe/website/report/website_analytics/website_analytics.js:38
+msgid "Source"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Source Code"
+msgstr ""
+
+#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+msgid "Source Name"
+msgstr ""
+
+#. Label of the source_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/public/js/frappe/views/translation_manager.js:38
+msgid "Source Text"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
+msgid "Spacer"
+msgstr ""
+
+#. Option for the 'Email Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Spam"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "SparkPost"
+msgstr ""
+
+#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow
+#. Transition Task'
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Spawns actions in a background job"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:83
+msgid "Special Characters are not allowed"
+msgstr ""
+
+#: frappe/model/naming.py:68
+msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
+msgstr ""
+
+#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Specify a custom timeout, default timeout is 1500 seconds"
+msgstr ""
+
+#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
+#. 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
+msgstr ""
+
+#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Splash Image"
+msgstr ""
+
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
+#: frappe/templates/print_formats/standard_macros.html:44
+msgid "Sr"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:143
+#: frappe/public/js/print_format_builder/Field.vue:164
+msgid "Sr No."
+msgstr ""
+
+#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:82
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "Stack Trace"
+msgstr ""
+
+#. Label of the standard (Select) field in DocType 'Page'
+#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Select) field in DocType 'Print Format'
+#. Label of the standard (Check) field in DocType 'Print Format Field Template'
+#. Label of the standard (Check) field in DocType 'Print Style'
+#. Label of the standard (Check) field in DocType 'Web Template'
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/user_type/user_type_list.js:5
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Standard"
+msgstr ""
+
+#: frappe/model/delete_doc.py:119
+msgid "Standard DocType can not be deleted."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:229
+msgid "Standard DocType cannot have default print format, use Customize Form"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard/dashboard.py:58
+msgid "Standard Not Set"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:132
+msgid "Standard Permissions"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:82
+msgid "Standard Print Format cannot be updated"
+msgstr ""
+
+#: frappe/printing/doctype/print_style/print_style.py:31
+msgid "Standard Print Style cannot be changed. Please duplicate to edit."
+msgstr ""
+
+#: frappe/desk/reportview.py:355
+msgid "Standard Reports cannot be deleted"
+msgstr ""
+
+#: frappe/desk/reportview.py:326
+msgid "Standard Reports cannot be edited"
+msgstr ""
+
+#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Standard Sidebar Menu"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:40
+msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Standard rich text editor with controls"
+msgstr ""
+
+#: frappe/core/doctype/role/role.py:46
+msgid "Standard roles cannot be disabled"
+msgstr ""
+
+#: frappe/core/doctype/role/role.py:32
+msgid "Standard roles cannot be renamed"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:61
+msgid "Standard user type {0} can not be deleted."
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:87
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
+#: frappe/printing/page/print/print.js:309
+#: frappe/printing/page/print/print.js:356
+msgid "Start"
+msgstr ""
+
+#. Label of the start_date (Date) field in DocType 'Auto Repeat'
+#. Label of the start_date (Date) field in DocType 'Audit Trail'
+#. Label of the start_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Start Date"
+msgstr ""
+
+#. Label of the start_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+msgid "Start Date Field"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:110
+msgid "Start Import"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:201
+msgid "Start Recording"
+msgstr ""
+
+#. Label of the birth_date (Datetime) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Start Time"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:8
+msgid "Start a new discussion"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:22
+msgid "Start entering data below this line"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:165
+msgid "Start new Format"
+msgstr ""
+
+#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "StartTLS"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Started"
+msgstr ""
+
+#. Label of the started_at (Datetime) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Started At"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:286
+msgid "Starting Frappe ..."
+msgstr ""
+
+#. Label of the starts_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Starts on"
+msgstr ""
+
+#. Label of the state (Data) field in DocType 'Token Cache'
+#. Label of the state (Link) field in DocType 'Workflow Document State'
+#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
+#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/workflow/doctype/workflow/workflow.js:162
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "State"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:26
+msgid "State Properties"
+msgstr ""
+
+#. Label of the state (Data) field in DocType 'Address'
+#. Label of the state (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "State/Province"
+msgstr ""
+
+#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
+#. Label of the states (Table) field in DocType 'Customize Form'
+#. Label of the states_head (Section Break) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "States"
+msgstr ""
+
+#. Label of the parameters (Table) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Static Parameters"
+msgstr ""
+
+#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Statistics"
+msgstr ""
+
+#. Label of the stats_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/dashboard.js:43
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
+msgid "Stats"
+msgstr ""
+
+#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Stats Time Interval"
+msgstr ""
+
+#. Label of the status (Select) field in DocType 'Auto Repeat'
+#. Label of the status (Select) field in DocType 'Contact'
+#. Label of the status (Select) field in DocType 'Activity Log'
+#. Label of the status_section (Section Break) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Data Import'
+#. Label of the status (Select) field in DocType 'Permission Log'
+#. Label of the status (Select) field in DocType 'Prepared Report'
+#. Label of the status (Select) field in DocType 'RQ Job'
+#. Label of the status (Data) field in DocType 'RQ Worker'
+#. Label of the status (Select) field in DocType 'Scheduled Job Log'
+#. Label of the status_section (Section Break) field in DocType 'Scheduled Job
+#. Type'
+#. Label of the status (Select) field in DocType 'Submission Queue'
+#. Label of the status (Select) field in DocType 'User Invitation'
+#. Label of the status (Select) field in DocType 'Event'
+#. Label of the status (Select) field in DocType 'Kanban Board Column'
+#. Label of the status (Select) field in DocType 'ToDo'
+#. Label of the status (Select) field in DocType 'Email Queue'
+#. Label of the status (Select) field in DocType 'Email Queue Recipient'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:357
+#: frappe/public/js/frappe/views/reports/report_view.js:980
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Status"
+msgstr ""
+
+#: frappe/www/update-password.html:188
+msgid "Status Updated"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.js:37
+msgid "Status Updated. The email will be picked up in the next scheduled run."
+msgstr ""
+
+#: frappe/www/message.html:24
+msgid "Status: {0}"
+msgstr ""
+
+#. Label of the step (Link) field in DocType 'Onboarding Step Map'
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
+msgid "Step"
+msgstr ""
+
+#. Label of the steps (Table) field in DocType 'Form Tour'
+#. Label of the steps (Table) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Steps"
+msgstr ""
+
+#: frappe/www/qrcode.html:11
+msgid "Steps to verify your login"
+msgstr ""
+
+#. Label of the sticky (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/public/js/frappe/form/grid_row.js:455
+msgid "Sticky"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:87
+msgid "Stop"
+msgstr ""
+
+#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Stopped"
+msgstr ""
+
+#. Label of the db_storage_usage (Float) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Storage Usage (MB)"
+msgstr ""
+
+#. Label of the top_db_tables (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Storage Usage By Table"
+msgstr ""
+
+#. Label of the store_attached_pdf_document (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Store Attached PDF Document"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:497
+msgid "Store the API secret securely. It won't be displayed again."
+msgstr ""
+
+#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
+msgstr ""
+
+#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
+#. in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Stores the datetime when the last reset password key was generated."
+msgstr ""
+
+#: frappe/utils/password_strength.py:97
+msgid "Straight rows of keys are easy to guess"
+msgstr ""
+
+#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Strip EXIF tags from uploaded images"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:89
+msgid "Strong"
+msgstr ""
+
+#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
+#. Label of the style (Select) field in DocType 'Workflow State'
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Style"
+msgstr ""
+
+#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Style Settings"
+msgstr ""
+
+#. Description of the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
+msgstr ""
+
+#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Stylesheet"
+msgstr ""
+
+#. Description of the 'Fraction' (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Sub-currency. For e.g. \"Cent\""
+msgstr ""
+
+#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Sub-domain provided by erpnext.com"
+msgstr ""
+
+#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Subdomain"
+msgstr ""
+
+#. Label of the subject (Data) field in DocType 'Auto Repeat'
+#. Label of the subject (Small Text) field in DocType 'Activity Log'
+#. Label of the subject (Text) field in DocType 'Comment'
+#. Label of the subject (Small Text) field in DocType 'Communication'
+#. Label of the subject (Small Text) field in DocType 'Event'
+#. Label of the subject (Text) field in DocType 'Notification Log'
+#. Label of the subject (Data) field in DocType 'Email Template'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/notification/notification.js:204
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:119
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
+msgid "Subject"
+msgstr ""
+
+#. Label of the subject_field (Data) field in DocType 'DocType'
+#. Label of the subject_field (Data) field in DocType 'Customize Form'
+#. Label of the subject_field (Select) field in DocType 'Calendar View'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+msgid "Subject Field"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1949
+msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Submission Queue"
+msgstr ""
+
+#. Label of the submit (Check) field in DocType 'Custom DocPerm'
+#. Label of the submit (Check) field in DocType 'DocPerm'
+#. Label of the submit (Check) field in DocType 'DocShare'
+#. Label of the submit (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2233
+msgctxt "Button in list view actions menu"
+msgid "Submit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:47
+msgctxt "Button in web form"
+msgid "Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/dialog.js:64
+msgctxt "Primary action in dialog"
+msgid "Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:97
+msgctxt "Primary action of prompt dialog"
+msgid "Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:227
+msgctxt "Submit password for Email Account"
+msgid "Submit"
+msgstr ""
+
+#. Label of the submit_after_import (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Submit After Import"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:39
+msgid "Submit an Issue"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:163
+msgctxt "Button in web form"
+msgid "Submit another response"
+msgstr ""
+
+#. Label of the button_label (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Submit button label"
+msgstr ""
+
+#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132
+msgid "Submit on Creation"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
+msgid "Submit this document to complete this step."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1221
+msgid "Submit this document to confirm"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2238
+msgctxt "Title of confirmation dialog"
+msgid "Submit {0} documents?"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/model/indicator.js:95
+#: frappe/public/js/frappe/ui/filters/filter.js:539
+#: frappe/website/doctype/web_form/templates/web_form.html:143
+msgid "Submitted"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:104
+msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/utils.js:176
+msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:10
+msgctxt "Freeze message while submitting a document"
+msgid "Submitting"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+msgid "Submitting {0}"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Subsidiary"
+msgstr ""
+
+#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Subtitle"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Activity Log'
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Label of the success (Check) field in DocType 'Data Import Log'
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/data_import/data_import.js:459
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/desk/doctype/bulk_update/bulk_update.js:31
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/public/js/frappe/form/grid.js:1172
+#: frappe/public/js/frappe/views/translation_manager.js:21
+#: frappe/templates/includes/login/login.js:230
+#: frappe/templates/includes/login/login.js:236
+#: frappe/templates/includes/login/login.js:269
+#: frappe/templates/includes/login/login.js:277
+#: frappe/templates/pages/integrations/gcalendar-success.html:9
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Success"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/success_action/success_action.json
+msgid "Success Action"
+msgstr ""
+
+#. Label of the success_message (Data) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Success Message"
+msgstr ""
+
+#. Label of the success_uri (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Success URI"
+msgstr ""
+
+#. Label of the success_url (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success URL"
+msgstr ""
+
+#. Label of the success_message (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success message"
+msgstr ""
+
+#. Label of the success_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success title"
+msgstr ""
+
+#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Successful Job Count"
+msgstr ""
+
+#: frappe/model/workflow.py:363
+msgid "Successful Transactions"
+msgstr ""
+
+#: frappe/model/rename_doc.py:698
+msgid "Successful: {0} to {1}"
+msgstr ""
+
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
+msgid "Successfully Updated"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:423
+msgid "Successfully imported {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:144
+msgid "Successfully imported {0} out of {1} records."
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.py:87
+msgid "Successfully reset onboarding status for all users."
+msgstr ""
+
+#: frappe/public/js/frappe/views/translation_manager.js:22
+msgid "Successfully updated translations"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:431
+msgid "Successfully updated {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:149
+msgid "Successfully updated {0} out of {1} records."
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.js:15
+msgid "Suggest Optimizations"
+msgstr ""
+
+#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Suggested Indexes"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:733
+msgid "Suggested Username: {0}"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:20
+msgid "Sum"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
+msgid "Sum of {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:88
+msgid "Summary"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the sunday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Sunday"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
+msgid "Suspend Sending"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:276
+msgid "Switch Camera"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:96
+#: frappe/public/js/frappe/ui/theme_switcher.js:11
+msgid "Switch Theme"
+msgstr ""
+
+#: frappe/templates/includes/navbar/navbar_login.html:17
+msgid "Switch To Desk"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:319
+msgid "Switch to Frappe CRM for smarter sales"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:281
+msgid "Switching Camera"
+msgstr ""
+
+#. Label of the symbol (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Symbol"
+msgstr ""
+
+#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
+#. Label of the sync (Section Break) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Sync"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
+msgid "Sync Calendar"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
+msgid "Sync Contacts"
+msgstr ""
+
+#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Sync events from Google as public"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:256
+msgid "Sync on Migrate"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
+msgid "Sync token was invalid and has been reset, Retry syncing."
+msgstr ""
+
+#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Sync with Google Calendar"
+msgstr ""
+
+#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Sync with Google Contacts"
+msgstr ""
+
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
+msgid "Sync {0} Fields"
+msgstr ""
+
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
+msgid "Synced Fields"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
+msgid "Syncing"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
+msgid "Syncing {0} of {1}"
+msgstr ""
+
+#: frappe/utils/data.py:2573
+msgid "Syntax Error"
+msgstr ""
+
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "System"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/public/js/frappe/ui/dropdown_console.js:4
+msgid "System Console"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:408
+msgid "System Generated Fields can not be renamed"
+msgstr ""
+
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "System Health"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "System Health Report"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "System Health Report Errors"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "System Health Report Failing Jobs"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "System Health Report Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "System Health Report Tables"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "System Health Report Workers"
+msgstr ""
+
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "System Logs"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/installed_applications/installed_applications.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/role_replication/role_replication.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json
+msgid "System Manager"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:38
+msgid "System Manager privileges required."
+msgstr ""
+
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "System Notification"
+msgstr ""
+
+#. Label of the system_page (Check) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "System Page"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "System Settings"
+msgstr ""
+
+#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
+#. 'Module Onboarding'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "System managers are allowed by default"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:5
+msgctxt "Number system"
+msgid "T"
+msgstr ""
+
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Tab Break"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:135
+msgid "Tab Label"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the table (Data) field in DocType 'System Health Report Tables'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/data_export/exporter.py:23
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Table"
+msgstr ""
+
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Table Break"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:73
+msgid "Table Field"
+msgstr ""
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Table Fieldname"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1204
+msgid "Table Fieldname Missing"
+msgstr ""
+
+#. Label of the table_html (HTML) field in DocType 'Version'
+#: frappe/core/doctype/version/version.json
+msgid "Table HTML"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Table MultiSelect"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:229
+msgid "Table Trimmed"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1171
+msgid "Table updated"
+msgstr ""
+
+#: frappe/model/document.py:1578
+msgid "Table {0} cannot be empty"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Tabloid"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/tag/tag.json
+msgid "Tag"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/tag_link/tag_link.json
+msgid "Tag Link"
+msgstr ""
+
+#: frappe/model/meta.py:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:81
+#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/list/list_sidebar.html:48
+#: frappe/public/js/frappe/list/list_sidebar.html:60
+#: frappe/public/js/frappe/list/list_sidebar.js:253
+#: frappe/public/js/frappe/model/meta.js:207
+#: frappe/public/js/frappe/model/model.js:133
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
+msgid "Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:220
+msgid "Take Photo"
+msgstr ""
+
+#. Label of the target (Data) field in DocType 'Portal Menu Item'
+#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
+msgid "Target"
+msgstr ""
+
+#. Label of the task (Select) field in DocType 'Workflow Transition Task'
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Task"
+msgstr ""
+
+#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks'
+#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json
+msgid "Tasks"
+msgstr ""
+
+#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
+#. Label of the team_members (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/www/about.html:45
+msgid "Team Members"
+msgstr ""
+
+#. Label of the team_members_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Team Members Heading"
+msgstr ""
+
+#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Team Members Subtitle"
+msgstr ""
+
+#. Label of the telemetry_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Telemetry"
+msgstr ""
+
+#. Label of the template (Link) field in DocType 'Auto Repeat'
+#. Label of the template (Code) field in DocType 'Address Template'
+#. Label of the template (Code) field in DocType 'Print Format Field Template'
+#. Label of the template (Code) field in DocType 'Web Template'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Template"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:483
+#: frappe/core/doctype/data_import/importer.py:610
+msgid "Template Error"
+msgstr ""
+
+#. Label of the template_file (Data) field in DocType 'Print Format Field
+#. Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+msgid "Template File"
+msgstr ""
+
+#. Label of the template_options (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Template Options"
+msgstr ""
+
+#. Label of the template_warnings (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Template Warnings"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
+msgid "Templates"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1042
+msgid "Temporarily Disabled"
+msgstr ""
+
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
+msgid "Test Data"
+msgstr ""
+
+#. Label of the test_job_id (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Test Job ID"
+msgstr ""
+
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
+msgid "Test Spanish"
+msgstr ""
+
+#: frappe/core/doctype/file/test_file.py:379
+msgid "Test_Folder"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Text"
+msgstr ""
+
+#. Label of the text_align (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Text Align"
+msgstr ""
+
+#. Label of the text_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Text Color"
+msgstr ""
+
+#. Label of the text_content (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Text Content"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Text Editor"
+msgstr ""
+
+#: frappe/templates/emails/password_reset.html:5
+msgid "Thank you"
+msgstr ""
+
+#: frappe/www/contact.py:39
+msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
+"Your query:\n\n"
+"{0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:147
+msgid "Thank you for spending your valuable time to fill this form"
+msgstr ""
+
+#: frappe/templates/emails/auto_reply.html:1
+msgid "Thank you for your email"
+msgstr ""
+
+#: frappe/website/doctype/help_article/templates/help_article.html:27
+msgid "Thank you for your feedback!"
+msgstr ""
+
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:16
+msgid "Thanks"
+msgstr ""
+
+#: frappe/templates/emails/auto_repeat_fail.html:3
+msgid "The Auto Repeat for this document has been disabled."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1194
+msgid "The CSV format is case sensitive"
+msgstr ""
+
+#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The Client ID obtained from the Google Cloud Console under \n"
+"\"APIs & Services\" > \"Credentials\"\n"
+""
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:219
+msgid "The Condition '{0}' is invalid"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:220
+msgid "The File URL you've entered is incorrect"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
+msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:162
+msgid "The application has been updated to a new version, please refresh this page"
+msgstr ""
+
+#. Description of the 'Application Name' (Data) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "The application name will be used in the Login page."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:323
+msgid "The attachments could not be correctly linked to the new document"
+msgstr ""
+
+#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The browser API key obtained from the Google Cloud Console under \n"
+"\"APIs & Services\" > \"Credentials\"\n"
+""
+msgstr ""
+
+#: frappe/database/database.py:474
+msgid "The changes have been reverted."
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1009
+msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:48
+msgid "The comment cannot be empty"
+msgstr ""
+
+#: frappe/templates/emails/workflow_action.html:9
+msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:687
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr ""
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:301
+msgid "The document could not be correctly assigned"
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:295
+msgid "The document has been assigned to {0}"
+msgstr ""
+
+#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
+#. Chart'
+#. Description of the 'Parent Document Type' (Link) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "The document type selected is a child table, so the parent document type is required."
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:110
+msgid "The field {0} is mandatory"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:157
+msgid "The fieldname you've specified in Attached To Field is invalid"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
+msgid "The following Assignment Days have been repeated: {0}"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1089
+msgid "The following values are invalid: {0}. Values must be one of {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1046
+msgid "The following values do not exist for {0}: {1}"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:89
+msgid "The limit has not set for the user type {0} in the site config file."
+msgstr ""
+
+#: frappe/templates/emails/login_with_email_link.html:21
+msgid "The link will expire in {0} minutes"
+msgstr ""
+
+#: frappe/www/login.py:194
+msgid "The link you trying to login is invalid or expired."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:125
+msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:132
+msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
+msgstr ""
+
+#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "The name that will appear in Google Calendar"
+msgstr ""
+
+#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "The next tour will start from where the user left off."
+msgstr ""
+
+#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "The number of seconds until the request expires"
+msgstr ""
+
+#: frappe/www/update-password.html:101
+msgid "The password of your account has expired."
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
+msgid "The process for deletion of {0} data associated with {1} has been initiated."
+msgstr ""
+
+#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The project number obtained from Google Cloud Console under \n"
+"\"IAM & Admin\" > \"Settings\"\n"
+""
+msgstr ""
+
+#: frappe/desk/utils.py:106
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1000
+msgid "The reset password link has been expired"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1002
+msgid "The reset password link has either been used before or is invalid"
+msgstr ""
+
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+msgid "The resource you are looking for is not available"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:114
+msgid "The role {0} should be a custom role."
+msgstr ""
+
+#: frappe/core/doctype/audit_trail/audit_trail.py:46
+msgid "The selected document {0} is not a {1}."
+msgstr ""
+
+#: frappe/utils/response.py:336
+msgid "The system is being updated. Please refresh again after a few moments."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:97
+msgid "The total number of user document types limit has been crossed."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/data.js:25
+msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
+msgstr ""
+
+#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "The webhook will be triggered if this expression is true"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183
+msgid "The {0} is already on auto repeat {1}"
+msgstr ""
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Website
+#. Settings'
+#. Label of the theme (Data) field in DocType 'Website Theme'
+#. Label of the theme_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Theme"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:130
+msgid "Theme Changed"
+msgstr ""
+
+#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
+#. Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Theme Configuration"
+msgstr ""
+
+#. Label of the theme_url (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Theme URL"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "There are no upcoming events for you."
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:3
+msgid "There are no {0} for this {1}, why don't you start one!"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:973
+msgid "There are {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:81
+#: frappe/website/doctype/web_form/web_form.js:318
+msgid "There can be only 9 Page Break fields in a Web Form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1444
+msgid "There can be only one Fold in a form"
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.py:183
+msgid "There is an error in your Address Template {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:162
+msgid "There is no data to be exported"
+msgstr ""
+
+#: frappe/model/workflow.py:170
+msgid "There is no task called \"{}\""
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "There is nothing new to show you right now."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
+msgid "There is some problem with the file url: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:970
+msgid "There is {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.py:156
+msgid "There must be atleast one permission rule."
+msgstr ""
+
+#: frappe/www/error.py:17
+msgid "There was an error building this page"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
+msgid "There was an error saving filters"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
+msgid "There were errors"
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:277
+msgid "There were errors while creating the document. Please try again."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:843
+msgid "There were errors while sending email. Please try again."
+msgstr ""
+
+#: frappe/model/naming.py:502
+msgid "There were some errors setting the name, please contact the administrator"
+msgstr ""
+
+#. Description of the 'Announcement Widget' (Text Editor) field in DocType
+#. 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "These announcements will appear inside a dismissible alert below the Navbar."
+msgstr ""
+
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
+#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "These settings are required if 'Custom' LDAP Directory is used"
+msgstr ""
+
+#. Description of the 'Defaults' (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
+msgstr ""
+
+#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
+msgid "Third Party Apps"
+msgstr ""
+
+#. Label of the third_party_authentication (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Third Party Authentication"
+msgstr ""
+
+#: frappe/geo/doctype/currency/currency.js:8
+msgid "This Currency is disabled. Enable to use in transactions"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
+msgid "This Kanban Board will be private"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr ""
+
+#: frappe/__init__.py:546
+msgid "This action is only allowed for {}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:117
+#: frappe/public/js/frappe/model/model.js:706
+msgid "This cannot be undone"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
+#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "This card will be available to all Users if this is set"
+msgstr ""
+
+#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "This chart will be available to all Users if this is set"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:212
+msgid "This doctype has no orphan fields to trim"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1055
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr ""
+
+#: frappe/model/delete_doc.py:153
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:8
+msgid "This document has been modified after the email was sent."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1305
+msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1102
+msgid "This document is already amended, you cannot ammend it again"
+msgstr ""
+
+#: frappe/model/document.py:475
+msgid "This document is currently locked and queued for execution. Please try again after some time."
+msgstr ""
+
+#: frappe/templates/emails/auto_repeat_fail.html:7
+msgid "This email is autogenerated"
+msgstr ""
+
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
+msgid "This feature can not be used as dependencies are missing.\n"
+"\t\t\t\tPlease contact your system manager to enable this by installing pycups!"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "This feature is brand new and still experimental"
+msgstr ""
+
+#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
+"myfield\n"
+"eval:doc.myfield=='My Value'\n"
+"eval:doc.age>18"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:525
+msgid "This file is attached to a protected document and cannot be deleted."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
+msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:20
+msgid "This file is public. It can be accessed without authentication."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1199
+msgid "This form has been modified after you have loaded it"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:2259
+msgid "This form is not editable due to a Workflow."
+msgstr ""
+
+#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
+#: frappe/contacts/doctype/address_template/address_template.json
+msgid "This format is used if country specific format is not found"
+msgstr ""
+
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
+msgid "This geolocation provider is not supported yet."
+msgstr ""
+
+#. Description of the 'Header' (HTML Editor) field in DocType 'Website
+#. Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "This goes above the slideshow."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
+msgid "This is a background report. Please set the appropriate filters and then generate a new one."
+msgstr ""
+
+#: frappe/utils/password_strength.py:158
+msgid "This is a top-10 common password."
+msgstr ""
+
+#: frappe/utils/password_strength.py:160
+msgid "This is a top-100 common password."
+msgstr ""
+
+#: frappe/utils/password_strength.py:162
+msgid "This is a very common password."
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.js:9
+msgid "This is a virtual doctype and data is cleared periodically."
+msgstr ""
+
+#: frappe/templates/emails/auto_reply.html:5
+msgid "This is an automatically generated reply"
+msgstr ""
+
+#: frappe/utils/password_strength.py:164
+msgid "This is similar to a commonly used password."
+msgstr ""
+
+#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "This is the number of the last created transaction with this prefix"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
+msgid "This link has already been activated for verification."
+msgstr ""
+
+#: frappe/utils/verified_command.py:49
+msgid "This link is invalid or expired. Please make sure you have pasted correctly."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:431
+msgid "This may get printed on multiple pages"
+msgstr ""
+
+#: frappe/utils/goal.py:109
+msgid "This month"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
+msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:57
+msgid "This report was generated on {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:861
+msgid "This report was generated {0}."
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
+msgid "This request has not yet been approved by the user."
+msgstr ""
+
+#: frappe/templates/includes/navbar/navbar_items.html:95
+msgid "This site is in read only mode, full functionality will be restored soon."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.js:73
+msgid "This site is running in developer mode. Any change made here will be updated in code."
+msgstr ""
+
+#: frappe/www/attribution.html:11
+msgid "This software is built on top of many open source packages."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:71
+msgid "This title will be used as the title of the webpage as well as in meta tags"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/base_input.js:129
+msgid "This value is fetched from {0}'s {1} field"
+msgstr ""
+
+#. Description of the 'Max Report Rows' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "This value specifies the max number of rows that can be rendered in report view."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:85
+msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
+msgstr ""
+
+#. Description of the 'Callback Message' (Small Text) field in DocType
+#. 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "This will be shown in a modal after routing"
+msgstr ""
+
+#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "This will be shown to the user in a dialog after routing to the report"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:23
+msgid "This will log out {0} from all other devices"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:3
+msgid "This will permanently remove your data."
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.js:103
+msgid "This will reset this tour and show it to all users. Are you sure?"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.js:15
+msgid "This will terminate the job immediately and might be dangerous, are you sure?"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1255
+msgid "Throttled"
+msgstr ""
+
+#. Label of the thumbnail_url (Small Text) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Thumbnail URL"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the thursday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Thursday"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the time (Datetime) field in DocType 'Recorder'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Time"
+msgstr ""
+
+#. Label of the time_format (Select) field in DocType 'Language'
+#. Label of the time_format (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Time Format"
+msgstr ""
+
+#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Time Interval"
+msgstr ""
+
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Time Series"
+msgstr ""
+
+#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Time Series Based On"
+msgstr ""
+
+#. Label of the time_taken (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Time Taken"
+msgstr ""
+
+#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Time Window (Seconds)"
+msgstr ""
+
+#. Label of the time_zone (Select) field in DocType 'System Settings'
+#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#. Label of the time_zone (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:407
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "Time Zone"
+msgstr ""
+
+#. Label of the time_zones (Text) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "Time Zones"
+msgstr ""
+
+#. Label of the time_format (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "Time format"
+msgstr ""
+
+#. Label of the time_in_queries (Float) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Time in Queries"
+msgstr ""
+
+#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Time in seconds to retain QR code image on server. Min:240"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
+msgid "Time series based on is required to create a dashboard chart"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/time.js:124
+msgid "Time {0} must be in format: {1}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Timed Out"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:64
+msgid "Timeless Night"
+msgstr ""
+
+#. Label of the timeline (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Timeline"
+msgstr ""
+
+#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Timeline DocType"
+msgstr ""
+
+#. Label of the timeline_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Timeline Field"
+msgstr ""
+
+#. Label of the timeline_links_sections (Section Break) field in DocType
+#. 'Communication'
+#. Label of the timeline_links (Table) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Timeline Links"
+msgstr ""
+
+#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Timeline Name"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1539
+msgid "Timeline field must be a Link or Dynamic Link"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1535
+msgid "Timeline field must be a valid fieldname"
+msgstr ""
+
+#. Label of the timeout (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Timeout"
+msgstr ""
+
+#. Label of the timeout (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Timeout (In Seconds)"
+msgstr ""
+
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+msgid "Timeseries"
+msgstr ""
+
+#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:28
+msgid "Timespan"
+msgstr ""
+
+#. Label of the timestamp (Datetime) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Timestamp"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:41
+msgid "Tip: Try the new dropdown console using"
+msgstr ""
+
+#. Label of the title (Data) field in DocType 'DocType State'
+#. Label of the method (Data) field in DocType 'Error Log'
+#. Label of the title (Data) field in DocType 'Page'
+#. Label of the title (Data) field in DocType 'Changelog Feed'
+#. Label of the title (Data) field in DocType 'Form Tour'
+#. Label of the title (Data) field in DocType 'Form Tour Step'
+#. Label of the title (Data) field in DocType 'Module Onboarding'
+#. Label of the title (Data) field in DocType 'Note'
+#. Label of the title (Data) field in DocType 'Onboarding Step'
+#. Label of the title (Data) field in DocType 'System Health Report Errors'
+#. Label of the title (Data) field in DocType 'Workspace'
+#. Label of the title (Data) field in DocType 'Email Group'
+#. Label of the title (Data) field in DocType 'Discussion Topic'
+#. Label of the title (Data) field in DocType 'Help Article'
+#. Label of the title (Data) field in DocType 'Portal Menu Item'
+#. Label of the title (Data) field in DocType 'Web Form'
+#. Label of the list_title (Data) field in DocType 'Web Form'
+#. Label of the title (Data) field in DocType 'Web Page'
+#. Label of the meta_title (Data) field in DocType 'Web Page'
+#. Label of the title (Data) field in DocType 'Website Sidebar'
+#. Label of the title (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/page/page.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:393
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
+msgid "Title"
+msgstr ""
+
+#. Label of the title_field (Data) field in DocType 'DocType'
+#. Label of the title_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Title Field"
+msgstr ""
+
+#. Label of the title_prefix (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Title Prefix"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1476
+msgid "Title field must be a valid fieldname"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:70
+msgid "Title of the page"
+msgstr ""
+
+#. Label of the recipients (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
+msgid "To"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:53
+msgctxt "Email Recipients"
+msgid "To"
+msgstr ""
+
+#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:14
+msgid "To Date"
+msgstr ""
+
+#. Label of the to_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "To Date Field"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo_list.js:6
+msgid "To Do"
+msgstr ""
+
+#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
+"New {{ doc.doctype }} #{{ doc.name }}
"
+msgstr ""
+
+#. Description of the 'Subject' (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
+""
+msgstr ""
+
+#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "To add dynamic values from the document, use jinja tags like\n\n"
+"\n"
+"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n"
+"
"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
+msgid "To allow more reports update limit in System Settings."
+msgstr ""
+
+#. Label of the section_break_10 (Section Break) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "To and CC"
+msgstr ""
+
+#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
+#. Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
+msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
+msgstr ""
+
+#: frappe/www/login.html:76
+msgid "To enable it follow the instructions in the following link: {0}"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.js:40
+msgid "To enable server scripts, read the {0}."
+msgstr ""
+
+#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
+msgid "To export this step as JSON, link it in a Onboarding document and save the document."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:126
+msgid "To generate password click {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:862
+msgid "To get the updated report, click on {0}."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:139
+msgid "To know more click {0}"
+msgstr ""
+
+#. Description of the 'Console' (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "To print output use print(text)"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:291
+msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
+msgid "To use Google Calendar, enable {0}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
+msgid "To use Google Contacts, enable {0}."
+msgstr ""
+
+#. Description of the 'Enable Google indexing' (Check) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "To use Google Indexing, enable Google Settings."
+msgstr ""
+
+#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "To use Slack Channel, add a Slack Webhook URL."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:44
+msgid "To version"
+msgstr ""
+
+#. Label of a shortcut in the Tools Workspace
+#. Name of a DocType
+#. Name of a report
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
+msgid "ToDo"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/date.js:58
+#: frappe/public/js/frappe/ui/filters/filter.js:733
+#: frappe/public/js/frappe/views/calendar/calendar.js:274
+msgid "Today"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1572
+msgid "Toggle Chart"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "Toggle Full Width"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:33
+msgid "Toggle Grid View"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/page.js:201
+#: frappe/public/js/frappe/ui/page.js:203
+#: frappe/public/js/frappe/views/reports/report_view.js:1576
+msgid "Toggle Sidebar"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1966
+msgctxt "Button in list view menu"
+msgid "Toggle Sidebar"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "Toggle Theme"
+msgstr ""
+
+#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Token Cache"
+msgstr ""
+
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
+#. Label of the token_type (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Token Type"
+msgstr ""
+
+#. Label of the token_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Token URI"
+msgstr ""
+
+#: frappe/utils/oauth.py:184
+msgid "Token is missing"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:739
+msgid "Tomorrow"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+#: frappe/model/workflow.py:310
+msgid "Too Many Documents"
+msgstr ""
+
+#: frappe/rate_limiter.py:101
+msgid "Too Many Requests"
+msgstr ""
+
+#: frappe/database/database.py:473
+msgid "Too many changes to database in single action."
+msgstr ""
+
+#: frappe/utils/background_jobs.py:730
+msgid "Too many queued background jobs ({0}). Please retry after some time."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1043
+msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
+msgstr ""
+
+#. Name of a Workspace
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Tools"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
+msgid "Top"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
+msgid "Top 10"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "Top Bar Item"
+msgstr ""
+
+#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Top Bar Items"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
+msgid "Top Center"
+msgstr ""
+
+#. Label of the top_errors (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Top Errors"
+msgstr ""
+
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
+msgid "Top Left"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
+msgid "Top Right"
+msgstr ""
+
+#. Label of the topic (Link) field in DocType 'Discussion Reply'
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+msgid "Topic"
+msgstr ""
+
+#: frappe/desk/query_report.py:587
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
+#: frappe/public/js/frappe/views/reports/report_view.js:1553
+msgid "Total"
+msgstr ""
+
+#. Label of the total_background_workers (Int) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Background Workers"
+msgstr ""
+
+#. Label of the total_errors (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Errors (last 1 day)"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:259
+msgid "Total Images"
+msgstr ""
+
+#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Outgoing Emails"
+msgstr ""
+
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Total Subscribers"
+msgstr ""
+
+#. Label of the total_users (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Users"
+msgstr ""
+
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Total Working Time"
+msgstr ""
+
+#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Total number of emails to sync in initial sync process"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
+msgid "Total:"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1258
+msgid "Totals"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1233
+msgid "Totals Row"
+msgstr ""
+
+#. Label of the trace_id (Data) field in DocType 'Error Log'
+#: frappe/core/doctype/error_log/error_log.json
+msgid "Trace ID"
+msgstr ""
+
+#. Label of the traceback (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "Traceback"
+msgstr ""
+
+#. Label of the track_changes (Check) field in DocType 'DocType'
+#. Label of the track_changes (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Track Changes"
+msgstr ""
+
+#. Label of the track_email_status (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Track Email Status"
+msgstr ""
+
+#. Label of the track_field (Data) field in DocType 'Milestone'
+#: frappe/automation/doctype/milestone/milestone.json
+msgid "Track Field"
+msgstr ""
+
+#. Label of the track_seen (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Track Seen"
+msgstr ""
+
+#. Label of the track_steps (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Track Steps"
+msgstr ""
+
+#. Label of the track_views (Check) field in DocType 'DocType'
+#. Label of the track_views (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Track Views"
+msgstr ""
+
+#. Description of the 'Track Email Status' (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Track if your email has been opened by the recipient.\n"
+"
\n"
+"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
+msgstr ""
+
+#. Description of a DocType
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Track milestones for any document"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "Tracking"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1821
+msgid "Tracking URL generated and copied to clipboard"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:31
+msgid "Transgender"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:19
+msgid "Transition Properties"
+msgstr ""
+
+#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Transition Rules"
+msgstr ""
+
+#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Transition Tasks"
+msgstr ""
+
+#. Label of the transitions (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Transitions"
+msgstr ""
+
+#. Label of the translatable (Check) field in DocType 'DocField'
+#. Label of the translatable (Check) field in DocType 'Custom Field'
+#. Label of the translatable (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Translatable"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
+msgid "Translate Data"
+msgstr ""
+
+#. Label of the translated_doctype (Check) field in DocType 'DocType'
+#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Translate Link Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1658
+msgid "Translate values"
+msgstr ""
+
+#: frappe/public/js/frappe/views/translation_manager.js:11
+msgid "Translate {0}"
+msgstr ""
+
+#. Label of the translated_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Translated Text"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/translation/translation.json
+msgid "Translation"
+msgstr ""
+
+#: frappe/public/js/frappe/views/translation_manager.js:46
+msgid "Translations"
+msgstr ""
+
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
+#. Option for the 'Email Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Trash"
+msgstr ""
+
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Tree"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:210
+msgid "Tree View"
+msgstr ""
+
+#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Tree structures are implemented using Nested Set"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:19
+msgid "Tree view is not available for {0}"
+msgstr ""
+
+#. Label of the method (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Trigger Method"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:196
+msgid "Trigger Primary Action"
+msgstr ""
+
+#: frappe/tests/test_translate.py:55
+msgid "Trigger caching"
+msgstr ""
+
+#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:144
+msgid "Trim Table"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
+msgid "Try Again"
+msgstr ""
+
+#. Label of the try_naming_series (Data) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Try a Naming Series"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:202
+#: frappe/printing/page/print/print.js:208
+msgid "Try the new Print Designer"
+msgstr ""
+
+#: frappe/utils/password_strength.py:106
+msgid "Try to avoid repeated words and characters"
+msgstr ""
+
+#: frappe/utils/password_strength.py:98
+msgid "Try to use a longer keyboard pattern with more turns"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the tuesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Tuesday"
+msgstr ""
+
+#. Label of the two_factor_auth (Check) field in DocType 'Role'
+#. Label of the two_factor_authentication (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Two Factor Authentication"
+msgstr ""
+
+#. Label of the two_factor_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Two Factor Authentication method"
+msgstr ""
+
+#. Label of the communication_medium (Select) field in DocType 'Communication'
+#. Label of the fieldtype (Select) field in DocType 'DocField'
+#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
+#. Label of the type (Data) field in DocType 'Console Log'
+#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Desktop Icon'
+#. Label of the type (Select) field in DocType 'Notification Log'
+#. Label of the type (Select) field in DocType 'Number Card'
+#. Label of the type (Select) field in DocType 'System Console'
+#. Label of the type (Select) field in DocType 'Workspace'
+#. Label of the type (Select) field in DocType 'Workspace Link'
+#. Label of the type (Select) field in DocType 'Workspace Shortcut'
+#. Label of the type (Select) field in DocType 'Web Template'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/file/file_view.js:370
+#: frappe/public/js/frappe/views/workspace/workspace.js:399
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/www/attribution.html:35
+msgid "Type"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/comment.js:90
+msgid "Type a reply / comment"
+msgstr ""
+
+#: frappe/templates/includes/search_template.html:51
+msgid "Type something in the search box to search"
+msgstr ""
+
+#: frappe/templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
+msgid "Type title"
+msgstr ""
+
+#: frappe/templates/discussions/discussions.js:341
+msgid "Type your reply here..."
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:143
+msgid "Type:"
+msgstr ""
+
+#. Label of the ui_tour (Check) field in DocType 'Form Tour'
+#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "UI Tour"
+msgstr ""
+
+#. Label of the uid (Int) field in DocType 'Communication'
+#. Label of the uid (Data) field in DocType 'Email Flag Queue'
+#. Label of the uid (Data) field in DocType 'Unhandled Email'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "UID"
+msgstr ""
+
+#. Label of the uidnext (Int) field in DocType 'Email Account'
+#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "UIDNEXT"
+msgstr ""
+
+#. Label of the uidvalidity (Data) field in DocType 'Email Account'
+#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "UIDVALIDITY"
+msgstr ""
+
+#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "UNSEEN"
+msgstr ""
+
+#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
+"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#. Label of the url (Data) field in DocType 'Workspace Shortcut'
+#. Label of the url (Small Text) field in DocType 'Integration Request'
+#. Label of the url (Text) field in DocType 'Webhook Request Log'
+#. Label of the url (Data) field in DocType 'Top Bar Item'
+#. Label of the url (Data) field in DocType 'Website Slideshow Item'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:471
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+msgid "URL"
+msgstr ""
+
+#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "URL for documentation or help"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:231
+msgid "URL must start with http:// or https://"
+msgstr ""
+
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:84
+msgid "URL of the page"
+msgstr ""
+
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
+#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+msgid "URL to go to on clicking the slideshow image"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+msgid "UTM Campaign"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/utm_medium/utm_medium.json
+msgid "UTM Medium"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "UTM Source"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "UUID"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:79
+msgid "Un-following document {0}"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67
+msgid "Unable to find DocType {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:338
+msgid "Unable to load camera."
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:230
+msgid "Unable to load: {0}"
+msgstr ""
+
+#: frappe/utils/csvutils.py:37
+msgid "Unable to open attached file. Did you export it as CSV?"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
+msgid "Unable to read file format for {0}"
+msgstr ""
+
+#: frappe/core/doctype/communication/email.py:180
+msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:450
+msgid "Unable to update event"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:489
+msgid "Unable to write file format for {0}"
+msgstr ""
+
+#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Unassign Condition"
+msgstr ""
+
+#: frappe/app.py:399
+msgid "Uncaught Exception"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:103
+msgid "Unchanged"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:518
+msgid "Undo"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:526
+msgid "Undo last action"
+msgstr ""
+
+#: frappe/database/query.py:1497
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
+#: frappe/public/js/frappe/form/toolbar.js:879
+msgid "Unfollow"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Unhandled Email"
+msgstr ""
+
+#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Unhandled Emails"
+msgstr ""
+
+#. Label of the unique (Check) field in DocType 'DocField'
+#. Label of the unique (Check) field in DocType 'Custom Field'
+#. Label of the unique (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Unique"
+msgstr ""
+
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
+#: frappe/website/report/website_analytics/website_analytics.js:60
+msgid "Unknown"
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:209
+msgid "Unknown Column: {0}"
+msgstr ""
+
+#: frappe/utils/data.py:1256
+msgid "Unknown Rounding Method: {}"
+msgstr ""
+
+#: frappe/auth.py:319
+msgid "Unknown User"
+msgstr ""
+
+#: frappe/utils/csvutils.py:54
+msgid "Unknown file encoding. Tried to use: {0}"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.js:7
+msgid "Unlock Reference Document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:633
+#: frappe/website/doctype/web_form/web_form.js:86
+msgid "Unpublish"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+msgid "Unread"
+msgstr ""
+
+#. Label of the unread_notification_sent (Check) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Unread Notification Sent"
+msgstr ""
+
+#: frappe/utils/safe_exec.py:498
+msgid "Unsafe SQL query"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+msgid "Unselect All"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Unshared"
+msgstr ""
+
+#: frappe/email/queue.py:67
+msgid "Unsubscribe"
+msgstr ""
+
+#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Unsubscribe Method"
+msgstr ""
+
+#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Unsubscribe Params"
+msgstr ""
+
+#. Label of the unsubscribed (Check) field in DocType 'Contact'
+#. Label of the unsubscribed (Check) field in DocType 'User'
+#. Label of the unsubscribed (Check) field in DocType 'Email Group Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/queue.py:123
+msgid "Unsubscribed"
+msgstr ""
+
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:72
+msgid "Untitled Column"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:38
+msgid "Unzip"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:132
+msgid "Unzipped {0} files"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:125
+msgid "Unzipping files..."
+msgstr ""
+
+#: frappe/desk/doctype/event/event.py:273
+msgid "Upcoming Events for Today"
+msgstr ""
+
+#. Label of the update (Button) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/data_import/data_import_list.js:36
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
+#: frappe/custom/doctype/customize_form/customize_form.js:438
+#: frappe/desk/doctype/bulk_update/bulk_update.js:15
+#: frappe/printing/page/print_format_builder/print_format_builder.js:447
+#: frappe/printing/page/print_format_builder/print_format_builder.js:507
+#: frappe/printing/page/print_format_builder/print_format_builder.js:678
+#: frappe/printing/page/print_format_builder/print_format_builder.js:765
+#: frappe/public/js/frappe/form/grid_row.js:428
+msgid "Update"
+msgstr ""
+
+#. Label of the update_amendment_naming (Button) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Update Amendment Naming"
+msgstr ""
+
+#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Update Existing Records"
+msgstr ""
+
+#. Label of the update_field (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Update Field"
+msgstr ""
+
+#: frappe/core/doctype/installed_applications/installed_applications.js:6
+#: frappe/core/doctype/installed_applications/installed_applications.js:13
+msgid "Update Hooks Resolution Order"
+msgstr ""
+
+#: frappe/core/doctype/installed_applications/installed_applications.js:45
+msgid "Update Order"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:494
+msgid "Update Password"
+msgstr ""
+
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
+#. Label of the update_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Update Series Counter"
+msgstr ""
+
+#. Label of the update_series_start (Button) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Update Series Number"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Update Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/views/translation_manager.js:13
+msgid "Update Translations"
+msgstr ""
+
+#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
+#. Label of the update_value (Data) field in DocType 'Workflow Document State'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Update Value"
+msgstr ""
+
+#: frappe/utils/change_log.py:381
+msgid "Update from Frappe Cloud"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:375
+msgid "Update {0} records"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
+#: frappe/public/js/frappe/web_form/web_form.js:451
+msgid "Updated"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.js:32
+msgid "Updated Successfully"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:446
+msgid "Updated To A New Version 🎉"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:372
+msgid "Updated successfully"
+msgstr ""
+
+#: frappe/utils/response.py:335
+msgid "Updating"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:11
+msgctxt "Freeze message while updating a document"
+msgid "Updating"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue_list.js:49
+msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
+msgstr ""
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
+msgid "Updating counter may lead to document name conflicts if not done properly"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.py:23
+msgid "Updating global settings"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
+msgid "Updating naming series options"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:136
+msgid "Updating related fields..."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+msgid "Updating {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:36
+msgid "Updating {0} of {1}, {2}"
+msgstr ""
+
+#: frappe/public/js/billing.bundle.js:131
+msgid "Upgrade plan"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:331
+msgid "Upgrade your support experience with Frappe Helpdesk"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
+msgid "Upload"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
+msgid "Upload Image"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215
+msgid "Upload file"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218
+msgid "Upload {0} files"
+msgstr ""
+
+#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Uploaded To Dropbox"
+msgstr ""
+
+#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Uploaded To Google Drive"
+msgstr ""
+
+#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#, python-format
+msgid "Use % for any non empty value."
+msgstr ""
+
+#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use ASCII encoding for password"
+msgstr ""
+
+#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Use First Day of Period"
+msgstr ""
+
+#. Label of the use_html (Check) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Use HTML"
+msgstr ""
+
+#. Label of the use_imap (Check) field in DocType 'Email Account'
+#. Label of the use_imap (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use IMAP"
+msgstr ""
+
+#. Label of the use_number_format_from_currency (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Use Number Format from Currency"
+msgstr ""
+
+#. Label of the use_post (Check) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Use POST"
+msgstr ""
+
+#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Use Report Chart"
+msgstr ""
+
+#. Label of the use_ssl (Check) field in DocType 'Email Account'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
+#. Label of the use_ssl (Check) field in DocType 'Email Domain'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use SSL"
+msgstr ""
+
+#. Label of the use_starttls (Check) field in DocType 'Email Account'
+#. Label of the use_starttls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use STARTTLS"
+msgstr ""
+
+#. Label of the use_tls (Check) field in DocType 'Email Account'
+#. Label of the use_tls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use TLS"
+msgstr ""
+
+#: frappe/utils/password_strength.py:44
+msgid "Use a few words, avoid common phrases."
+msgstr ""
+
+#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use different Email ID"
+msgstr ""
+
+#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Use if the default settings don't seem to detect your data correctly"
+msgstr ""
+
+#: frappe/model/db_query.py:411
+msgid "Use of sub-query or function is restricted"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:292
+msgid "Use the new Print Format Builder"
+msgstr ""
+
+#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Use this fieldname to generate title"
+msgstr ""
+
+#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use this, for example, if all sent emails should also be send to an archive."
+msgstr ""
+
+#. Label of the used_oauth (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
+msgid "Used OAuth"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Assignment Rule User'
+#. Label of the user (Link) field in DocType 'Auto Repeat User'
+#. Label of the user (Link) field in DocType 'Reminder'
+#. Label of the user (Link) field in DocType 'Access Log'
+#. Label of the user (Link) field in DocType 'Activity Log'
+#. Label of the user (Link) field in DocType 'API Request Log'
+#. Label of the user (Link) field in DocType 'Communication'
+#. Label of the user (Link) field in DocType 'DocShare'
+#. Label of the user (Link) field in DocType 'Log Setting User'
+#. Label of the user (Link) field in DocType 'Permission Inspector'
+#. Name of a DocType
+#. Label of the user (Link) field in DocType 'User Group Member'
+#. Label of the user (Link) field in DocType 'User Invitation'
+#. Label of the user (Link) field in DocType 'User Permission'
+#. Label of a Link in the Users Workspace
+#. Label of a shortcut in the Users Workspace
+#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Note Seen By'
+#. Label of the user (Link) field in DocType 'Notification Settings'
+#. Label of the user (Link) field in DocType 'Route History'
+#. Label of the user (Link) field in DocType 'Document Follow'
+#. Label of the user (Link) field in DocType 'Google Calendar'
+#. Label of the user (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the user (Link) field in DocType 'OAuth Bearer Token'
+#. Label of the user (Link) field in DocType 'OAuth Client'
+#. Label of the user (Link) field in DocType 'Token Cache'
+#. Label of the user (Link) field in DocType 'Webhook Request Log'
+#. Label of the user (Link) field in DocType 'Personal Data Download Request'
+#. Label of the user (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:3
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "User"
+msgstr ""
+
+#: frappe/core/doctype/has_role/has_role.py:25
+msgid "User '{0}' already has the role '{1}'"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/report/user_activity_report.json
+msgid "User Activity Report"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/report/user_activity_report_without_sort.json
+msgid "User Activity Report Without Sort"
+msgstr ""
+
+#. Label of the user_agent (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "User Agent"
+msgstr ""
+
+#. Label of the in_create (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "User Cannot Create"
+msgstr ""
+
+#. Label of the read_only (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "User Cannot Search"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:550
+msgid "User Changed"
+msgstr ""
+
+#. Label of the defaults (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "User Defaults"
+msgstr ""
+
+#. Label of the user_details_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "User Details"
+msgstr ""
+
+#. Name of a report
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
+msgid "User Doctype Permissions"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "User Document Type"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:98
+msgid "User Document Types Limit Exceeded"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_email/user_email.json
+msgid "User Email"
+msgstr ""
+
+#. Label of the user_emails (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "User Emails"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_group/user_group.json
+msgid "User Group"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_group_member/user_group_member.json
+msgid "User Group Member"
+msgstr ""
+
+#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
+#. Group'
+#: frappe/core/doctype/user_group/user_group.json
+msgid "User Group Members"
+msgstr ""
+
+#. Label of the userid (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user_social_login/user_social_login.json
+msgid "User ID"
+msgstr ""
+
+#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "User ID Property"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "User Id"
+msgstr ""
+
+#. Label of the user_id_field (Select) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "User Id Field"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:283
+msgid "User Id Field is mandatory in the user type {0}"
+msgstr ""
+
+#. Label of the user_image (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "User Image"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "User Invitation"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
+msgid "User Menu"
+msgstr ""
+
+#. Label of the user_name (Data) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+msgid "User Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "User Permission"
+msgstr ""
+
+#. Label of a Link in the Users Workspace
+#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/workspace/users/users.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
+#: frappe/public/js/frappe/views/reports/report_view.js:1761
+msgid "User Permissions"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1924
+msgctxt "Button in list view menu"
+msgid "User Permissions"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "User Permissions are used to limit users to specific records."
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:124
+msgid "User Permissions created successfully"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
+#: frappe/core/doctype/user_role/user_role.json
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
+msgid "User Role"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+msgid "User Role Profile"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+msgid "User Select Document Type"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "User Settings"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_social_login/user_social_login.json
+msgid "User Social Login"
+msgstr ""
+
+#. Label of the _user_tags (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "User Tags"
+msgstr ""
+
+#. Label of the user_type (Link) field in DocType 'User'
+#. Name of a DocType
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type/user_type.py:83
+msgid "User Type"
+msgstr ""
+
+#. Label of the user_type_modules (Table) field in DocType 'User Type'
+#. Name of a DocType
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+msgid "User Type Module"
+msgstr ""
+
+#. Description of the 'Allow Login using Mobile Number' (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "User can login using Email id or Mobile number"
+msgstr ""
+
+#. Description of the 'Allow Login using User Name' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "User can login using Email id or User Name"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:292
+msgid "User does not exist."
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:83
+msgid "User does not have permission to create the new {0}"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:102
+msgid "User is disabled"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:56
+msgid "User is mandatory for Share"
+msgstr ""
+
+#. Label of the user_must_always_select (Check) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "User must always select"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission.py:60
+msgid "User permission already exists"
+msgstr ""
+
+#: frappe/www/login.py:171
+msgid "User with email address {0} does not exist"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
+msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:538
+msgid "User {0} cannot be deleted"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:328
+msgid "User {0} cannot be disabled"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:611
+msgid "User {0} cannot be renamed"
+msgstr ""
+
+#: frappe/permissions.py:139
+msgid "User {0} does not have access to this document"
+msgstr ""
+
+#: frappe/permissions.py:162
+msgid "User {0} does not have doctype access via role permission for document {1}"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:275
+msgid "User {0} does not have the permission to create a Workspace."
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:1
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
+msgid "User {0} has requested for data deletion"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1384
+msgid "User {0} impersonated as {1}"
+msgstr ""
+
+#: frappe/utils/oauth.py:269
+msgid "User {0} is disabled"
+msgstr ""
+
+#: frappe/sessions.py:243
+msgid "User {0} is disabled. Please contact your System Manager."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:104
+msgid "User {0} is not permitted to access this document."
+msgstr ""
+
+#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Userinfo URI"
+msgstr ""
+
+#. Label of the username (Data) field in DocType 'User'
+#. Label of the username (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/www/login.py:110
+msgid "Username"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:700
+msgid "Username {0} already exists"
+msgstr ""
+
+#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
+#. Name of a Workspace
+#. Label of a Card Break in the Users Workspace
+#. Label of the users_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Users"
+msgstr ""
+
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:355
+msgid "Users with role {0}:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:70
+msgid "Uses system's theme to switch between light and dark mode"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:154
+msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
+msgstr ""
+
+#. Label of the utilization (Percent) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Utilization"
+msgstr ""
+
+#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Utilization %"
+msgstr ""
+
+#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Valid"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:52
+#: frappe/templates/includes/login/login.js:65
+msgid "Valid Login id required."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:39
+msgid "Valid email and name required"
+msgstr ""
+
+#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Validate Field"
+msgstr ""
+
+#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Validate Frappe Mail Settings"
+msgstr ""
+
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Account'
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Domain'
+#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType
+#. 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Validate SSL Certificate"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:384
+msgid "Validation Error"
+msgstr ""
+
+#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Validity"
+msgstr ""
+
+#. Label of the value (Data) field in DocType 'Milestone'
+#. Label of the defvalue (Text) field in DocType 'DefaultValue'
+#. Label of the value (Data) field in DocType 'Document Naming Rule Condition'
+#. Label of the value (Data) field in DocType 'SMS Parameter'
+#. Label of the value (Data) field in DocType 'Query Parameters'
+#. Label of the value (Small Text) field in DocType 'Webhook Header'
+#. Label of the value (Text) field in DocType 'Website Meta Tag'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/public/js/frappe/list/bulk_operations.js:336
+#: frappe/public/js/frappe/list/bulk_operations.js:398
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
+msgid "Value"
+msgstr ""
+
+#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Value Based On"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Value Change"
+msgstr ""
+
+#. Label of the value_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Value Changed"
+msgstr ""
+
+#. Label of the property_value (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Value To Be Set"
+msgstr ""
+
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
+msgid "Value cannot be changed for {0}"
+msgstr ""
+
+#: frappe/model/document.py:781
+msgid "Value cannot be negative for"
+msgstr ""
+
+#: frappe/model/document.py:785
+msgid "Value cannot be negative for {0}: {1}"
+msgstr ""
+
+#: frappe/custom/doctype/property_setter/property_setter.js:7
+msgid "Value for a check field can be either 0 or 1"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:616
+msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
+msgstr ""
+
+#: frappe/model/base_document.py:502
+msgid "Value for {0} cannot be a list"
+msgstr ""
+
+#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Value from this field will be set as the due date in the ToDo"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:714
+msgid "Value must be one of {0}"
+msgstr ""
+
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
+#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Value to Validate"
+msgstr ""
+
+#: frappe/model/base_document.py:1185
+msgid "Value too big"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:727
+msgid "Value {0} missing for {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
+msgid "Value {0} must be in the valid duration format: d h m s"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:745
+#: frappe/core/doctype/data_import/importer.py:760
+msgid "Value {0} must in {1} format"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:9
+msgid "Values Changed"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Verdana"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:333
+msgid "Verification"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357
+msgid "Verification Code"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:10
+msgid "Verification Link"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:383
+msgid "Verification code email not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/twofactor.py:248
+msgid "Verification code has been sent to your registered email address."
+msgstr ""
+
+#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Verified"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:359
+#: frappe/templates/includes/login/login.js:337
+msgid "Verify"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:358
+msgid "Verify Password"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:171
+msgid "Verifying..."
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/version/version.json
+msgid "Version"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:166
+msgid "Version Updated"
+msgstr ""
+
+#. Label of the video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Video URL"
+msgstr ""
+
+#. Label of the view_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "View"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:60
+#: frappe/public/js/frappe/form/success_action.js:89
+msgid "View All"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:580
+msgid "View Audit Trail"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:144
+msgid "View Doctype Permissions"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:4
+msgid "View File"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:220
+msgid "View Full Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:486
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
+msgid "View List"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/view_log/view_log.json
+msgid "View Log"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:135
+#: frappe/core/doctype/user_permission/user_permission.js:24
+msgid "View Permitted Documents"
+msgstr ""
+
+#. Label of the view_properties (Button) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "View Properties (via Customize Form)"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "View Report"
+msgstr ""
+
+#. Label of the view_settings (Section Break) field in DocType 'DocType'
+#. Label of the view_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "View Settings"
+msgstr ""
+
+#. Label of the view_switcher (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "View Switcher"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.js:16
+msgid "View Website"
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:12
+msgid "View document"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:60
+msgid "View report in your browser"
+msgstr ""
+
+#: frappe/templates/emails/print_link.html:2
+msgid "View this in your browser"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:478
+msgctxt "Button in web form"
+msgid "View your response"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
+#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
+#: frappe/desk/doctype/dashboard/dashboard_list.js:10
+msgid "View {0}"
+msgstr ""
+
+#. Label of the viewed_by (Data) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
+msgid "Viewed By"
+msgstr ""
+
+#. Group in DocType's connections
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/workspace/build/build.json
+msgid "Views"
+msgstr ""
+
+#. Label of the is_virtual (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Virtual"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:76
+msgid "Virtual DocType {} requires a static method called {} found {}"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:89
+msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
+msgstr ""
+
+#. Label of the visibility_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Visibility"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41
+msgid "Visible to website/portal users."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Visit"
+msgstr ""
+
+#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
+msgid "Visit Web Page"
+msgstr ""
+
+#. Label of the visitor_id (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "Visitor ID"
+msgstr ""
+
+#: frappe/templates/discussions/reply_section.html:39
+msgid "Want to discuss?"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Warehouse"
+msgstr ""
+
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Warning"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:217
+msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1126
+msgid "Warning: Naming is not set"
+msgstr ""
+
+#: frappe/public/js/frappe/model/meta.js:182
+msgid "Warning: Unable to find {0} in any table related to {1}"
+msgstr ""
+
+#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
+msgstr ""
+
+#: frappe/website/doctype/help_article/templates/help_article.html:24
+msgid "Was this article helpful?"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
+msgid "Watch Tutorial"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Watch Video"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.js:34
+msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:2
+msgid "We have received a request for deletion of {0} data associated with: {1}"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:2
+msgid "We have received a request from you to download your {0} data associated with: {1}"
+msgstr ""
+
+#: frappe/www/attribution.html:12
+msgid "We would like to thank the authors of these packages for their contribution."
+msgstr ""
+
+#: frappe/www/contact.py:50
+msgid "We've received your query!"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:87
+msgid "Weak"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#. Label of a shortcut in the Website Workspace
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/workspace/website/website.json
+msgid "Web Form"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Web Form Field"
+msgstr ""
+
+#. Label of the web_form_fields (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Web Form Fields"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+msgid "Web Form List Column"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#. Label of a shortcut in the Website Workspace
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json
+msgid "Web Page"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Web Page Block"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1749
+msgid "Web Page URL"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "Web Page View"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "Web Site"
+msgstr ""
+
+#. Label of the web_template (Link) field in DocType 'Web Page Block'
+#. Name of a DocType
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Web Template"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Web Template Field"
+msgstr ""
+
+#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Web Template Values"
+msgstr ""
+
+#: frappe/utils/jinja_globals.py:48
+msgid "Web Template is not specified"
+msgstr ""
+
+#. Label of the web_view (Tab Break) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Web View"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
+#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Webhook"
+msgstr ""
+
+#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook'
+#. Name of a DocType
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+msgid "Webhook Data"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+msgid "Webhook Header"
+msgstr ""
+
+#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Webhook Headers"
+msgstr ""
+
+#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Webhook Request"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+msgid "Webhook Request Log"
+msgstr ""
+
+#. Label of the webhook_secret (Password) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Webhook Secret"
+msgstr ""
+
+#. Label of the sb_security (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Webhook Security"
+msgstr ""
+
+#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Webhook Trigger"
+msgstr ""
+
+#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+msgid "Webhook URL"
+msgstr ""
+
+#. Group in Module Def's connections
+#. Name of a Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/public/js/frappe/ui/apps_switcher.js:125
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+#: frappe/website/workspace/website/website.json
+msgid "Website"
+msgstr ""
+
+#. Name of a report
+#: frappe/website/report/website_analytics/website_analytics.json
+msgid "Website Analytics"
+msgstr ""
+
+#. Name of a role
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Website Manager"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
+msgid "Website Meta Tag"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/website/workspace/website/website.json
+msgid "Website Route Meta"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
+msgid "Website Route Redirect"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/workspace/website/website.json
+msgid "Website Script"
+msgstr ""
+
+#. Label of the website_search_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Website Search Field"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1523
+msgid "Website Search Field must be a valid fieldname"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/workspace/website/website.json
+msgid "Website Settings"
+msgstr ""
+
+#. Label of the website_sidebar (Link) field in DocType 'Web Form'
+#. Label of the website_sidebar (Link) field in DocType 'Web Page'
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/workspace/website/website.json
+msgid "Website Sidebar"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
+msgid "Website Sidebar Item"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/workspace/website/website.json
+msgid "Website Slideshow"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+msgid "Website Slideshow Item"
+msgstr ""
+
+#. Label of the website_theme (Link) field in DocType 'Website Settings'
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+#: frappe/website/workspace/website/website.json
+msgid "Website Theme"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+msgid "Website Theme Ignore App"
+msgstr ""
+
+#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Website Theme Image"
+msgstr ""
+
+#. Label of the website_theme_image_link (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Website Theme image link"
+msgstr ""
+
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Websocket"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the wednesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Wednesday"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:276
+msgid "Week"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Weekdays"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Frequency' (Select) field in DocType 'User'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:399
+#: frappe/website/report/website_analytics/website_analytics.js:24
+msgid "Weekly"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Weekly Long"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:384
+msgid "Welcome"
+msgstr ""
+
+#. Label of the welcome_email_template (Link) field in DocType 'System
+#. Settings'
+#. Label of the welcome_email_template (Link) field in DocType 'Email Group'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Welcome Email Template"
+msgstr ""
+
+#. Label of the welcome_url (Data) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Welcome URL"
+msgstr ""
+
+#. Name of a Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Welcome Workspace"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:416
+msgid "Welcome email sent"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:477
+msgid "Welcome to {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:62
+msgid "What's New"
+msgstr ""
+
+#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
+msgstr ""
+
+#. Description of the 'Store Attached PDF Document' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
+msgstr ""
+
+#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:18
+msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
+msgstr ""
+
+#. Description of the 'DocType View' (Select) field in DocType 'Workspace
+#. Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
+msgid "Which view of the associated DocType should this shortcut take you to?"
+msgstr ""
+
+#. Label of the width (Data) field in DocType 'DocField'
+#. Label of the width (Int) field in DocType 'Report Column'
+#. Label of the width (Data) field in DocType 'Custom Field'
+#. Label of the width (Data) field in DocType 'Customize Form Field'
+#. Label of the width (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
+msgid "Width"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
+msgid "Widths can be set in px or %."
+msgstr ""
+
+#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
+#: frappe/core/doctype/report_filter/report_filter.json
+msgid "Wildcard Filter"
+msgstr ""
+
+#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
+#. Filter'
+#: frappe/core/doctype/report_filter/report_filter.json
+msgid "Will add \"%\" before and after the query"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
+msgid "Will be your login ID"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:424
+msgid "Will only be shown if section headings are enabled"
+msgstr ""
+
+#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
+#. in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:45
+msgid "With Letter head"
+msgstr ""
+
+#. Label of the worker_information_section (Section Break) field in DocType 'RQ
+#. Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Worker Information"
+msgstr ""
+
+#. Label of the worker_name (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Worker Name"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Group in DocType's connections
+#. Name of a DocType
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Workflow"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
+msgid "Workflow Action"
+msgstr ""
+
+#. Name of a DocType
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+msgid "Workflow Action Master"
+msgstr ""
+
+#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
+#. Master'
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+msgid "Workflow Action Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
+msgid "Workflow Action Permitted Role"
+msgstr ""
+
+#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Workflow Action is not created for optional states"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.js:25
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
+msgid "Workflow Builder"
+msgstr ""
+
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
+#. State'
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Workflow Builder ID"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:11
+msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
+msgstr ""
+
+#. Label of the workflow_data (JSON) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Workflow Data"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:44
+msgid "Workflow Details"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Workflow Document State"
+msgstr ""
+
+#. Label of the workflow_name (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Workflow Name"
+msgstr ""
+
+#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Workflow State"
+msgstr ""
+
+#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Workflow State Field"
+msgstr ""
+
+#: frappe/model/workflow.py:64
+msgid "Workflow State not set"
+msgstr ""
+
+#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+msgid "Workflow State transition not allowed from {0} to {1}"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:140
+msgid "Workflow States Don't Exist"
+msgstr ""
+
+#: frappe/model/workflow.py:384
+msgid "Workflow Status"
+msgstr ""
+
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Workflow Task"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Workflow Transition"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Workflow Transition Task"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json
+msgid "Workflow Transition Tasks"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Workflow state represents the current state of a document."
+msgstr ""
+
+#: frappe/public/js/workflow_builder/store.js:83
+msgid "Workflow updated successfully"
+msgstr ""
+
+#. Label of the workspace_section (Section Break) field in DocType 'User'
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
+#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/views/workspace/workspace.js:10
+msgid "Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/router.js:180
+msgid "Workspace {0} does not exist"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+msgid "Workspace Chart"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+msgid "Workspace Custom Block"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+msgid "Workspace Link"
+msgstr ""
+
+#. Name of a role
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Manager"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
+msgid "Workspace Number Card"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+msgid "Workspace Quick List"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Action
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/hooks.py
+msgid "Workspace Settings"
+msgstr ""
+
+#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Setup Completed"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Workspace Shortcut"
+msgstr ""
+
+#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Visibility"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:538
+msgid "Workspace {0} created"
+msgstr ""
+
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "Workspaces"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:761
+msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.py:41
+msgid "Wrapping up"
+msgstr ""
+
+#. Label of the write (Check) field in DocType 'Custom DocPerm'
+#. Label of the write (Check) field in DocType 'DocPerm'
+#. Label of the write (Check) field in DocType 'DocShare'
+#. Label of the write (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "Write"
+msgstr ""
+
+#: frappe/model/base_document.py:1011
+msgid "Wrong Fetch From value"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:495
+msgid "X Axis Field"
+msgstr ""
+
+#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "X Field"
+msgstr ""
+
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "XLSX"
+msgstr ""
+
+#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Y Axis"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:502
+msgid "Y Axis Fields"
+msgstr ""
+
+#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
+msgid "Y Field"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Yahoo Mail"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Yandex.Mail"
+msgstr ""
+
+#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
+#. Label of the year (Data) field in DocType 'Company History'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/doctype/company_history/company_history.json
+msgid "Year"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:403
+msgid "Yearly"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Yellow"
+msgstr ""
+
+#. Option for the 'Standard' (Select) field in DocType 'Page'
+#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
+#. Settings'
+#. Option for the 'Standard' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:95
+#: frappe/email/doctype/notification/notification.py:100
+#: frappe/email/doctype/notification/notification.py:102
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:125
+#: frappe/integrations/doctype/webhook/webhook.py:132
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:336
+#: frappe/public/js/frappe/form/controls/link.js:498
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
+#: frappe/website/doctype/help_article/templates/help_article.html:25
+msgid "Yes"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:32
+msgctxt "Approve confirmation dialog"
+msgid "Yes"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:545
+msgctxt "Checkbox is checked"
+msgid "Yes"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:727
+msgid "Yesterday"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/user.js:33
+msgctxt "Name of the current user. For example: You edited this 5 hours ago."
+msgid "You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:463
+msgid "You Liked"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266
+msgid "You added 1 row to {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244
+msgid "You added {0} rows to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
+#: frappe/public/js/frappe/dom.js:438
+msgid "You are connected to internet."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
+msgid "You are impersonating as another user."
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
+msgid "You are not allowed to access this resource"
+msgstr ""
+
+#: frappe/permissions.py:431
+msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
+msgstr ""
+
+#: frappe/permissions.py:420
+msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
+msgid "You are not allowed to create columns"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:97
+msgid "You are not allowed to delete Standard Report"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.py:73
+msgid "You are not allowed to delete a standard Website Theme"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:391
+msgid "You are not allowed to edit the report."
+msgstr ""
+
+#: frappe/core/doctype/data_import/exporter.py:121
+#: frappe/core/doctype/data_import/exporter.py:125
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
+#: frappe/permissions.py:626
+msgid "You are not allowed to export {} doctype"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:450
+msgid "You are not allowed to print this report"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:787
+msgid "You are not allowed to send emails related to this document"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:632
+msgid "You are not allowed to update this Web Form Document"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:37
+msgid "You are not connected to Internet. Retry after sometime."
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/webform_script.js:22
+msgid "You are not permitted to access this page without login."
+msgstr ""
+
+#: frappe/www/app.py:27
+msgid "You are not permitted to access this page."
+msgstr ""
+
+#: frappe/__init__.py:465
+msgid "You are not permitted to access this resource. Login to access"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
+msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
+msgstr ""
+
+#: frappe/core/doctype/installed_applications/installed_applications.py:117
+msgid "You are only allowed to update order, do not remove or add apps."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:284
+msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:414
+msgctxt "Form timeline"
+msgid "You attached {0}"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+msgid "You can add dynamic properties from the document by using Jinja templating."
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:22
+msgid "You can also copy-paste following link in your browser"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:9
+msgid "You can also copy-paste this"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:11
+msgid "You can also copy-paste this {0} to your browser"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation_expired.html:8
+msgid "You can ask your team to resend the invitation if you'd still like to join."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:17
+msgid "You can change Submitted documents by cancelling them and then, amending them."
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:21
+msgid "You can change the retention policy from {0}."
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
+msgid "You can continue with the onboarding after exploring this page"
+msgstr ""
+
+#: frappe/model/delete_doc.py:177
+msgid "You can disable this {0} instead of deleting it."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:761
+msgid "You can increase the limit from System Settings."
+msgstr ""
+
+#: frappe/utils/synchronization.py:48
+msgid "You can manually remove the lock if you think it's safe: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
+msgid "You can only insert images in Markdown fields"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:42
+msgid "You can only print upto {0} documents at a time"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:104
+msgid "You can only set the 3 custom doctypes in the Document Types table."
+msgstr ""
+
+#: frappe/handler.py:183
+msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:199
+msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "You can select one from the following,"
+msgstr ""
+
+#. Description of the 'Rate limit for email link login' (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "You can set a high value here if multiple users will be logging in from the same network."
+msgstr ""
+
+#: frappe/desk/query_report.py:382
+msgid "You can try changing the filters of your report."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "You can use Customize Form to set levels on fields."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:30
+msgid "You can use wildcard %"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:394
+msgid "You can't set 'Options' for field {0}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:398
+msgid "You can't set 'Translatable' for field {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
+msgctxt "Form timeline"
+msgid "You cancelled this document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
+msgctxt "Form timeline"
+msgid "You cancelled this document {1}"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
+msgid "You cannot create a dashboard chart from single DocTypes"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:390
+msgid "You cannot unset 'Read Only' for field {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
+msgid "You changed the value of {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
+msgid "You changed the value of {0} {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
+msgid "You changed the values for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
+msgid "You changed the values for {0} {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:443
+msgctxt "Form timeline"
+msgid "You changed {0} to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:140
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
+msgid "You created this"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340
+msgctxt "Form timeline"
+msgid "You created this document {0}"
+msgstr ""
+
+#: frappe/client.py:417
+msgid "You do not have Read or Select Permissions for {}"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:177
+msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
+msgstr ""
+
+#: frappe/app.py:384
+msgid "You do not have enough permissions to complete the action"
+msgstr ""
+
+#: frappe/database/query.py:531
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:923
+msgid "You do not have permission to access {0}: {1}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:960
+msgid "You do not have permissions to cancel all linked documents."
+msgstr ""
+
+#: frappe/desk/query_report.py:43
+msgid "You don't have access to Report: {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:835
+msgid "You don't have permission to access the {0} DocType."
+msgstr ""
+
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
+msgid "You don't have permission to access this file"
+msgstr ""
+
+#: frappe/desk/query_report.py:49
+msgid "You don't have permission to get a report on: {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:175
+msgid "You don't have the permissions to access this document"
+msgstr ""
+
+#: frappe/templates/emails/new_message.html:1
+msgid "You have a new message from:"
+msgstr ""
+
+#: frappe/handler.py:119
+msgid "You have been successfully logged out"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:247
+msgid "You have hit the row size limit on database table: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:412
+msgid "You have not entered a value. The field will be set to empty."
+msgstr ""
+
+#: frappe/twofactor.py:437
+msgid "You have to enable Two Factor Auth from System Settings."
+msgstr ""
+
+#: frappe/public/js/frappe/model/create_new.js:328
+msgid "You have unsaved changes in this form. Please save before you continue."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
+msgid "You have unseen notifications"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:125
+msgid "You have unseen {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
+msgid "You haven't added any Dashboard Charts or Number Cards yet."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:503
+msgid "You haven't created a {0} yet"
+msgstr ""
+
+#: frappe/rate_limiter.py:166
+msgid "You hit the rate limit because of too many requests. Please try after sometime."
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:151
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
+msgid "You last edited this"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
+msgid "You must add atleast one link."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:831
+msgid "You must be logged in to use this form."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:672
+msgid "You must login to submit this form"
+msgstr ""
+
+#: frappe/model/document.py:358
+msgid "You need the '{0}' permission on {1} {2} to perform this action."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:127
+msgid "You need to be Workspace Manager to delete a public workspace."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:76
+msgid "You need to be Workspace Manager to edit this document"
+msgstr ""
+
+#: frappe/www/attribution.py:16
+msgid "You need to be a system user to access this page."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:91
+msgid "You need to be in developer mode to edit a Standard Web Form"
+msgstr ""
+
+#: frappe/utils/response.py:278
+msgid "You need to be logged in and have System Manager Role to be able to access backups."
+msgstr ""
+
+#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
+msgid "You need to be logged in to access this page"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:164
+msgid "You need to be logged in to access this {0}."
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/links_widget.js:63
+msgid "You need to create these first:"
+msgstr ""
+
+#: frappe/www/login.html:76
+msgid "You need to enable JavaScript for your app to work."
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:62
+msgid "You need to have \"Share\" permission"
+msgstr ""
+
+#: frappe/utils/print_format.py:268
+msgid "You need to install pycups to use this feature!"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.js:38
+msgid "You need to select indexes you want to add first."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:160
+msgid "You need to set one IMAP folder for {0}"
+msgstr ""
+
+#: frappe/model/rename_doc.py:391
+msgid "You need write permission on {0} {1} to merge"
+msgstr ""
+
+#: frappe/model/rename_doc.py:386
+msgid "You need write permission on {0} {1} to rename"
+msgstr ""
+
+#: frappe/client.py:449
+msgid "You need {0} permission to fetch values from {1} {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311
+msgid "You removed 1 row from {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:419
+msgctxt "Form timeline"
+msgid "You removed attachment {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289
+msgid "You removed {0} rows from {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
+msgid "You seem good to go!"
+msgstr ""
+
+#: frappe/templates/includes/contact.js:20
+msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:31
+msgid "You selected Draft or Cancelled documents"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
+msgctxt "Form timeline"
+msgid "You submitted this document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
+msgctxt "Form timeline"
+msgid "You submitted this document {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
+msgid "You unfollowed this document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:183
+msgid "You viewed this"
+msgstr ""
+
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:113
+msgid "You've been invited to join {0}"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:5
+msgid "You've been invited to join {0}."
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:547
+msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "YouTube"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:57
+msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:397
+msgid "Your Country"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:389
+msgid "Your Language"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:21
+msgid "Your Name"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:132
+msgid "Your PDF is ready for download"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:34
+msgid "Your Shortcuts"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
+msgid "Your account has been deleted"
+msgstr ""
+
+#: frappe/auth.py:517
+msgid "Your account has been locked and will resume after {0} seconds"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:279
+msgid "Your assignment on {0} {1} has been removed by {2}"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:74
+msgid "Your browser does not support the audio element."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:56
+msgid "Your browser does not support the video element."
+msgstr ""
+
+#: frappe/templates/pages/integrations/gcalendar-success.html:11
+msgid "Your connection request to Google Calendar was successfully accepted"
+msgstr ""
+
+#: frappe/www/contact.html:35
+msgid "Your email address"
+msgstr ""
+
+#: frappe/desk/utils.py:105
+msgid "Your exported report: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:452
+msgid "Your form has been successfully updated"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation_cancelled.html:5
+msgid "Your invitation to join {0} has been cancelled by the site administrator."
+msgstr ""
+
+#: frappe/templates/emails/user_invitation_expired.html:5
+msgid "Your invitation to join {0} has expired."
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:6
+msgid "Your login id is"
+msgstr ""
+
+#: frappe/www/update-password.html:192
+msgid "Your new password has been set successfully."
+msgstr ""
+
+#: frappe/www/update-password.html:172
+msgid "Your old password is incorrect."
+msgstr ""
+
+#. Description of the 'Email Footer Address' (Small Text) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Your organization name and address for the email footer."
+msgstr ""
+
+#: frappe/templates/emails/auto_reply.html:2
+msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
+msgstr ""
+
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr ""
+
+#: frappe/app.py:377
+msgid "Your session has expired, please login again to continue."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
+msgid "Your site is undergoing maintenance or being updated."
+msgstr ""
+
+#: frappe/templates/emails/verification_code.html:1
+msgid "Your verification code is {0}"
+msgstr ""
+
+#: frappe/utils/data.py:1558
+msgid "Zero"
+msgstr ""
+
+#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
+#. in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Zero means send records updated at anytime"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358
+msgid "[Action taken by {0}]"
+msgstr ""
+
+#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "_doctype"
+msgstr ""
+
+#. Label of the _report (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "_report"
+msgstr ""
+
+#: frappe/database/database.py:360
+msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:120
+msgid "`job_id` paramater is required for deduplication."
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "after_insert"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "amend"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
+msgid "and"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
+msgid "ascending"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "blue"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:35
+msgid "by Role"
+msgstr ""
+
+#. Label of the profile (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "cProfile Output"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295
+msgid "calendar"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "cancel"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "canceled"
+msgstr ""
+
+#: frappe/templates/includes/list/filters.html:19
+msgid "clear"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
+msgid "commented"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "create"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "cyan"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:218
+#: frappe/public/js/frappe/utils/utils.js:1119
+msgctxt "Days (Field: Duration)"
+msgid "d"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "darkgrey"
+msgstr ""
+
+#: frappe/core/page/dashboard_view/dashboard_view.js:65
+msgid "dashboard"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "dd-mm-yyyy"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "dd.mm.yyyy"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "dd/mm/yyyy"
+msgstr ""
+
+#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
+#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "default"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "deferred"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "delete"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
+msgid "descending"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
+msgid "document type..., e.g. customer"
+msgstr ""
+
+#. Description of the 'Email Account Name' (Data) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
+msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
+msgstr ""
+
+#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
+#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "e.g. pop.gmail.com / imap.gmail.com"
+msgstr ""
+
+#. Description of the 'Default Incoming' (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
+msgstr ""
+
+#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
+#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "e.g. smtp.gmail.com"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:98
+msgid "e.g.:"
+msgstr ""
+
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "emacs"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+msgid "email"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
+msgid "email inbox"
+msgstr ""
+
+#: frappe/permissions.py:425 frappe/permissions.py:436
+#: frappe/public/js/frappe/form/controls/link.js:507
+msgid "empty"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "export"
+msgstr ""
+
+#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+msgid "facebook"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "failed"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "fairlogin"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "finished"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "gray"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "green"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "grey"
+msgstr ""
+
+#: frappe/utils/backups.py:399
+msgid "gzip not found in PATH! This is required to take a backup."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:219
+#: frappe/public/js/frappe/utils/utils.js:1123
+msgctxt "Hours (Field: Duration)"
+msgid "h"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
+msgid "hub"
+msgstr ""
+
+#. Label of the icon (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "icon"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "import"
+msgstr ""
+
+#: frappe/templates/signup.html:11 frappe/www/login.html:11
+msgid "jane@example.com"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:46
+msgid "just now"
+msgstr ""
+
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
+msgid "label"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "light-blue"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "link"
+msgstr ""
+
+#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+msgid "linkedin"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "list"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:43
+msgid "logged in"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:363
+msgid "login_required"
+msgstr ""
+
+#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
+#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "long"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:220
+#: frappe/public/js/frappe/utils/utils.js:1127
+msgctxt "Minutes (Field: Duration)"
+msgid "m"
+msgstr ""
+
+#: frappe/model/rename_doc.py:215
+msgid "merged {0} into {1}"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "mm-dd-yyyy"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "mm/dd/yyyy"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "module"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
+msgid "module name..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169
+msgid "new"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
+msgid "new type of document"
+msgstr ""
+
+#. Label of the no_failed (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "no failed attempts"
+msgstr ""
+
+#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "nonce"
+msgstr ""
+
+#. Label of the notified (Check) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
+msgid "notified"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:25
+msgid "now"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_pagination.js:116
+msgid "of"
+msgstr ""
+
+#. Label of the old_parent (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "old_parent"
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "on_cancel"
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "on_change"
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "on_submit"
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "on_trash"
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "on_update"
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "on_update_after_submit"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
+#: frappe/www/login.py:112
+msgid "or"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "orange"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "page"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "pink"
+msgstr ""
+
+#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "plain"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "print"
+msgstr ""
+
+#. Label of the processlist (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "processlist"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "purple"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "query-report"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "queued"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "read"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "red"
+msgstr ""
+
+#: frappe/model/rename_doc.py:217
+msgid "renamed from {0} to {1}"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "report"
+msgstr ""
+
+#. Label of the response (HTML) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
+msgid "response"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:61
+msgid "restored {0} as {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:221
+#: frappe/public/js/frappe/utils/utils.js:1131
+msgctxt "Seconds (Field: Duration)"
+msgid "s"
+msgstr ""
+
+#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "s256"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "scheduled"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "select"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "share"
+msgstr ""
+
+#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
+#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "short"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/number_card_widget.js:310
+msgid "since last month"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/number_card_widget.js:309
+msgid "since last week"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/number_card_widget.js:311
+msgid "since last year"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/number_card_widget.js:308
+msgid "since yesterday"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "started"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:201
+msgid "starting the setup..."
+msgstr ""
+
+#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "string value, i.e. group"
+msgstr ""
+
+#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "string value, i.e. member"
+msgstr ""
+
+#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "submit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
+msgid "tag name..., e.g. #tag"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
+msgid "text in document type"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/data.js:36
+msgid "this form"
+msgstr ""
+
+#: frappe/tests/test_translate.py:174
+msgid "this shouldn't break"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:9
+msgid "to your browser"
+msgstr ""
+
+#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+msgid "twitter"
+msgstr ""
+
+#: frappe/public/js/frappe/change_log.html:7
+msgid "updated to {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:361
+msgid "use % as wildcard"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:360
+msgid "values separated by commas"
+msgstr ""
+
+#. Label of the version_table (HTML) field in DocType 'Audit Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+msgid "version_table"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
+msgid "via Assignment Rule"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264
+msgid "via Auto Repeat"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:271
+#: frappe/core/doctype/data_import/importer.py:292
+msgid "via Data Import"
+msgstr ""
+
+#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "via Google Meet"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:405
+msgid "via Notification"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
+msgid "via {0}"
+msgstr ""
+
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vim"
+msgstr ""
+
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vscode"
+msgstr ""
+
+#: frappe/templates/includes/oauth_confirmation.html:5
+msgid "wants to access the following details from your account"
+msgstr ""
+
+#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "when clicked on element it will focus popover if present."
+msgstr ""
+
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "wkhtmltopdf"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:662
+msgid "wkhtmltopdf 0.12.x (with patched qt)."
+msgstr ""
+
+#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "workflow_transition"
+msgstr ""
+
+#. Option for the 'Permission Type' (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+msgid "write"
+msgstr ""
+
+#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "yellow"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:58
+msgid "yesterday"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.js:87
+#: frappe/public/js/frappe/form/footer/form_timeline.js:547
+msgid "{0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202
+msgid "{0} ${skip_list ? \"\" : type}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207
+msgid "{0} ${type}"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:80
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
+msgid "{0} ({1})"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:77
+msgid "{0} ({1}) (1 row mandatory)"
+msgstr ""
+
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
+msgid "{0} ({1}) - {2}%"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
+msgid "{0} = {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:30
+msgid "{0} Calendar"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:575
+msgid "{0} Chart"
+msgstr ""
+
+#: frappe/core/page/dashboard_view/dashboard_view.js:67
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
+msgid "{0} Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:487
+#: frappe/public/js/frappe/list/list_settings.js:225
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
+msgid "{0} Fields"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
+msgid "{0} Google Calendar Events synced."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
+msgid "{0} Google Contacts synced."
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:464
+msgid "{0} Liked"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
+#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
+#: frappe/www/list.html:8
+msgid "{0} List"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:33
+msgid "{0} List View Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:37
+msgid "{0} M"
+msgstr ""
+
+#: frappe/public/js/frappe/views/map/map_view.js:14
+msgid "{0} Map"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:122
+msgid "{0} Name"
+msgstr ""
+
+#: frappe/model/base_document.py:1215
+msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/widgets/chart_widget.js:366
+msgid "{0} Report"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:964
+msgid "{0} Reports"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
+msgid "{0} Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
+#: frappe/public/js/frappe/views/treeview.js:152
+msgid "{0} Tree"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:128
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
+msgid "{0} Web page views"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+msgid "{0} Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:225
+msgid "{0} added"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268
+msgid "{0} added 1 row to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246
+msgid "{0} added {1} rows to {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/data.js:215
+msgid "{0} already exists. Select another name"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
+msgid "{0} already unsubscribed"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
+msgid "{0} already unsubscribed for {1} {2}"
+msgstr ""
+
+#: frappe/utils/data.py:1765
+msgid "{0} and {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
+msgid "{0} are currently {1}"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:98
+msgid "{0} are required"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:286
+msgid "{0} assigned a new task {1} {2} to you"
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo.py:48
+msgid "{0} assigned {1}: {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:415
+msgctxt "Form timeline"
+msgid "{0} attached {1}"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.py:153
+msgid "{0} can not be more than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
+msgid "{0} cancelled this document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
+msgctxt "Form timeline"
+msgid "{0} cancelled this document {1}"
+msgstr ""
+
+#: frappe/model/document.py:548
+msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:190
+msgid "{0} cannot be hidden and mandatory without any default value"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
+msgid "{0} changed the value of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
+msgid "{0} changed the value of {1} {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
+msgid "{0} changed the values for {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
+msgid "{0} changed the values for {1} {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:444
+msgctxt "Form timeline"
+msgid "{0} changed {1} to {2}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1606
+msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:261
+msgid "{0} created successfully"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:141
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
+msgid "{0} created this"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343
+msgctxt "Form timeline"
+msgid "{0} created this document {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:33
+msgid "{0} d"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:60
+msgid "{0} days ago"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.py:96
+#: frappe/website/doctype/website_settings/website_settings.py:116
+msgid "{0} does not exist in row {1}"
+msgstr ""
+
+#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
+msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
+msgstr ""
+
+#: frappe/database/query.py:710
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1071
+msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
+msgid "{0} from {1} to {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
+msgid "{0} from {1} to {2} in row #{3}"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:29
+msgid "{0} h"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission.py:77
+msgid "{0} has already assigned default value for {1}."
+msgstr ""
+
+#: frappe/email/queue.py:124
+msgid "{0} has left the conversation in {1} {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:54
+msgid "{0} hours ago"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:155
+msgid "{0} if you are not redirected within {1} seconds"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.py:102
+#: frappe/website/doctype/website_settings/website_settings.py:122
+msgid "{0} in row {1} cannot have both URL and child items"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:935
+msgid "{0} is a mandatory field"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:569
+msgid "{0} is a not a valid zip file"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1619
+msgid "{0} is an invalid Data field."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162
+msgid "{0} is an invalid email address in 'Recipients'"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1470
+msgid "{0} is between {1} and {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
+msgid "{0} is currently {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1439
+msgid "{0} is equal to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1459
+msgid "{0} is greater than or equal to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1449
+msgid "{0} is greater than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1464
+msgid "{0} is less than or equal to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1454
+msgid "{0} is less than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
+msgid "{0} is like {1}"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:193
+msgid "{0} is mandatory"
+msgstr ""
+
+#: frappe/database/query.py:487
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
+msgid "{0} is not a field of doctype {1}"
+msgstr ""
+
+#: frappe/www/printview.py:384
+msgid "{0} is not a raw printing format."
+msgstr ""
+
+#: frappe/public/js/frappe/views/calendar/calendar.js:82
+msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
+msgid "{0} is not a valid Cron expression."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+msgid "{0} is not a valid DocType for Dynamic Link"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.py:140
+#: frappe/utils/__init__.py:208
+msgid "{0} is not a valid Email Address"
+msgstr ""
+
+#: frappe/geo/doctype/country/country.py:30
+msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/utils/__init__.py:176
+msgid "{0} is not a valid Name"
+msgstr ""
+
+#: frappe/utils/__init__.py:155
+msgid "{0} is not a valid Phone Number"
+msgstr ""
+
+#: frappe/model/workflow.py:245
+msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
+msgstr ""
+
+#: frappe/permissions.py:809
+msgid "{0} is not a valid parent DocType for {1}"
+msgstr ""
+
+#: frappe/permissions.py:829
+msgid "{0} is not a valid parentfield for {1}"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
+msgid "{0} is not a valid report format. Report format should one of the following {1}"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:549
+msgid "{0} is not a zip file"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:182
+msgid "{0} is not an allowed role for {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1444
+msgid "{0} is not equal to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1491
+msgid "{0} is not like {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1485
+msgid "{0} is not one of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1495
+msgid "{0} is not set"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:176
+msgid "{0} is now default print format for {1} doctype"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1478
+msgid "{0} is one of {1}"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:304
+#: frappe/model/naming.py:226
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/utils/csvutils.py:156
+msgid "{0} is required"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1494
+msgid "{0} is set"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1473
+msgid "{0} is within {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1841
+msgid "{0} items selected"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1393
+msgid "{0} just impersonated as you. They gave this reason: {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:152
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
+msgid "{0} last edited this"
+msgstr ""
+
+#: frappe/core/doctype/activity_log/feed.py:13
+msgid "{0} logged in"
+msgstr ""
+
+#: frappe/core/doctype/activity_log/feed.py:19
+msgid "{0} logged out: {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:27
+msgid "{0} m"
+msgstr ""
+
+#: frappe/desk/notifications.py:408
+msgid "{0} mentioned you in a comment in {1} {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:50
+msgid "{0} minutes ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:68
+msgid "{0} months ago"
+msgstr ""
+
+#: frappe/model/document.py:1808
+msgid "{0} must be after {1}"
+msgstr ""
+
+#: frappe/model/document.py:1564
+msgid "{0} must be beginning with '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1566
+msgid "{0} must be equal to '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1562
+msgid "{0} must be none of {1}"
+msgstr ""
+
+#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161
+msgid "{0} must be one of {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:933
+msgid "{0} must be set first"
+msgstr ""
+
+#: frappe/model/base_document.py:786
+msgid "{0} must be unique"
+msgstr ""
+
+#: frappe/model/document.py:1568
+msgid "{0} must be {1} {2}"
+msgstr ""
+
+#: frappe/core/doctype/language/language.py:79
+msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:91
+msgid "{0} not a valid State"
+msgstr ""
+
+#: frappe/model/rename_doc.py:394
+msgid "{0} not allowed to be renamed"
+msgstr ""
+
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
+msgid "{0} not found"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:427
+#: frappe/public/js/frappe/list/list_view.js:1213
+msgid "{0} of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1215
+msgid "{0} of {1} ({2} rows with children)"
+msgstr ""
+
+#: frappe/utils/data.py:1566
+msgctxt "Money in words"
+msgid "{0} only."
+msgstr ""
+
+#: frappe/utils/data.py:1747
+msgid "{0} or {1}"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:177
+msgid "{0} record deleted"
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:22
+msgid "{0} records are not automatically deleted."
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:29
+msgid "{0} records are retained for {1} days."
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:179
+msgid "{0} records deleted"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:229
+msgid "{0} records will be exported"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313
+msgid "{0} removed 1 row from {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:420
+msgctxt "Form timeline"
+msgid "{0} removed attachment {1}"
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo.py:58
+msgid "{0} removed their assignment."
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291
+msgid "{0} removed {1} rows from {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/roles_editor.js:64
+msgid "{0} role does not have permission on any doctype"
+msgstr ""
+
+#: frappe/model/document.py:1799
+msgid "{0} row #{1}:"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299
+msgctxt "User removed rows from child table"
+msgid "{0} rows from {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254
+msgctxt "User added rows to child table"
+msgid "{0} rows to {1}"
+msgstr ""
+
+#: frappe/desk/query_report.py:666
+msgid "{0} saved successfully"
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo.py:44
+msgid "{0} self assigned this task: {1}"
+msgstr ""
+
+#: frappe/share.py:233
+msgid "{0} shared a document {1} {2} with you"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:77
+msgid "{0} shared this document with everyone"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:80
+msgid "{0} shared this document with {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:317
+msgid "{0} should be indexed because it's referred in dashboard connections"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149
+msgid "{0} should not be same as {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
+msgid "{0} submitted this document"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
+msgctxt "Form timeline"
+msgid "{0} submitted this document {1}"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.py:71
+#: frappe/email/doctype/email_group/email_group.py:142
+msgid "{0} subscribers added"
+msgstr ""
+
+#: frappe/email/queue.py:69
+msgid "{0} to stop receiving emails of this type"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/date_range.js:48
+#: frappe/public/js/frappe/form/controls/date_range.js:64
+#: frappe/public/js/frappe/form/formatters.js:238
+msgid "{0} to {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:89
+msgid "{0} un-shared this document with {1}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:256
+msgid "{0} updated"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
+msgid "{0} values selected"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:184
+msgid "{0} viewed this"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:35
+msgid "{0} w"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:64
+msgid "{0} weeks ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:39
+msgid "{0} y"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:72
+msgid "{0} years ago"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:219
+msgid "{0} {1} added"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:270
+msgid "{0} {1} added to Dashboard {2}"
+msgstr ""
+
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
+msgid "{0} {1} already exists"
+msgstr ""
+
+#: frappe/model/base_document.py:1044
+msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
+msgstr ""
+
+#: frappe/utils/nestedset.py:353
+msgid "{0} {1} cannot be a leaf node as it has children"
+msgstr ""
+
+#: frappe/model/rename_doc.py:376
+msgid "{0} {1} does not exist, select a new target to merge"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:951
+msgid "{0} {1} is linked with the following submitted documents: {2}"
+msgstr ""
+
+#: frappe/model/document.py:258 frappe/permissions.py:580
+msgid "{0} {1} not found"
+msgstr ""
+
+#: frappe/model/delete_doc.py:288
+msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
+msgstr ""
+
+#: frappe/model/base_document.py:1176
+msgid "{0}, Row {1}"
+msgstr ""
+
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+msgid "{0}/{1} complete | Please leave this tab open until completion."
+msgstr ""
+
+#: frappe/model/base_document.py:1181
+msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1814
+msgid "{0}: Cannot set Amend without Cancel"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1832
+msgid "{0}: Cannot set Assign Amend if not Submittable"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1830
+msgid "{0}: Cannot set Assign Submit if not Submittable"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1809
+msgid "{0}: Cannot set Cancel without Submit"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1816
+msgid "{0}: Cannot set Import without Create"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1812
+msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1836
+msgid "{0}: Cannot set import as {1} is not importable"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
+msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1427
+msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1335
+msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1294
+msgid "{0}: Field {1} of type {2} cannot be mandatory"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1282
+msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1414
+msgid "{0}: Fieldtype {1} for {2} cannot be unique"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1769
+msgid "{0}: No basic permissions set"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1783
+msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1316
+msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1305
+msgid "{0}: Options required for Link or Table type field {1} in row {2}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1323
+msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "{0}: Other permission rules may also apply"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1798
+msgid "{0}: Permission at level 0 must be set before higher levels are set"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/data.js:51
+msgid "{0}: You can increase the limit for the field if required via {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1269
+msgid "{0}: fieldname cannot be set to reserved keyword {1}"
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.js:35
+#: frappe/contacts/doctype/contact/contact.js:88
+msgid "{0}: {1}"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
+msgid "{0}: {1} is set to state {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
+msgid "{0}: {1} vs {2}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1435
+msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:195
+msgid "{1} saved"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:12
+msgid "{count} cell copied"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:13
+msgid "{count} cells copied"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:16
+msgid "{count} row selected"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:17
+msgid "{count} rows selected"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1489
+msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:521
+msgid "{} Complete"
+msgstr ""
+
+#: frappe/utils/data.py:2567
+msgid "{} Invalid python code on line {}"
+msgstr ""
+
+#: frappe/utils/data.py:2576
+msgid "{} Possibly invalid python code.
{}"
+msgstr ""
+
+#. Count format of shortcut in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "{} Published"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:54
+msgid "{} does not support automated log clearing."
+msgstr ""
+
+#: frappe/core/doctype/audit_trail/audit_trail.py:41
+msgid "{} field cannot be empty."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:223
+#: frappe/email/doctype/email_account/email_account.py:231
+msgid "{} has been disabled. It can only be enabled if {} is checked."
+msgstr ""
+
+#: frappe/utils/data.py:145
+msgid "{} is not a valid date string."
+msgstr ""
+
+#: frappe/commands/utils.py:561
+msgid "{} not found in PATH! This is required to access the console."
+msgstr ""
+
+#: frappe/database/db_manager.py:99
+msgid "{} not found in PATH! This is required to restore the database."
+msgstr ""
+
+#: frappe/utils/backups.py:466
+msgid "{} not found in PATH! This is required to take a backup."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
+msgid "← Back to upload files"
+msgstr ""
+
diff --git a/frappe/locale/nb.po b/frappe/locale/nb.po
index c706777927..7815399e30 100644
--- a/frappe/locale/nb.po
+++ b/frappe/locale/nb.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-09 17:28\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "«I globalt søk» er ikke tillatt for typen {0} i rad {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "\"I listevisning\" er ikke tillatt for feltet {0} av typen {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'I listevisning' ikke tillatt for typen {0} i rad {1}"
@@ -86,11 +86,11 @@ msgstr "'I listevisning' ikke tillatt for typen {0} i rad {1}"
msgid "'Recipients' not specified"
msgstr "'Mottakere' er ikke angitt"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
-msgstr ""
+msgstr "'{0}' er ikke et gyldig IBAN"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' er ikke en gyldig URL"
@@ -122,7 +122,7 @@ msgstr "0 – Utkast; 1 – Registrert; 2 – Avbrutt"
msgid "0 is highest"
msgstr "0 er høyeste"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Sant og 0 = Usant"
@@ -141,11 +141,11 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender-hendelse synkronisert."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Rapport"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 dag siden"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 time"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 time siden"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 minutt siden"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 måned siden"
@@ -179,44 +179,44 @@ msgstr "1 oppføring vil bli eksportert"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320
msgctxt "User removed row from child table"
msgid "1 row from {0}"
-msgstr ""
+msgstr "1 rad fra {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275
msgctxt "User added row to child table"
msgid "1 row to {0}"
-msgstr ""
+msgstr "1 rad til {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "1 sekund siden"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 uke siden"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 år siden"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "2 timer siden"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "2 måneder siden"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "2 uker siden"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "2 år siden"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 minutter siden"
@@ -232,7 +232,7 @@ msgstr "4 timer"
msgid "5 Records"
msgstr "5 oppføringer"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 dager siden"
@@ -270,6 +270,16 @@ msgstr "{0} er ikke en gyldig URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Ikke oppdater den, da det kan ødelegge skjemaet ditt. Bruk Tilpass skjemavisning og Tilpassede felt for å angi egenskaper!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,7 +578,7 @@ msgstr "Eksempel på e-postsvar
\n\n"
"- Beløp: {{ grand_total }}\n"
"\n\n"
"Slik henter du feltnavn
\n\n"
-"Feltnavnene du kan bruke i e-postmalen din, er feltene i dokumentet du sender e-posten fra. Du kan finne feltene til alle dokumenter via Oppsett > Tilpass skjemavisning og velg dokumenttype (f.eks. salgsfaktura)
\n\n"
+"Feltnavnene du kan bruke i e-postmalen din, er feltene i dokumentet du sender e-posten fra. Du kan finne feltene til alle dokumenter via Oppsett > Tilpass skjemavisning og velg dokumenttype (DocType) (f.eks. salgsfaktura)
\n\n"
"Maler
\n\n"
"Maler kompileres ved hjelp av Jinja-malspråket. Hvis du vil vite mer om Jinja, kan du lese denne dokumentasjonen.
\n"
@@ -630,7 +640,7 @@ msgstr "Eksempler på betingelser:
\n"
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 "Flere nettskjemaer kan opprettes for én doktype. Legg til filtre som er spesifikke for dette nettskjemaet for å vise riktig post etter innsending.
For eksempel:
\n"
+msgstr "Flere nettskjemaer kan opprettes for én dokumenttype (DocType). Legg til filtre som er spesifikke for dette nettskjemaet for å vise riktig post etter innsending.
For eksempel:
\n"
"Hvis du oppretter et separat nettskjema hvert år for å samle inn tilbakemeldinger fra ansatte, legg til et \n"
" felt med navnet år i DocType og legg til et filter år = 2023
\n"
@@ -748,18 +758,23 @@ msgstr ">="
#: frappe/core/doctype/doctype/doctype.py:1035
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
-msgstr "Navnet på en DocType skal starte med en bokstav og kan bare bestå av bokstaver, tall, mellomrom, understrek og bindestreker."
+msgstr "Navnet på en dokumenttype (DocType) skal starte med en bokstav og kan bare bestå av bokstaver, tall, mellomrom, understrek og bindestreker"
#. Description of a DocType
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
-msgstr "En Frappe Framework-instans kan fungere som en OAuth-klient, ressurs eller autorisasjonsserver. Denne DocType'en inneholder innstillinger relatert til alle tre."
+msgstr "En Frappe Framework-instans kan fungere som en OAuth-klient, ressurs eller autorisasjonsserver. Denne dokumenttypen (DocType) inneholder innstillinger relatert til alle tre."
+
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Et felt med navnet {0} finnes allerede i {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "En fil med samme navn {} finnes allerede"
@@ -883,7 +898,7 @@ msgstr "Parametre for API-endepunkt må være gyldig JSON"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -902,7 +917,7 @@ msgstr "API-nøkkel og -hemmelighet for å samhandle med reléserveren. Disse ge
msgid "API Key cannot be regenerated"
msgstr "API-nøkkelen kan ikke regenereres"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API-nøkler"
@@ -926,7 +941,7 @@ msgstr "API-forespørselslogg"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1012,7 +1027,7 @@ msgstr "Adgangstoken"
msgid "Access Token URL"
msgstr "Adgangstoken URL"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Tilgang er ikke tillatt fra denne IP-adressen"
@@ -1128,7 +1143,7 @@ msgstr "Handlingen {0} mislyktes på {1} {2}. Se den på {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Handlinger"
@@ -1185,7 +1200,7 @@ msgstr "Aktivitetslogg"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1196,7 +1211,7 @@ msgstr "Aktivitetslogg"
msgid "Add"
msgstr "Legg til"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Legg til / Fjern kolonner"
@@ -1228,7 +1243,7 @@ msgstr "Legg til kant nederst"
msgid "Add Border at Top"
msgstr "Legg til kant øverst"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Legg til diagram i oversiktspanel"
@@ -1241,8 +1256,8 @@ msgid "Add Child"
msgstr "Legg til underordnet"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1265,7 +1280,7 @@ msgstr "Legg til beholder"
#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Legg til egendefinerte tagger"
+msgstr "Legg til egendefinerte meta-tagger"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
#: frappe/public/js/frappe/widgets/widget_dialog.js:716
@@ -1334,12 +1349,12 @@ msgstr "Legg til abonnenter"
#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
-msgstr "Legg til tagger"
+msgstr "Legg til stikkord"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
-msgstr "Legg til tagger"
+msgstr "Legg til stikkord"
#: frappe/public/js/frappe/views/communication.js:433
msgid "Add Template"
@@ -1454,7 +1469,7 @@ msgstr "Legg til i oversiktspanel"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
msgid "Add to ToDo"
-msgstr "Legg til ToDo"
+msgstr "Legg til gjøremål"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
msgid "Add to table"
@@ -1486,7 +1501,7 @@ msgstr "La til HTML i <head> -delen av nettsiden, primært brukt til netts
#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
-msgstr "Lagt til standard dokumenttyper for logg: {}"
+msgstr "Lagt til standard dokumenttyper (DocType) for logg: {}"
#: frappe/public/js/frappe/form/link_selector.js:180
#: frappe/public/js/frappe/form/link_selector.js:202
@@ -1511,6 +1526,7 @@ msgstr "Ekstra tillatelser"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1519,6 +1535,7 @@ msgstr "Adresse"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresselinje 1"
@@ -1526,6 +1543,7 @@ msgstr "Adresselinje 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresselinje 2:"
@@ -1569,12 +1587,12 @@ msgstr "Adresser og kontakter"
#. Description of a DocType
#: frappe/custom/doctype/client_script/client_script.json
msgid "Adds a custom client script to a DocType"
-msgstr "Legger til et egendefinert klientskript til en DocType"
+msgstr "Legger til et egendefinert klientskript til en dokumenttype (DocType)"
#. Description of a DocType
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Adds a custom field to a DocType"
-msgstr "Legger til et egendefinert felt i en DocType"
+msgstr "Legger til et egendefinert felt i en dokumenttype (DocType)"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Administration"
@@ -1687,7 +1705,7 @@ msgstr "Etter registrring"
msgid "After Submit"
msgstr "Etter registrering"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Feltet Aggregert er påkrevd for å opprette et tallkort"
@@ -1714,11 +1732,11 @@ msgstr "Alarm"
msgid "Alerts and Notifications"
msgstr "Alarmer og Varsler"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Alias kan ikke være et SQL-nøkkelord: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Aliaset må være en streng"
@@ -1807,7 +1825,7 @@ msgstr "Bare store bokstaver er nesten like enkle å gjette som bare små boksta
#. Label of the allocated_to (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Allocated To"
-msgstr "Allokalisert til"
+msgstr "Fordelt til"
#. Label of the allow (Link) field in DocType 'User Permission'
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
@@ -1981,7 +1999,7 @@ msgstr "Tillat redigering etter registrering"
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Allow editing even if the doctype has a workflow set up.\n\n"
"Does nothing if a workflow isn't set up."
-msgstr "Tillat redigering selv om dokumenttypen har en arbeidsflyt konfigurert.\n\n"
+msgstr "Tillat redigering selv om dokumenttypen (DocType) har en arbeidsflyt konfigurert.\n\n"
"Gjør ingenting hvis en arbeidsflyt ikke er konfigurert."
#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
@@ -2107,7 +2125,7 @@ msgstr "Tillatte innebyggingsdomener"
#: frappe/public/js/frappe/form/form.js:1256
msgid "Allowing DocType, DocType. Be careful!"
-msgstr "Tillater DocType, DocType. Vær forsiktig!"
+msgstr "Tillater flere dokumenttyper (DocType) kommaseparert. Vær forsiktig!"
#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
#. 'OAuth Settings'
@@ -2166,6 +2184,12 @@ msgstr "Legger også til feltet for statusavhengighet {0}"
msgid "Alternative Email ID"
msgstr "Alternativ e-post-ID"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2242,6 +2266,11 @@ msgstr "Korrigering ikke tillatt"
msgid "Amendment naming rules updated."
msgstr "Regler for navngivning av korrigeringer oppdatert."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Det oppstod en feil under innstilling av øktstandarder"
@@ -2308,7 +2337,7 @@ msgstr "Alle strengbaserte skriverspråk kan brukes. Å skrive rå kommandoer kr
#: frappe/core/page/permission_manager/permission_manager_help.html:36
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
-msgstr "Bortsett fra systemansvarlig kan roller med rettigheten Angi brukertillatelser angi tillatelser for andre brukere for den dokumenttypen."
+msgstr "Bortsett fra systemansvarlig kan roller med rettigheten Angi brukertillatelser angi tillatelser for andre brukere for den dokumenttypen (DocType)."
#. Label of the app_tab (Tab Break) field in DocType 'System Settings'
#. Label of the app_section (Section Break) field in DocType 'User'
@@ -2382,11 +2411,11 @@ msgstr "\"Legg til i\" kan være en av {0}"
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
-msgstr "\"Legg til i\" kommunikasjon mot denne dokumenttypen (må ha feltene «Avsender» og «Emne»). Disse feltene kan defineres i e-postinnstillingene i den tillagte dokumenttypen."
+msgstr "\"Legg til i\" kommunikasjon mot denne dokumenttypen (DocType) (må ha feltene «Avsender» og «Emne»). Disse feltene kan defineres i e-postinnstillingene i den tillagte dokumenttypen."
#: frappe/core/doctype/user_permission/user_permission_list.js:105
msgid "Applicable Document Types"
-msgstr "Gjeldende dokumenttyper"
+msgstr "Gjeldende dokumenttyper (DocType)"
#. Label of the applicable_for (Link) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
@@ -2413,7 +2442,7 @@ msgstr "Applikasjonsversjon"
#: frappe/core/doctype/user_invitation/user_invitation.py:195
msgid "Application is not installed"
-msgstr ""
+msgstr "Programmet er ikke installert"
#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -2424,10 +2453,10 @@ msgstr "Anvendt på"
msgid "Apply"
msgstr "Bruk"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
-msgstr "Bruk tilordningsregel"
+msgstr "Bruk tildelingsregel"
#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
@@ -2437,7 +2466,7 @@ msgstr "Bruk filtre"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Apply Strict User Permissions"
-msgstr "Bruk strenge brukertillatelser"
+msgstr "Bruk strenge brukerrettigheter"
#. Label of the view (Select) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
@@ -2448,7 +2477,7 @@ msgstr "Bruk på"
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Bruk på alle dokumenttyper"
+msgstr "Bruk på alle dokumenttyper (DocType)"
#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
@@ -2470,7 +2499,7 @@ msgstr "Bruk denne regelen hvis brukeren er eieren"
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
-msgstr "Bruk på alle dokumenttyper"
+msgstr "Bruk på alle dokumenttyper (DocType)"
#: frappe/model/workflow.py:322
msgid "Applying: {0}"
@@ -2509,9 +2538,9 @@ msgstr "Arkiverte kolonner"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Er du sikker på at du vil avbryte invitasjonen?"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
-msgstr "Er du sikker på at du vil slette oppgavene?"
+msgstr "Er du sikker på at du vil slette de tildelte oppgavene?"
#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
@@ -2539,13 +2568,13 @@ msgstr "Er du sikker på at du vil slette fanen? Alle seksjonene og feltene i fa
#: frappe/public/js/frappe/web_form/web_form.js:203
msgid "Are you sure you want to delete this record?"
-msgstr ""
+msgstr "Er du sikker på at du vil slette denne oppføringen?"
#: frappe/public/js/frappe/web_form/web_form.js:191
msgid "Are you sure you want to discard the changes?"
msgstr "Er du sikker på at du vil forkaste endringene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Er du sikker på at du vil generere en ny rapport?"
@@ -2553,7 +2582,7 @@ msgstr "Er du sikker på at du vil generere en ny rapport?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Er du sikker på at du vil slå sammen {0} med {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Er du sikker på at du vil fortsette?"
@@ -2608,6 +2637,12 @@ msgstr "Siden dokumentdeling er deaktivert, må du gi dem de nødvendige tillate
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "I henhold til forespørselen din er kontoen din og dataene på {0} knyttet til e-postadressen {1} slettet permanent"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2617,7 +2652,7 @@ msgstr "Tilordne betingelse"
msgid "Assign To"
msgstr "Tilordne til"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tilordne til"
@@ -2646,7 +2681,7 @@ msgstr "Tilordne til meg"
#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
-msgstr "Tilordne til den som har færrest oppdrag"
+msgstr "Tildel til den som har færrest oppgaver"
#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
msgid "Assign to the user set in this field"
@@ -2692,18 +2727,18 @@ msgstr "Tilordner..."
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr "Oppdrag"
+msgstr "Oppgave"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "Oppdrag fullført"
+msgstr "Oppgave fullført"
#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Days"
-msgstr "Antall tilordnede dager"
+msgstr "Antall tildelingsdager"
#. Name of a DocType
#. Label of a Link in the Tools Workspace
@@ -2713,31 +2748,31 @@ msgstr "Antall tilordnede dager"
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json
msgid "Assignment Rule"
-msgstr "Tilordningsregel"
+msgstr "Tildelingsregel"
#. Name of a DocType
#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
msgid "Assignment Rule Day"
-msgstr "Dag for tilordningsregel"
+msgstr "Dag for tildelingsregel"
#. Name of a DocType
#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
msgid "Assignment Rule User"
-msgstr "Bruker for tilordningsregel"
+msgstr "Bruker av tildelingsregel"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
msgid "Assignment Rule is not allowed on document type {0}"
-msgstr "Tildelingsregelen er ikke tillatt på dokumenttypen {0}"
+msgstr "Tildelingsregel er ikke tillatt på dokumenttypen (DocType) {0}"
#. Label of the assignment_rules_section (Section Break) field in DocType
#. 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Rules"
-msgstr "Regler for tilordning"
+msgstr "Regler for tildeling"
#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
-msgstr "Oppdatering av tilordnet oppgave på {0}"
+msgstr "Oppdatering av tildelt oppgave på {0}"
#: frappe/desk/form/assign_to.py:78
msgid "Assignment for {0} {1}"
@@ -2745,14 +2780,14 @@ msgstr "Oppgave for {0} {1}"
#: frappe/desk/doctype/todo/todo.py:62
msgid "Assignment of {0} removed by {1}"
-msgstr "Tilordning av {0} fjernet av {1}"
+msgstr "Tildeling av {0} fjernet av {1}"
#. Label of the enable_email_assignment (Check) field in DocType 'Notification
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
msgid "Assignments"
-msgstr "Tilordninger"
+msgstr "Tildelinger"
#. Label of the asynchronous (Check) field in DocType 'Workflow Transition
#. Task'
@@ -2760,7 +2795,7 @@ msgstr "Tilordninger"
msgid "Asynchronous"
msgstr "Asynkron"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Minst én kolonne må vises i rutenettet."
@@ -2770,7 +2805,7 @@ msgstr "Minst ett felt er obligatorisk i tabellen for nettskjemafelt"
#: frappe/core/doctype/data_export/data_export.js:44
msgid "At least one field of Parent Document Type is mandatory"
-msgstr "Minst ett felt av overordnet dokumenttype er påkrevd"
+msgstr "Minst ett felt av overordnet dokumenttype (DocType) er påkrevd"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -2828,7 +2863,7 @@ msgstr "Legg ved fil"
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Vedlagt til DocType"
+msgstr "Vedlagt til dokumenttype (DocType)"
#. Label of the attached_to_field (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
@@ -2840,7 +2875,7 @@ msgstr "Vedlagt til felt"
msgid "Attached To Name"
msgstr "Vedlagt til navn"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "\"Vedlagt til navn\" må være en streng eller et heltall"
@@ -2856,7 +2891,7 @@ msgstr "Vedlegg"
msgid "Attachment Limit (MB)"
msgstr "Vedleggsgrense (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Vedleggsgrensen er nådd"
@@ -2878,11 +2913,11 @@ msgstr "Vedlegg fjernet"
msgid "Attachments"
msgstr "Vedlegg"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Forsøker å koble til QZ-skuff..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Prøver å starte QZ Tray..."
@@ -3078,7 +3113,7 @@ msgstr "Melding for automatisk svar"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
-msgstr "Automatisk tilordning mislyktes: {0}"
+msgstr "Automatisk tildeling mislyktes: {0}"
#. Label of the follow_assigned_documents (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -3610,7 +3645,7 @@ msgstr "Bot"
#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
-msgstr "Både DocType og navn kreves"
+msgstr "Både dokumenttype (DocType) og navn kreves"
#: frappe/templates/includes/login/login.js:24
#: frappe/templates/includes/login/login.js:96
@@ -3674,7 +3709,7 @@ msgstr "Merkevarelogo"
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
-msgstr "Merkevaren / logo er det som vises øverst til venstre på verktøylinjen. Hvis det er et bilde, sørg for at det har en gjennomsiktig bakgrunn og bruk <img /> -taggen. Behold størrelsen som 200 piksler x 30 piksler."
+msgstr "Merkevaren (logo) er det som vises øverst til venstre på verktøylinjen. Hvis det er et bilde, sørg for at det har en gjennomsiktig bakgrunn og bruk <img /> -taggen. Behold størrelsen som 200 piksler x 30 piksler"
#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
@@ -3712,7 +3747,7 @@ msgstr "Bufferpool-størrelse"
#. Name of a Workspace
#: frappe/core/workspace/build/build.json
msgid "Build"
-msgstr "Bygg"
+msgstr "Utviklerverktøy"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -3740,15 +3775,15 @@ msgstr "Massesletting"
msgid "Bulk Edit"
msgstr "Masseredigering"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Masseredigering {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Massehandling mislyktes"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Massehandling vellykket"
@@ -3808,7 +3843,7 @@ msgstr "Skygger for knapp"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
-msgstr "Via feltet \"Navngiving av serier\""
+msgstr "Via feltet \"Nummerserie\""
#: frappe/website/doctype/web_page/web_page.js:111
#: frappe/website/doctype/web_page/web_page.js:118
@@ -3861,12 +3896,12 @@ msgstr "ABRUTT"
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "CC"
-msgstr ""
+msgstr "CC"
#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
-msgstr ""
+msgstr "CC"
#. Label of the cmd (Data) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -3972,7 +4007,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3987,12 +4022,12 @@ msgstr "Kampanjebeskrivelse (valgfritt)"
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
#: frappe/public/js/frappe/form/templates/set_sharing.html:50
msgid "Can Read"
-msgstr ""
+msgstr "Kan lese"
#: frappe/public/js/frappe/form/templates/set_sharing.html:7
#: frappe/public/js/frappe/form/templates/set_sharing.html:53
msgid "Can Share"
-msgstr ""
+msgstr "Kan dele"
#: frappe/public/js/frappe/form/templates/set_sharing.html:6
#: frappe/public/js/frappe/form/templates/set_sharing.html:52
@@ -4002,29 +4037,29 @@ msgstr "Kan registrere"
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
#: frappe/public/js/frappe/form/templates/set_sharing.html:51
msgid "Can Write"
-msgstr ""
+msgstr "Kan skrive"
#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "Can not rename as column {0} is already present on DocType."
-msgstr ""
+msgstr "Kan ikke endre navn fordi kolonne {0} allerede finnes i dokumenttype (DocType)."
#: frappe/core/doctype/doctype/doctype.py:1164
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
-msgstr ""
+msgstr "Kan bare endre til/fra autoincrement-navneregel når det ikke finnes data i dokumenttypen (DocType)"
#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
#. Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Can only list down the document types which has been linked to the User document type."
-msgstr "Kan bare liste ned dokumenttypene som har blitt linket til dokumenttypen Bruker."
+msgstr "Kan bare liste ned dokumenttypene (DocType) som har blitt linket til dokumenttypen Bruker."
#: frappe/desk/form/document_follow.py:48
msgid "Can't follow since changes are not tracked."
-msgstr ""
+msgstr "Kan ikke følge siden endringer ikke spores."
#: frappe/model/rename_doc.py:366
msgid "Can't rename {0} to {1} because {0} doesn't exist."
-msgstr ""
+msgstr "Kan ikke endre navn på {0} til {1} fordi {0} ikke finnes."
#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
#. Label of the cancel (Check) field in DocType 'DocPerm'
@@ -4032,7 +4067,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4040,7 +4075,7 @@ msgstr ""
msgid "Cancel"
msgstr "Avbryt"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Avbryt"
@@ -4058,7 +4093,7 @@ msgstr "Avbryt alt"
msgid "Cancel All Documents"
msgstr "Avbryt alle dokumenter"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Avbryt {0} dokumenter?"
@@ -4101,19 +4136,19 @@ msgstr "Kan ikke laste ned rapporten på grunn av manglende tillatelser"
#: frappe/client.py:452
msgid "Cannot Fetch Values"
-msgstr ""
+msgstr "Kan ikke hente verdier"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "Cannot Remove"
-msgstr ""
+msgstr "Kan ikke fjerne"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Kan ikke oppdatere etter registrering"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
-msgstr ""
+msgstr "Får ikke tilgang til filbanen {0}"
#: frappe/public/js/workflow_builder/utils.js:183
msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
@@ -4155,11 +4190,11 @@ msgstr "Kan ikke opprette en {0} mot et underdokument: {1}"
msgid "Cannot create private workspace of other users"
msgstr "Kan ikke opprette privat arbeidsområde for andre brukere"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Kan ikke slette Hjem- og Vedlegg-mappene"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Kan ikke slette eller avbryte fordi {0} {1} er koblet til {2} {3} {4}"
@@ -4222,8 +4257,8 @@ msgstr "Kan ikke redigere avbrutt dokument"
msgid "Cannot edit filters for standard charts"
msgstr "Kan ikke redigere filtre for standarddiagrammer"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Kan ikke redigere filtre for standard oversikt over nøkkeltall"
@@ -4233,23 +4268,23 @@ msgstr "Kan ikke redigere standardfelt"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131
msgid "Cannot enable {0} for a non-submittable doctype"
-msgstr "Kan ikke aktivere {0} for en dokumenttype som ikke kan registreres"
+msgstr "Kan ikke aktivere {0} for en dokumenttype (DocType) som ikke kan registreres"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
-msgstr ""
+msgstr "Kan ikke finne filen {} på disken"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
-msgstr ""
+msgstr "Kan ikke hente filinnholdet i en mappe"
#: frappe/printing/page/print/print.js:884
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Kan ikke ha flere skrivere tilordnet til ett og samme utskriftsformat."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
-msgstr ""
+msgstr "Kan ikke importere tabell med mer enn 5000 rader."
#: frappe/model/document.py:1105
msgid "Cannot link cancelled document: {0}"
@@ -4257,31 +4292,31 @@ msgstr "Kan ikke lenke til avbrutt dokument: {0}"
#: frappe/model/mapper.py:175
msgid "Cannot map because following condition fails:"
-msgstr ""
+msgstr "Kan ikke mappe fordi følgende betingelse mislykkes:"
#: frappe/core/doctype/data_import/importer.py:971
msgid "Cannot match column {0} with any field"
-msgstr ""
+msgstr "Kan ikke matche kolonnen {0} med noe felt"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
-msgstr ""
+msgstr "Kan ikke flytte rad"
#: frappe/public/js/frappe/views/reports/report_view.js:932
msgid "Cannot remove ID field"
-msgstr ""
+msgstr "Kan ikke fjerne ID-feltet"
#: frappe/core/page/permission_manager/permission_manager.py:132
msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
-msgstr ""
+msgstr "Kan ikke angi tillatelsen «Rapporter» hvis tillatelsen «Bare hvis oppretter» er angitt"
#: frappe/email/doctype/notification/notification.py:235
msgid "Cannot set Notification with event {0} on Document Type {1}"
-msgstr "Kan ikke angi varsling med hendelse {0} på dokumenttype {1}"
+msgstr "Kan ikke angi varsling med hendelse {0} på dokumenttype (DocType) {1}"
#: frappe/core/doctype/docshare/docshare.py:67
msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
-msgstr "Kan ikke dele {0} med registreringstillatelse ettersom dokumenttypen {1} ikke kan registreres"
+msgstr "Kan ikke dele {0} med registreringstillatelse ettersom dokumenttypen (DocType) {1} ikke kan registreres"
#: frappe/public/js/frappe/list/bulk_operations.js:291
msgid "Cannot submit {0}."
@@ -4290,19 +4325,19 @@ msgstr "Kan ikke registrere {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
#: frappe/public/js/frappe/list/bulk_operations.js:366
msgid "Cannot update {0}"
-msgstr ""
+msgstr "Kan ikke oppdatere {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
-msgstr ""
+msgstr "Kan ikke bruke underspørsmål her."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
-msgstr ""
+msgstr "Kan ikke bruke {0} i rekkefølge/gruppe etter"
#: frappe/public/js/frappe/list/bulk_operations.js:297
msgid "Cannot {0} {1}."
-msgstr ""
+msgstr "Kan ikke {0} {1}."
#: frappe/utils/password_strength.py:181
msgid "Capitalization doesn't help very much."
@@ -4310,12 +4345,12 @@ msgstr "Store bokstaver hjelper ikke noe særlig."
#: frappe/public/js/frappe/ui/capture.js:294
msgid "Capture"
-msgstr ""
+msgstr "Ta bilde"
#. Label of the card (Link) field in DocType 'Number Card Link'
#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr ""
+msgstr "Kort"
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
@@ -4324,11 +4359,11 @@ msgstr "Kortskille"
#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
-msgstr ""
+msgstr "Kortetikett"
#: frappe/public/js/frappe/widgets/widget_dialog.js:262
msgid "Card Links"
-msgstr ""
+msgstr "Kortlenker"
#. Label of the cards (Table) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -4341,12 +4376,12 @@ msgstr "Kort"
#: frappe/public/js/frappe/views/interaction.js:72
#: frappe/website/doctype/help_article/help_article.json
msgid "Category"
-msgstr ""
+msgstr "Kategori"
#. Label of the category_description (Text) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr ""
+msgstr "Kategoribeskrivelse"
#. Label of the category_name (Data) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
@@ -4418,20 +4453,20 @@ msgstr "Endret av"
#. Name of a DocType
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
msgid "Changelog Feed"
-msgstr ""
+msgstr "Endringslogg"
#. Label of the changed_values (HTML) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Changes"
-msgstr ""
+msgstr "Endringer"
#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
-msgstr ""
+msgstr "Hvis du endrer en innstilling, vil det påvirke alle e-postkontoer som er knyttet til dette domenet."
#: frappe/core/doctype/system_settings/system_settings.js:67
msgid "Changing rounding method on site with data can result in unexpected behaviour."
-msgstr ""
+msgstr "Endring av avrundingsmetode på stedet med data kan føre til uventet oppførsel."
#. Label of the channel (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -4446,7 +4481,7 @@ msgstr "Diagram"
#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr ""
+msgstr "Konfigurasjon av diagram"
#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
@@ -4455,7 +4490,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr ""
+msgstr "Diagram-navn"
#. Label of the chart_options (Code) field in DocType 'Dashboard'
#. Label of the chart_options_section (Section Break) field in DocType
@@ -4463,12 +4498,12 @@ msgstr ""
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr ""
+msgstr "Alternativer for diagram"
#. Label of the source (Link) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr ""
+msgstr "Kilde for diagram"
#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -4481,7 +4516,7 @@ msgstr "Diagramtype"
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr ""
+msgstr "Diagrammer"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -4519,7 +4554,7 @@ msgstr "Sjekk feilloggen for mer informasjon: {0}"
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
-msgstr ""
+msgstr "Merk av for dette hvis du ikke vil at brukerne skal registrere seg for en konto på nettstedet ditt. Brukerne får ikke skrivebordstilgang med mindre du eksplisitt gir dem det."
#. Description of the 'User must always select' (Check) field in DocType
#. 'Document Naming Settings'
@@ -4530,52 +4565,52 @@ msgstr "Marker denne hvis du vil tvinge brukeren til å velge en serie før du l
#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
-msgstr ""
+msgstr "Merk av for å vise hele tallverdien (f.eks. 1 234 567 i stedet for 1,2 millioner)."
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
-msgstr ""
+msgstr "Sjekker ett øyeblikk"
#: frappe/website/doctype/website_settings/website_settings.js:140
msgid "Checking this will enable tracking page views for blogs, web pages, etc."
-msgstr ""
+msgstr "Hvis du merker av for dette, kan du spore sidevisninger for blogger, nettsider osv."
#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
#. DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr ""
+msgstr "Hvis du merker av for dette, skjules egendefinerte dokumenttyper (DocType) og rapportkort i Links-delen"
#: frappe/website/doctype/web_page/web_page.js:78
msgid "Checking this will publish the page on your website and it'll be visible to everyone."
-msgstr ""
+msgstr "Hvis du merker av for dette, publiseres siden på nettstedet ditt, og den blir synlig for alle."
#: frappe/website/doctype/web_page/web_page.js:104
msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
-msgstr ""
+msgstr "Hvis du merker av for dette, vises et tekstområde der du kan skrive egendefinert javascript som skal kjøres på denne siden."
#: frappe/www/list.py:85
msgid "Child DocTypes are not allowed"
-msgstr ""
+msgstr "Underordnede dokumenttype (DocType) er ikke tillatt"
#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Child Doctype"
-msgstr ""
+msgstr "Underordnet dokumenttype (DocType)"
#: frappe/core/doctype/doctype/doctype.py:1648
msgid "Child Table {0} for field {1}"
-msgstr ""
+msgstr "Underordnet tabell {0} for feltet {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr ""
+msgstr "Underordnede tabeller vises som et rutenett i andre dokumenttyper (DocType)"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
-msgstr ""
+msgstr "Underordnede spørringsfelt for '{0}' må være en liste eller en tupel."
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
@@ -4583,17 +4618,17 @@ msgstr "Velg eksisterende kort eller opprett nytt kort"
#: frappe/public/js/frappe/views/workspace/workspace.js:571
msgid "Choose a block or continue typing"
-msgstr ""
+msgstr "Velg en blokk eller fortsett å skrive"
#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
#: frappe/public/js/frappe/form/controls/color.js:5
msgid "Choose a color"
-msgstr ""
+msgstr "Velg en farge"
#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
#: frappe/public/js/frappe/form/controls/icon.js:5
msgid "Choose an icon"
-msgstr ""
+msgstr "Velg et ikon"
#. Description of the 'Two Factor Authentication method' (Select) field in
#. DocType 'System Settings'
@@ -4602,9 +4637,10 @@ msgid "Choose authentication method to be used by all users"
msgstr "Velg autentiseringsmetode som skal brukes av alle brukere"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
-msgstr "By"
+msgstr "Poststed"
#. Label of the city (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -4628,7 +4664,7 @@ msgstr "Fjern og legg til mal"
msgid "Clear All"
msgstr "Fjern alt"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Slett oppgave"
@@ -4684,7 +4720,7 @@ msgstr "Klikk på knappen for å logge inn på {0}"
#: frappe/templates/emails/data_deletion_approval.html:2
msgid "Click on the link below to approve the request"
-msgstr ""
+msgstr "Klikk på lenken nedenfor for å godkjenne forespørselen"
#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
@@ -4696,7 +4732,7 @@ msgstr "Klikk på lenken nedenfor for å laste ned dataene dine"
#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
-msgstr ""
+msgstr "Klikk på lenken nedenfor for å bekrefte forespørselen din"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
@@ -4705,26 +4741,26 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Klikk på {0} for å generere oppdateringstoken."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klikk på tabellen for å redigere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Klikk for å angi dynamiske filtre"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Klikk for å angi filtre"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
-msgstr ""
+msgstr "Klikk for å sortere etter {0}"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -4741,7 +4777,7 @@ msgstr "Klient"
#. Label of the client_code_section (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr ""
+msgstr "Klientkode"
#. Label of the sb_client_credentials_section (Section Break) field in DocType
#. 'Connected App'
@@ -4750,7 +4786,7 @@ msgstr ""
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr ""
+msgstr "Klientlegitimasjon"
#. Label of the client_id (Data) field in DocType 'Google Settings'
#. Label of the client_id (Data) field in DocType 'OAuth Client'
@@ -4759,24 +4795,24 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr ""
+msgstr "Klient-ID"
#. Label of the client_id (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Client Id"
-msgstr ""
+msgstr "Klient-ID"
#. Label of the client_information (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Kundeinformasjon"
+msgstr "Klientinformasjon"
#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Client Metadata"
-msgstr ""
+msgstr "Klientmetadata"
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -4786,7 +4822,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/website/doctype/web_page/web_page.js:103
msgid "Client Script"
-msgstr ""
+msgstr "Klientskript"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
@@ -4797,7 +4833,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr ""
+msgstr "Klienthemmelighet"
#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
#. Client'
@@ -4809,22 +4845,22 @@ msgstr "Grunnleggende klienthemmelighet"
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Client Secret Post"
-msgstr "Kundehemmelig innlegg"
+msgstr "Klienthemmelighet (POST)"
#. Label of the client_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Client URI"
-msgstr ""
+msgstr "Klient-URI"
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
-msgstr ""
+msgstr "Klient-URLer"
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Client script"
-msgstr ""
+msgstr "Klientskript"
#: frappe/core/doctype/communication/communication.js:39
#: frappe/desk/doctype/todo/todo.js:23
@@ -4857,7 +4893,7 @@ msgstr "Lukket"
#: frappe/templates/discussions/reply_section.html:53
#: frappe/templates/discussions/topic_modal.html:11
msgid "Cmd+Enter to add comment"
-msgstr ""
+msgstr "Cmd+Enter for å legge til kommentar"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -4900,7 +4936,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Fold sammen kodefeltet"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Fold sammen alle"
@@ -4955,7 +4991,7 @@ msgstr "Sammenfoldbarhet avhenger av (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5011,17 +5047,17 @@ msgstr "Kolonnenavn"
msgid "Column Name cannot be empty"
msgstr "Kolonnenavnet kan ikke være tomt"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Kolonnebredde"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Kolonnebredden kan ikke være null."
#: frappe/core/doctype/data_import/data_import.js:380
msgid "Column {0}"
-msgstr ""
+msgstr "Kolonne {0}"
#. Label of the columns (Int) field in DocType 'DocField'
#. Label of the columns_section (Section Break) field in DocType 'Report'
@@ -5035,20 +5071,20 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr ""
+msgstr "Kolonner"
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
msgstr "Kolonner / Felt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
-msgstr ""
+msgstr "Kolonner basert på"
#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
-msgstr ""
+msgstr "Kombinasjon av tildelingstype ({0}) og svartype ({1}) er ikke tillatt."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -5068,12 +5104,12 @@ msgstr "Kommentar"
#. Label of the comment_by (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr ""
+msgstr "Kommentar av"
#. Label of the comment_email (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr ""
+msgstr "Kommentar e-post"
#. Label of the comment_type (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -5086,19 +5122,19 @@ msgstr "Kommentaren kan bare redigeres av eieren"
#: frappe/desk/form/utils.py:75
msgid "Comment publicity can only be updated by the original author or a System Manager."
-msgstr ""
+msgstr "Kommentaroffentlighet kan bare oppdateres av den opprinnelige forfatteren eller en systemansvarlig."
#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:129
msgid "Comments"
-msgstr ""
+msgstr "Kommentarer"
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Comments and Communications will be associated with this linked document"
-msgstr ""
+msgstr "Kommentarer og kommunikasjon vil bli knyttet til dette lenkede dokumentet"
#: frappe/templates/includes/comments/comments.py:52
msgid "Comments cannot have links or email addresses"
@@ -5112,16 +5148,16 @@ msgstr "Kommersiell avrunding"
#. Label of the commit (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr ""
+msgstr "Commit"
#. Label of the committed (Check) field in DocType 'Console Log'
#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
-msgstr ""
+msgstr "Committed"
#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
-msgstr ""
+msgstr "Vanlige navn og etternavn er lette å gjette."
#. Name of a DocType
#. Option for the 'Communication Type' (Select) field in DocType
@@ -5138,12 +5174,12 @@ msgstr "Kommunikasjon"
#. Name of a DocType
#: frappe/core/doctype/communication_link/communication_link.json
msgid "Communication Link"
-msgstr ""
+msgstr "Kommunikasjonslenke"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Communication Logs"
-msgstr ""
+msgstr "Kommunikasjonslogger"
#. Label of the communication_type (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -5152,13 +5188,13 @@ msgstr "Type kommunikasjon"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
msgid "Communication secret not set"
-msgstr ""
+msgstr "Kommunikasjonshemmelighet er ikke angitt"
#. Name of a DocType
#: frappe/website/doctype/company_history/company_history.json
#: frappe/www/about.html:29
msgid "Company History"
-msgstr ""
+msgstr "Selskapets historie"
#. Label of the company_introduction (Text Editor) field in DocType 'About Us
#. Settings'
@@ -5169,13 +5205,13 @@ msgstr "Selskapets introduksjon"
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
-msgstr ""
+msgstr "Selskapets navn"
#: frappe/core/doctype/server_script/server_script.js:14
#: frappe/custom/doctype/client_script/client_script.js:56
#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
-msgstr ""
+msgstr "Sammenlign versjoner"
#: frappe/core/doctype/server_script/server_script.py:159
msgid "Compilation warning"
@@ -5183,7 +5219,7 @@ msgstr "Advarsel om kompilering"
#: frappe/website/doctype/website_theme/website_theme.py:123
msgid "Compiled Successfully"
-msgstr ""
+msgstr "Kompileringen var vellykket"
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -5257,8 +5293,8 @@ msgstr "Komprimert"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5306,7 +5342,7 @@ msgstr "Konfigurasjon"
msgid "Configure Chart"
msgstr "Konfigurer diagram"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Konfigurer kolonner"
@@ -5331,49 +5367,49 @@ msgstr "Konfigurer hvordan endrede dokumenter skal navngis.
\n\n"
#. Description of a DocType
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Configure various aspects of how document naming works like naming series, current counter."
-msgstr ""
+msgstr "Konfigurer ulike aspekter av hvordan dokumentnavngivning fungerer, for eksempel nummerserie, gjeldende teller."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
-msgstr ""
+msgstr "Bekreft"
#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
-msgstr ""
+msgstr "Bekreft"
#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
-msgstr ""
+msgstr "Bekreft tilgang"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
-msgstr ""
+msgstr "Bekreft sletting av konto"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Bekreft nytt passord"
#: frappe/www/update-password.html:55
msgid "Confirm Password"
-msgstr ""
+msgstr "Bekreft passord"
#: frappe/templates/emails/data_deletion_approval.html:6
#: frappe/templates/emails/delete_data_confirmation.html:7
msgid "Confirm Request"
-msgstr ""
+msgstr "Bekreft forespørsel"
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr ""
+msgstr "Mal for bekreftelses-e-post"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
-msgstr ""
+msgstr "Bekreftet"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
@@ -5381,7 +5417,7 @@ msgstr "Gratulerer med å ha fullført moduloppsettet. Hvis du vil vite mer, kan
#: frappe/integrations/doctype/connected_app/connected_app.js:20
msgid "Connect to {}"
-msgstr ""
+msgstr "Koble til {}"
#. Label of the connected_app (Link) field in DocType 'Email Account'
#. Name of a DocType
@@ -5395,24 +5431,24 @@ msgstr "Tilkoblet app"
#. Label of the connected_user (Link) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
-msgstr ""
+msgstr "Tilkoblet bruker"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Koblet til QZ Tray!"
#: frappe/public/js/frappe/request.js:36
msgid "Connection Lost"
-msgstr ""
+msgstr "Tilkoblingen er brutt"
#: frappe/templates/pages/integrations/gcalendar-success.html:3
msgid "Connection Success"
-msgstr ""
+msgstr "Tilkobling vellykket"
#: frappe/public/js/frappe/dom.js:446
msgid "Connection lost. Some features might not work."
-msgstr ""
+msgstr "Forbindelsen ble brutt. Enkelte funksjoner fungerer kanskje ikke."
#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
@@ -5427,47 +5463,51 @@ msgstr "Koblinger"
#. Label of the console (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr ""
+msgstr "Konsoll"
#. Name of a DocType
#: frappe/desk/doctype/console_log/console_log.json
msgid "Console Log"
-msgstr ""
+msgstr "Konsoll-logg"
#: frappe/desk/doctype/console_log/console_log.py:24
msgid "Console Logs can not be deleted"
-msgstr ""
+msgstr "Konsoll-logger kan ikke slettes"
#. Label of the constraints_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
-msgstr ""
+msgstr "Begrensninger"
#. Name of a DocType
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/communication/communication.js:113
msgid "Contact"
-msgstr ""
+msgstr "Kontakt"
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "Google Kalender – Kontakt/e-post ikke funnet. Deltaker ble ikke lagt til for –
{0}"
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr ""
+msgstr "Kontaktdetaljer"
#. Name of a DocType
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Contact Email"
-msgstr ""
+msgstr "E-postadresse for kontakt"
#. Label of the phone_nos (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr ""
+msgstr "Kontaktnummere"
#. Name of a DocType
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Contact Phone"
-msgstr ""
+msgstr "Kontakttelefon"
#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
msgid "Contact Synced with Google Contacts."
@@ -5512,7 +5552,7 @@ msgstr "Inneholder {0} sikkerhetsoppdateringer"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5583,15 +5623,15 @@ msgstr "Kontrollerer om nye brukere kan registrere seg med denne sosiale pålogg
#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
-msgstr ""
+msgstr "Kopier til utklippstavlen"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93
msgid "Copy Link"
-msgstr ""
+msgstr "Kopier lenke"
#: frappe/website/doctype/web_form/web_form.js:29
msgid "Copy embed code"
-msgstr ""
+msgstr "Kopier innbyggingskode"
#: frappe/public/js/frappe/request.js:621
msgid "Copy error to clipboard"
@@ -5599,20 +5639,20 @@ msgstr "Kopier feil til utklippstavlen"
#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
-msgstr ""
+msgstr "Kopier til utklippstavlen"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "Kopier token til utklippstavle"
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr ""
+msgstr "Opphavsrett"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
-msgstr ""
+msgstr "Kjerne-dokumenttyper (DocType) kan ikke tilpasses."
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
@@ -5624,23 +5664,23 @@ msgstr "Riktig versjon:"
#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
-msgstr ""
+msgstr "Kunne ikke koble til serveren for utgående e-post"
#: frappe/model/document.py:1101
msgid "Could not find {0}"
-msgstr ""
+msgstr "Kunne ikke finne {0}"
#: frappe/core/doctype/data_import/importer.py:933
msgid "Could not map column {0} to field {1}"
-msgstr ""
+msgstr "Kunne ikke tilordne kolonne {0} til felt {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
-msgstr ""
+msgstr "Kunne ikke analysere feltet: {0}"
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up:"
-msgstr ""
+msgstr "Kunne ikke starte opp:"
#: frappe/public/js/frappe/web_form/web_form.js:383
msgid "Couldn't save, please check the data you have entered"
@@ -5661,7 +5701,7 @@ msgstr "Antall"
#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
-msgstr ""
+msgstr "Egendefinering av teller"
#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
#. Shortcut'
@@ -5678,7 +5718,7 @@ msgstr "Antall lenkede dokumenter"
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr ""
+msgstr "Teller"
#. Label of the country (Link) field in DocType 'Address'
#. Label of the country (Link) field in DocType 'Address Template'
@@ -5687,20 +5727,21 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Landskode er påkrevd"
#. Label of the country_name (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr ""
+msgstr "Landsnavn"
#. Label of the county (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -5711,7 +5752,7 @@ msgstr "Fylke"
#: frappe/public/js/frappe/utils/number_systems.js:45
msgctxt "Number system"
msgid "Cr"
-msgstr ""
+msgstr "Kredit"
#. Label of the create (Check) field in DocType 'Custom DocPerm'
#. Label of the create (Check) field in DocType 'DocPerm'
@@ -5725,15 +5766,15 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Opprett"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
-msgstr ""
+msgstr "Opprett og fortsett"
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
msgid "Create Address"
@@ -5742,16 +5783,16 @@ msgstr "Opprett adresse"
#: frappe/public/js/frappe/views/reports/query_report.js:187
#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
-msgstr ""
+msgstr "Opprett kort"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
-msgstr ""
+msgstr "Opprett diagram"
#: frappe/public/js/form_builder/components/controls/TableControl.vue:62
msgid "Create Child Doctype"
-msgstr "Opprett underordnet dokumenttype"
+msgstr "Opprett underordnet dokumenttype (DocType)"
#. Label of the create_contact (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -5779,20 +5820,20 @@ msgstr "Opprett logg"
msgid "Create New"
msgstr "Opprett ny"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Opprett ny"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
-msgstr "Opprett ny dokumenttype"
+msgstr "Opprett ny dokumenttype (DocType)"
#: frappe/public/js/frappe/list/list_view_select.js:204
msgid "Create New Kanban Board"
msgstr "Opprett nytt Kanban-board"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Opprett bruker-e-post"
@@ -5815,8 +5856,8 @@ msgstr "Opprett en ny post"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Opprett en ny {0}"
@@ -5832,7 +5873,7 @@ msgstr "Opprett eller rediger utskriftsformat"
msgid "Create or Edit Workflow"
msgstr "Opprett eller rediger arbeidsflyt"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Opprett din første {0}"
@@ -5842,25 +5883,25 @@ msgstr "Opprett din arbeidsflyt visuelt med arbeidsflytbyggeren."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Opprettet"
#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
-msgstr ""
+msgstr "Opprettet den"
#: frappe/model/meta.py:58
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73
#: frappe/public/js/frappe/model/meta.js:206
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
-msgstr ""
+msgstr "Opprettet av"
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
-msgstr ""
+msgstr "Opprettet egendefinert felt {0} i {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53
@@ -5873,7 +5914,7 @@ msgstr "Opprettet den"
#: frappe/public/js/frappe/desk.js:517
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
-msgstr ""
+msgstr "Oppretter {0}"
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
msgid "Creation of this document is only permitted in developer mode."
@@ -5891,7 +5932,7 @@ msgstr "Cron"
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr ""
+msgstr "Cron-format"
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
@@ -5903,15 +5944,15 @@ msgstr "Beskjær"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Ctrl + Down"
-msgstr ""
+msgstr "Ctrl + ned"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Ctrl + Up"
-msgstr ""
+msgstr "Ctrl + opp"
#: frappe/templates/includes/comments/comments.html:32
msgid "Ctrl+Enter to add comment"
-msgstr ""
+msgstr "Ctrl+Enter for å legge til kommentar"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -5940,7 +5981,7 @@ msgstr "Valuta"
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr ""
+msgstr "Valutanavn"
#. Label of the currency_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -5950,7 +5991,7 @@ msgstr "Valutapresisjon"
#. Description of a DocType
#: frappe/geo/doctype/currency/currency.json
msgid "Currency list stores the currency value, its symbol and fraction unit"
-msgstr ""
+msgstr "Valutalisten lagrer valutaverdien, dens symbol og fraksjonsenhet"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -5960,20 +6001,20 @@ msgstr "Nåværende"
#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
-msgstr ""
+msgstr "Nåværende jobb-ID"
#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
-msgstr ""
+msgstr "Nåværende verdi"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Current status"
-msgstr ""
+msgstr "Gjeldende tilstand"
#: frappe/public/js/frappe/form/form_viewers.js:5
msgid "Currently Viewing"
-msgstr ""
+msgstr "Ser for øyeblikket på "
#. Label of the custom (Check) field in DocType 'DocType Action'
#. Label of the custom (Check) field in DocType 'DocType Link'
@@ -6006,19 +6047,19 @@ msgstr "Egendefinert"
#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Custom Base URL"
-msgstr ""
+msgstr "Egendefinert basis-URL"
#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
#. Block'
#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Custom Block Name"
-msgstr ""
+msgstr "Egendefinert blokknavn"
#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
#. Label of the custom_blocks (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
-msgstr ""
+msgstr "Egendefinerte blokker"
#. Label of the css (Code) field in DocType 'Print Format'
#. Label of the custom_css (Code) field in DocType 'Web Form'
@@ -6031,12 +6072,12 @@ msgstr "Egendefinert CSS"
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr ""
+msgstr "Egendefinert konfigurasjon"
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Custom Delimiters"
-msgstr ""
+msgstr "Egendefinerte skilletegn"
#. Name of a DocType
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -6046,11 +6087,11 @@ msgstr "Egendefinert dokumenttillatelse"
#. Label of the custom_select_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Custom Document Types (Select Permission)"
-msgstr "Egendefinerte dokumenttyper (velg tillatelse)"
+msgstr "Egendefinerte dokumenttyper (DocType) (velg tillatelse)"
#: frappe/core/doctype/user_type/user_type.py:105
msgid "Custom Document Types Limit Exceeded"
-msgstr "Egendefinert dokumenttype overskred grensen"
+msgstr "Egendefinert dokumenttype (DocType) overskred grensen"
#: frappe/desk/desktop.py:524
msgid "Custom Documents"
@@ -6069,11 +6110,11 @@ msgstr "Egendefinert felt {0} er opprettet av administratoren og kan bare slette
#: frappe/custom/doctype/custom_field/custom_field.py:277
msgid "Custom Fields can only be added to a standard DocType."
-msgstr "Tilpassede felt kan bare legges til i en standard DocType."
+msgstr "Tilpassede felt kan bare legges til i en standard dokumenttype (DocType)."
#: frappe/custom/doctype/custom_field/custom_field.py:274
msgid "Custom Fields cannot be added to core DocTypes."
-msgstr "Tilpassede felt kan ikke legges til i kjerne-DocTypes."
+msgstr "Tilpassede felt kan ikke legges til i kjerne-dokumenttyper (DocType)."
#. Label of the custom_footer_section (Section Break) field in DocType 'Website
#. Settings'
@@ -6136,7 +6177,7 @@ msgstr "Egendefinerte alternativer"
#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr ""
+msgstr "Egendefinerte overstyringer"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -6145,32 +6186,32 @@ msgstr "Egendefinerte rapporter"
#: frappe/desk/desktop.py:525
msgid "Custom Reports"
-msgstr ""
+msgstr "Egendefinerte rapporter"
#. Name of a DocType
#: frappe/core/doctype/custom_role/custom_role.json
msgid "Custom Role"
-msgstr ""
+msgstr "Egendefinert rolle"
#. Label of the custom_scss (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr ""
+msgstr "Egendefinert SCSS"
#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr ""
+msgstr "Egendefinert sidepanelmeny"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
-msgstr ""
+msgstr "Egendefinert oversettelse"
#: frappe/custom/doctype/custom_field/custom_field.py:423
msgid "Custom field renamed to {0} successfully."
-msgstr ""
+msgstr "Egendefinert felt har endret navn til {0}."
#: frappe/api/v2.py:148
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
@@ -6179,10 +6220,10 @@ msgstr "Tilpasset get_list-metode for {0} må returnere et QueryBuilder-objekt e
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
-msgstr ""
+msgstr "Egendefinert?"
#. Group in DocType's connections
#. Group in Module Def's connections
@@ -6193,19 +6234,19 @@ msgstr ""
#: frappe/core/workspace/build/build.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Customization"
-msgstr ""
+msgstr "Egendefinering"
#: frappe/public/js/frappe/views/workspace/workspace.js:358
msgid "Customizations Discarded"
-msgstr ""
+msgstr "Forkastet egendefineringer"
#: frappe/custom/doctype/customize_form/customize_form.js:465
msgid "Customizations Reset"
-msgstr ""
+msgstr "Nullstilling av egendefineringer"
#: frappe/modules/utils.py:96
msgid "Customizations for {0} exported to:
{1}"
-msgstr ""
+msgstr "Egendefinering for {0} eksportert til:
{1}"
#: frappe/printing/page/print/print.js:184
#: frappe/public/js/frappe/form/templates/print_layout.html:39
@@ -6214,14 +6255,14 @@ msgstr ""
msgid "Customize"
msgstr "Egendefiner"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Egendefiner"
#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
-msgstr ""
+msgstr "Egendefine undertabell"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
@@ -6233,27 +6274,27 @@ msgstr "Egendefiner oversiktspanelet"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
-msgstr ""
+msgstr "Tilpass skjema"
#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
-msgstr ""
+msgstr "Tilpass skjema - {0}"
#. Name of a DocType
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr ""
+msgstr "Tilpass skjemafelt"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Customize properties, naming, fields and more for standard doctypes"
-msgstr "Tilpass egenskaper, navngivning, felt og mer for standard DocTypes"
+msgstr "Tilpass egenskaper, navngivning, felt og mer for standard dokumenttyper (DocType)"
#: frappe/public/js/frappe/views/file/file_view.js:144
msgid "Cut"
-msgstr ""
+msgstr "Klipp ut"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -6267,7 +6308,7 @@ msgstr "Cyan"
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
-msgstr "SLETT"
+msgstr "DELETE"
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
@@ -6464,7 +6505,7 @@ msgstr "Logg for dataimport"
msgid "Data Import Template"
msgstr "Mal for dataimport"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Dataene er for lange"
@@ -6495,7 +6536,7 @@ msgstr "Utnyttelse av radstørrelse i databasen"
msgid "Database Storage Usage By Tables"
msgstr "Bruk av databaselagring etter tabeller"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Grense for radstørrelse i databasetabellen"
@@ -6841,7 +6882,7 @@ msgstr "Definerer handlinger på tilstander og neste trinn og tillatte roller."
#. field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted."
-msgstr ""
+msgstr "Angir hvor lenge eksporterte rapporter som sendes via e-post, skal oppbevares i systemet. Eldre filer slettes automatisk."
#. Description of a DocType
#: frappe/workflow/doctype/workflow/workflow.json
@@ -6865,13 +6906,13 @@ msgstr "Forsinket"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Slett"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Slett"
@@ -6893,7 +6934,7 @@ msgstr "Slett alt"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Delete Background Exported Reports After (Hours)"
-msgstr ""
+msgstr "Slett bakgrunnseksporterte rapporter etter (timer)"
#: frappe/public/js/form_builder/components/Section.vue:196
msgctxt "Title of confirmation dialog"
@@ -6904,7 +6945,7 @@ msgstr "Slett kolonne"
msgid "Delete Data"
msgstr "Slett data"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Slett Kanban-board"
@@ -6918,7 +6959,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Slett fane"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Slett og generer ny"
@@ -6960,12 +7001,12 @@ msgstr "Slett fane"
msgid "Delete this record to allow sending to this email address"
msgstr "Slett denne oppføringen for å tillate sending til denne e-postadressen"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Slette {0} element permanent?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Slette {0} elementer permanent?"
@@ -6984,7 +7025,7 @@ msgstr "Slettet"
#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "Slettet dokumenttype"
+msgstr "Slettet dokumenttype (DocType)"
#. Name of a DocType
#: frappe/core/doctype/deleted_document/deleted_document.json
@@ -7001,7 +7042,7 @@ msgstr "Slettede dokumenter"
msgid "Deleted Name"
msgstr "Slettet navn"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Sletting av alle dokumenter var vellykket"
@@ -7009,7 +7050,7 @@ msgstr "Sletting av alle dokumenter var vellykket"
msgid "Deleted!"
msgstr "Slettet!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Sletter {0}"
@@ -7426,7 +7467,7 @@ msgstr "Avvis"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:572
msgctxt "Stop showing the onboarding widget."
msgid "Dismiss"
-msgstr "Slå av"
+msgstr "Hopp over"
#. Label of the display (Section Break) field in DocType 'DocField'
#. Label of the updates_tab (Tab Break) field in DocType 'System Settings'
@@ -7462,10 +7503,14 @@ msgstr "Ikke opprett ny bruker"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Ikke opprett ny bruker hvis bruker med e-postadresse ikke finnes i systemet."
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Ikke rediger overskrifter som er forhåndsinnstilte i malen"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Vil du fortsatt fortsette?"
@@ -7561,104 +7606,104 @@ msgstr "DocType"
#: frappe/core/doctype/doctype/doctype.py:1578
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
-msgstr "DocType {0} angitt for feltet {1} må ha minst ett lenkefelt"
+msgstr "Dokumenttype (DocType) {0} angitt for feltet {1} må ha minst ett lenkefelt"
#. Name of a DocType
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#: frappe/core/doctype/doctype_action/doctype_action.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Action"
-msgstr "DocType-handling"
+msgstr "Handling (DocType)"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#. Label of the doctype_event (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "DocType Event"
-msgstr "DocType Event"
+msgstr "Hendelse (DocType)"
#. Name of a DocType
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
msgid "DocType Layout"
-msgstr "DocType-oppsett"
+msgstr "Oppsett (DocType)"
#. Name of a DocType
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
msgid "DocType Layout Field"
-msgstr "Felt for DocType-oppsett"
+msgstr "Oppsettsfelt (DocType)"
#. Name of a DocType
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#: frappe/core/doctype/doctype_link/doctype_link.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Link"
-msgstr "DocType-lenke"
+msgstr "Lenke (DocType)"
#. Name of a DocType
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType State"
-msgstr "DocType-tilstand"
+msgstr "Tilstand (DocType)"
#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
-msgstr "DocType-visning"
+msgstr "Visning av dokumenttype (DocType)"
#: frappe/core/doctype/doctype/doctype.py:657
msgid "DocType can not be merged"
-msgstr "DocType kan ikke slås sammen"
+msgstr "Dokumenttype (DocType) kan ikke slås sammen"
#: frappe/core/doctype/doctype/doctype.py:651
msgid "DocType can only be renamed by Administrator"
-msgstr "DocType kan bare gis nytt navn av administrator"
+msgstr "Dokumenttype (DocType) kan bare gis nytt navn av administrator"
#. Description of a DocType
#: frappe/core/doctype/doctype/doctype.json
msgid "DocType is a Table / Form in the application."
-msgstr "DocType er en tabell/et skjema i applikasjonen."
+msgstr "En dokumenttype (DocType) er en tabell eller et skjema i applikasjonen."
#: frappe/integrations/doctype/webhook/webhook.py:83
msgid "DocType must be Submittable for the selected Doc Event"
-msgstr "DocType må være Submittable for det valgte Doc Event"
+msgstr "Dokumenttypen (DocType) må kunne sendes inn for den valgte (DocType-) hendelsen"
#: frappe/client.py:403
msgid "DocType must be a string"
-msgstr "DokType må være en streng"
+msgstr "Dokumenttype (DocType) må være en streng"
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
-msgstr "DocType må ha minst ett felt"
+msgstr "Dokumenttype (DocType) må ha minst ett felt"
#: frappe/core/doctype/log_settings/log_settings.py:57
msgid "DocType not supported by Log Settings."
-msgstr "DocType støttes ikke av logginnstillingene."
+msgstr "Dokumenttype (DocType) støttes ikke av logginnstillingene."
#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "DocType on which this Workflow is applicable."
-msgstr "DocType som denne arbeidsflyten gjelder for."
+msgstr "Dokumenttypen (DocType) denne arbeidsflyten gjelder for."
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
-msgstr "DocType påkrevd"
+msgstr "Dokumenttype (DocType) er påkrevd"
#: frappe/modules/utils.py:175
msgid "DocType {0} does not exist."
-msgstr "DocType {0} finnes ikke."
+msgstr "Dokumenttype (DocType) {0} finnes ikke."
#: frappe/modules/utils.py:238
msgid "DocType {} not found"
-msgstr "DocType {} ble ikke funnet"
+msgstr "Dokumenttype (DocType) {} ble ikke funnet"
#: frappe/core/doctype/doctype/doctype.py:1029
msgid "DocType's name should not start or end with whitespace"
-msgstr "DocType-navnet skal ikke begynne eller slutte med mellomrom"
+msgstr "Navn på dokumenttype (DocType) skal ikke begynne eller slutte med mellomrom"
#: frappe/core/doctype/doctype/doctype.js:67
msgid "DocTypes cannot be modified, please use {0} instead"
-msgstr "Dokumenttyper kan ikke endres, bruk {0} i stedet."
+msgstr "Dokumenttyper (DocType) kan ikke endres, bruk {0} i stedet."
#. Label of the ref_doctype (Link) field in DocType 'Document Follow'
#: frappe/email/doctype/document_follow/document_follow.json
@@ -7668,11 +7713,11 @@ msgstr "DocType"
#: frappe/core/doctype/doctype/doctype.py:1023
msgid "Doctype name is limited to {0} characters ({1})"
-msgstr "DocType-navnet er begrenset til {0} tegn ({1})"
+msgstr "Navnet på dokumenttypen (DocType) er begrenset til {0} tegn ({1})"
#: frappe/public/js/frappe/list/bulk_operations.js:3
msgid "Doctype required"
-msgstr "DocType påkrevd"
+msgstr "Dokumenttype (DocType) påkrevd"
#. Label of the reference_name (Data) field in DocType 'Milestone'
#. Label of the document (Dynamic Link) field in DocType 'Audit Trail'
@@ -7730,15 +7775,15 @@ msgstr "Dokumentlenker"
#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
-msgstr "Rad #{0} for dokumentkoblinger: Finner ikke feltet {1} i {2} DokType"
+msgstr "Rad #{0} for dokumentkoblinger: Finner ikke feltet {1} i {2} dokumenttypen (DocType)"
#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
-msgstr "Rad #{0} for dokumentkoblinger: Ugyldig DocType eller feltnavn."
+msgstr "Rad #{0} for dokumentkoblinger: Ugyldig dokumenttype (DocType) eller feltnavn."
#: frappe/core/doctype/doctype/doctype.py:1195
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
-msgstr "Rad #{0} for dokumentkoblinger: Overordnet DocType er påkrevd for interne lenker"
+msgstr "Rad #{0} for dokumentkoblinger: Overordnet dokumenttype (DocType) er påkrevd for interne lenker"
#: frappe/core/doctype/doctype/doctype.py:1201
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
@@ -7839,7 +7884,7 @@ msgstr "Dokumentstatus"
#. Label of the tag (Link) field in DocType 'Tag Link'
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Dokument tagg"
+msgstr "Dokumentstikkord"
#. Label of the title (Data) field in DocType 'Tag Link'
#: frappe/desk/doctype/tag_link/tag_link.json
@@ -7892,47 +7937,47 @@ msgstr "Dokumenttittel"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
-msgstr "Dokumenttype"
+msgstr "Dokumenttype (DocType)"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
-msgstr "Dokumenttype og funksjon er påkrevd for å opprette et tallkort"
+msgstr "Dokumenttype (DocType) og funksjon er påkrevd for å opprette et tallkort"
#: frappe/permissions.py:149
msgid "Document Type is not importable"
-msgstr "Dokumenttypen kan ikke importeres"
+msgstr "Dokumenttypen (DocType) kan ikke importeres"
#: frappe/permissions.py:145
msgid "Document Type is not submittable"
-msgstr "Dokumenttypen kan ikke registreres"
+msgstr "Dokumenttypen (DocType) kan ikke registreres"
#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Dokumenttype som skal spores"
+msgstr "Dokumenttype (DocType) som skal spores"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
-msgstr "Dokumenttypen {0} er gjentatt."
+msgstr "Dokumenttypen (DocType) {0} er gjentatt."
#. Label of the user_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr "Dokumenttyper"
+msgstr "Dokumenttyper (DocType)"
#. Label of the select_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
-msgstr "Dokumenttyper (kun utvalgte tillatelser)"
+msgstr "Dokumenttyper (DocType) (kun utvalgte tillatelser)"
#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
-msgstr "Dokumenttyper og rettigheter"
+msgstr "Dokumenttyper (DocType) og rettigheter"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
#: frappe/model/document.py:1959
@@ -7943,15 +7988,15 @@ msgstr "Dokument ulåst"
msgid "Document follow is not enabled for this user."
msgstr "Dokumentfølging er ikke aktivert for denne brukeren."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Dokumentet er blitt avbrutt"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Dokumentet er registrert"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Dokumentet er i utkastmodus"
@@ -7973,7 +8018,7 @@ msgstr "Dokumentnavnendring fra {0} til {1} er blitt satt i kø"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr "Dokumenttypen er påkrevd for å opprette et oversiktspanel-diagram"
+msgstr "Dokumenttypen (DocType) er påkrevd for å opprette et oversiktspanel-diagram"
#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
@@ -8044,7 +8089,7 @@ msgstr "Domener (HTML)"
#. Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Ikke bruk HTML-koder som <script> eller bare tegn som < eller >, da de kan bli brukt med vilje i dette feltet."
+msgstr "Ikke bruk HTML-tagger som <script> eller bare tegn som < eller >, da de kan bli brukt med vilje i dette feltet"
#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
@@ -8069,7 +8114,7 @@ msgstr "Ikke send e-poster"
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Ikke kod HTML-koder som <script> eller bare tegn som < eller >, da de kan bli brukt med vilje i dette feltet."
+msgstr "Ikke bruk HTML-tagger som <script> eller bare tegn som < eller >, da de kan bli brukt med vilje i dette feltet"
#: frappe/www/login.html:139 frappe/www/login.html:155
#: frappe/www/update-password.html:70
@@ -8093,7 +8138,7 @@ msgstr "Donut"
msgid "Double click to edit label"
msgstr "Dobbeltklikk for å redigere etiketten"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8126,7 +8171,7 @@ msgstr "Last ned lenke"
msgid "Download PDF"
msgstr "Last ned PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Last ned rapport"
@@ -8155,7 +8200,7 @@ msgstr "Last ned flere vCard"
#: frappe/desk/page/setup_wizard/install_fixtures.py:46
msgid "Dr"
-msgstr "Debet"
+msgstr "Dr."
#: frappe/public/js/frappe/model/indicator.js:73
#: frappe/public/js/frappe/ui/filters/filter.js:538
@@ -8222,7 +8267,7 @@ msgstr "Dupliser oppføring"
msgid "Duplicate Filter Name"
msgstr "Dupliser filternavn"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Dupliser navn"
@@ -8326,8 +8371,8 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8339,7 +8384,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Rediger"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Rediger"
@@ -8349,7 +8394,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Rediger"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Rediger"
@@ -8376,12 +8421,12 @@ msgstr "Rediger egendefinert HTML"
#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
-msgstr "Rediger dokumenttype"
+msgstr "Rediger dokumenttype (DocType)"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
-msgstr "Rediger dokumenttype"
+msgstr "Rediger dokumenttype (DocType)"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
@@ -8396,7 +8441,7 @@ msgstr "Rediger filtre"
msgid "Edit Footer"
msgstr "Rediger bunnfelt"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Rediger format"
@@ -8475,7 +8520,7 @@ msgstr "Redigeringsmodus"
#: frappe/public/js/form_builder/components/Field.vue:254
msgid "Edit the {0} Doctype"
-msgstr "Rediger {0} dokumenttypen"
+msgstr "Rediger {0} dokumenttypen (DocType)"
#: frappe/printing/page/print_format_builder/print_format_builder.js:721
msgid "Edit to add content"
@@ -8498,7 +8543,7 @@ msgstr "Rediger {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Redigerbart rutenett"
@@ -8543,6 +8588,8 @@ msgstr "Elementvelger"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8561,6 +8608,8 @@ msgstr "Elementvelger"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-post"
@@ -8680,6 +8729,7 @@ msgid "Email IDs"
msgstr "E-post-ID-er"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "E-post-ID"
@@ -8791,7 +8841,7 @@ msgstr "E-posten er blitt merket som søppelpost"
msgid "Email has been moved to trash"
msgstr "E-posten er flyttet til papirkurven"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "Brukeren må ha en e-postadresse for å motta varsler."
@@ -8828,13 +8878,13 @@ msgstr "Utsending av e-post er slått av."
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr "E-postmeldinger vil bli sendt med neste mulige handlinger i arbeidsflyten"
+msgstr "Det vil bli sendt e-post med informasjon om neste mulige arbeidsflythandlinger"
#: frappe/website/doctype/web_form/web_form.js:34
msgid "Embed code copied"
msgstr "Den innbygde koden er kopiert"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Tomt alias er ikke tillatt"
@@ -8842,7 +8892,7 @@ msgstr "Tomt alias er ikke tillatt"
msgid "Empty column"
msgstr "Tom kolonne"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Tomme strenger er ikke tillatt som argumenter"
@@ -8863,7 +8913,7 @@ msgstr "Aktiver automatisk adressefullføring"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
-msgstr "Aktiver \"Tillat automatisk gjentakelse\" for doktypen {0} i Tilpass skjema"
+msgstr "Aktiver \"Tillat automatisk gjentakelse\" for dokumenttype (DocType) {0} i Tilpass skjema"
#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9271,7 +9321,7 @@ msgstr "Feillogger"
msgid "Error Message"
msgstr "Feilmelding"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Feil ved tilkobling til QZ Tray-applikasjonen...
Du må ha QZ Tray-applikasjonen installert og kjørende for å bruke Raw Print-funksjonen.
Klikk her for å laste ned og installere QZ Tray.
Klikk her for å lære mer om Raw Printing."
@@ -9299,9 +9349,9 @@ msgstr "Feil i klientskriptet."
msgid "Error in Header/Footer Script"
msgstr "Feil i topptekst-/bunntekstskript"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Feil i varselet"
@@ -9321,19 +9371,19 @@ msgstr "Feil ved parsing av nestede filtre: {0}"
msgid "Error while connecting to email account {0}"
msgstr "Feil under tilkobling til e-postkonto {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Feil under evaluering av varsel {0}. Vennligst rett malen din."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Feil: Data mangler i tabellen {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Feil: Mangler verdi for {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Feil: {0} Rad #{1}: Verdi mangler for: {2}"
@@ -9482,7 +9532,7 @@ msgstr "Kjør kode"
msgid "Executing..."
msgstr "Utfører..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Utførelsestid: {0} sek"
@@ -9508,12 +9558,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Utvid"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Utvid alle"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Forventet ‘AND’ eller ‘OR’, men fant: {0}."
@@ -9571,13 +9621,13 @@ msgstr "Utløpstid for QR-kodebildesiden"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Eksporter"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Eksport"
@@ -9637,7 +9687,7 @@ msgstr "Eksporter som zip"
#: frappe/public/js/frappe/views/reports/report_utils.js:184
msgid "Export in Background"
-msgstr ""
+msgstr "Eksporter i bakgrunnen"
#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
@@ -9770,7 +9820,7 @@ msgstr "Mislyktes med å beregne forespørselsteksten: {}"
msgid "Failed to connect to server"
msgstr "Mislyktes med å koble til serveren"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Mislyktes med å dekode tokenet. Vennligst oppgi et gyldig base64-kodet token."
@@ -9778,7 +9828,7 @@ msgstr "Mislyktes med å dekode tokenet. Vennligst oppgi et gyldig base64-kodet
msgid "Failed to decrypt key {0}"
msgstr "Mislyktes med å dekryptere nøkkelen {0}"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Mislyktes med å slette {0} dokumenter: {1}"
@@ -9805,7 +9855,7 @@ msgstr "Mislyktes med å generere forhåndsvisning av serien"
#: frappe/handler.py:76
msgid "Failed to get method for command {0} with {1}"
-msgstr ""
+msgstr "Klarte ikke å hente metode for kommandoen {0} med {1}"
#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
@@ -9813,39 +9863,39 @@ msgstr "Klarte ikke å hente metoden {0} med {1}"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
msgid "Failed to get site info"
-msgstr ""
+msgstr "Kunne ikke hente sideinformasjon"
#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
-msgstr ""
+msgstr "Kunne ikke importere virtuell dokumenttype (DocType) {}. Finnes kontrollerfilen?"
#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
-msgstr ""
+msgstr "Kunne ikke optimalisere bilde: {0}"
#: frappe/email/doctype/notification/notification.py:122
msgid "Failed to render message: {}"
-msgstr ""
+msgstr "Kunne ikke gjengi melding: {}"
#: frappe/email/doctype/notification/notification.py:140
msgid "Failed to render subject: {}"
-msgstr ""
+msgstr "Kunne ikke gjengi emne: {}"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
msgid "Failed to request login to Frappe Cloud"
-msgstr ""
+msgstr "Kunne ikke be om pålogging til Frappe Cloud"
#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
-msgstr ""
+msgstr "Kunne ikke sende e-post med emne:"
#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
-msgstr ""
+msgstr "Kunne ikke sende e-postvarsel"
#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
-msgstr ""
+msgstr "Feil ved oppdatering av globale innstillinger"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
msgid "Failed while calling API {0}"
@@ -9855,27 +9905,27 @@ msgstr "Mislyktes under kalling av API {0}"
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failing Scheduled Jobs (last 7 days)"
-msgstr ""
+msgstr "Mislykkede planlagte jobber (siste 7 dager)"
#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
-msgstr ""
+msgstr "Feil"
#. Label of the failure_rate (Percent) field in DocType 'System Health Report
#. Failing Jobs'
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Failure Rate"
-msgstr ""
+msgstr "Feilfrekvens"
#. Label of the favicon (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr ""
+msgstr "FavIcon"
#. Label of the fax (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr ""
+msgstr "Faks"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
@@ -9883,7 +9933,7 @@ msgstr "Tilbakemelding"
#: frappe/desk/page/setup_wizard/install_fixtures.py:29
msgid "Female"
-msgstr ""
+msgstr "Kvinne"
#. Label of the fetch_from (Small Text) field in DocType 'DocField'
#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
@@ -9894,15 +9944,15 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr ""
+msgstr "Hent fra"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
-msgstr ""
+msgstr "Hent bilder"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
-msgstr ""
+msgstr "Hent vedlagte bilder fra dokumentet"
#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
@@ -9934,7 +9984,7 @@ msgstr "Henter standard globale søkedokumenter."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9942,7 +9992,7 @@ msgstr "Felt"
#: frappe/core/doctype/doctype/doctype.py:418
msgid "Field \"route\" is mandatory for Web Views"
-msgstr ""
+msgstr "Feltet \"route\" er obligatorisk for webvisninger"
#: frappe/core/doctype/doctype/doctype.py:1527
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
@@ -9950,16 +10000,16 @@ msgstr "Feltet «tittel» er obligatorisk hvis «Nettstedssøkefelt» er angitt.
#: frappe/desk/doctype/bulk_update/bulk_update.js:17
msgid "Field \"value\" is mandatory. Please specify value to be updated"
-msgstr ""
+msgstr "Feltet \"verdi\" er påkrevet. Spesifiser verdien som skal oppdateres"
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr ""
+msgstr "Feltbeskrivelse"
#: frappe/core/doctype/doctype/doctype.py:1078
msgid "Field Missing"
-msgstr ""
+msgstr "Felt mangler"
#. Label of the field_name (Data) field in DocType 'Property Setter'
#. Label of the field_name (Select) field in DocType 'Kanban Board'
@@ -9989,7 +10039,7 @@ msgstr "Felttype"
#: frappe/desk/reportview.py:202
msgid "Field not permitted in query"
-msgstr ""
+msgstr "Feltet er ikke tillatt i spørringen"
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -10003,23 +10053,23 @@ msgstr "Felt som skal spores"
#: frappe/custom/doctype/property_setter/property_setter.py:51
msgid "Field type cannot be changed for {0}"
-msgstr ""
+msgstr "Felttypen kan ikke endres for {0}"
#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
-msgstr ""
+msgstr "Feltet {0} finnes ikke på {1}"
#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
-msgstr ""
+msgstr "Feltet {0} refererer til en ikke-eksisterende dokumenttype (DocType) {1}."
#: frappe/public/js/frappe/form/form.js:1756
msgid "Field {0} not found."
-msgstr ""
+msgstr "Felt {0} ble ikke funnet."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
-msgstr ""
+msgstr "Feltet {0} på dokumentet {1} er verken et mobilnummerfelt eller en kunde- eller brukerlenke"
#. Label of the fieldname (Data) field in DocType 'Report Column'
#. Label of the fieldname (Data) field in DocType 'Report Filter'
@@ -10035,40 +10085,40 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Feltnavn"
#: frappe/core/doctype/doctype/doctype.py:271
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
-msgstr ""
+msgstr "Feltnavnet '{0}' er i konflikt med et {1} med navnet {2} i {3}"
#: frappe/core/doctype/doctype/doctype.py:1077
msgid "Fieldname called {0} must exist to enable autonaming"
-msgstr ""
+msgstr "Feltnavn kalt {0} må finnes for å aktivere automatisk navngiving"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
-msgstr ""
+msgstr "Feltnavn er begrenset til 64 tegn ({0})"
#: frappe/custom/doctype/custom_field/custom_field.py:197
msgid "Fieldname not set for Custom Field"
-msgstr ""
+msgstr "Feltnavn ikke angitt for egendefinert felt"
#: frappe/custom/doctype/custom_field/custom_field.js:107
msgid "Fieldname which will be the DocType for this link field."
-msgstr ""
+msgstr "Feltnavn som vil bli dokumenttype (DocType) for dette koblingsfeltet."
#: frappe/public/js/form_builder/store.js:175
msgid "Fieldname {0} appears multiple times"
-msgstr ""
+msgstr "Feltnavnet {0} vises flere ganger"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feltnavn {0} kan ikke inneholde spesialtegn som {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Feltnavn {0} konflikterer med metaobjekt"
@@ -10108,7 +10158,7 @@ msgstr "Felt"
msgid "Fields Multicheck"
msgstr "Skjekk av flere felt"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Feltene `file_name` eller `file_url` må angis for fil"
@@ -10116,7 +10166,7 @@ msgstr "Feltene `file_name` eller `file_url` må angis for fil"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Felt må være en liste eller tuple når as_list er aktivert"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Feltene må være en streng, liste, tupel, pypika Field eller pypika Function"
@@ -10144,7 +10194,7 @@ msgstr "Felttype"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Felttypen kan ikke endres fra {0} til {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Felttypen kan ikke endres fra {0} til {1} i rad {2}"
@@ -10210,7 +10260,7 @@ msgstr "Filens URL"
msgid "File backup is ready"
msgstr "Sikkerhetskopiering av filer er klar"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Filnavnet kan ikke ha {0}"
@@ -10218,7 +10268,7 @@ msgstr "Filnavnet kan ikke ha {0}"
msgid "File not attached"
msgstr "Fil ikke vedlagt"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Filstørrelsen oversteg den maksimalt tillatte størrelsen på {0} MB"
@@ -10227,11 +10277,11 @@ msgstr "Filstørrelsen oversteg den maksimalt tillatte størrelsen på {0} MB"
msgid "File too big"
msgstr "Filen er for stor"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Filtypen {0} er ikke tillatt"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "DocType {0} finnes ikke"
@@ -10245,8 +10295,8 @@ msgstr "Filer"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10285,11 +10335,11 @@ msgstr "Navn på filter"
msgid "Filter Values"
msgstr "Filterverdier"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "Filterbetingelse mangler etter operatoren: {0}"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "Filterfelt kan ikke inneholde backticks (`)."
@@ -10366,7 +10416,7 @@ msgstr "Filterseksjon"
msgid "Filters applied for {0}"
msgstr "Filtre brukt for {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filtre lagret"
@@ -10414,8 +10464,12 @@ msgstr "Første dagen i uken"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Fornavn"
@@ -10496,7 +10550,7 @@ msgstr "Mappenavn"
msgid "Folder name should not include '/' (slash)"
msgstr "Mappenavnet skal ikke inneholde '/' (skråstrek)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Mappen {0} er ikke tom"
@@ -10603,7 +10657,7 @@ msgstr "Detaljer i bunntekst"
msgid "Footer HTML"
msgstr "HTML for bunntekst"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "Bunntekst-HTML satt fra vedlegg {0}"
@@ -10653,12 +10707,12 @@ msgstr "Bunnteksten vises riktig kun i PDF"
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "For DocType"
-msgstr "For DocType"
+msgstr "For dokumenttype (DocType)"
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "For DocType-lenke / DocType-handling"
+msgstr "For lenke (DocType) / handling (DocType)"
#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10667,7 +10721,7 @@ msgstr "For dokument"
#: frappe/core/doctype/user_permission/user_permission_list.js:155
msgid "For Document Type"
-msgstr "For dokumenttype"
+msgstr "For dokumenttype (DocType)"
#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
@@ -10680,8 +10734,8 @@ msgstr "For eksempel: {} Åpen"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "For Links, enter the DocType as range.\n"
"For Select, enter list of Options, each on a new line."
-msgstr "For Lenker, skriv inn DocType som område.\n"
-"For Velg, skriv inn en liste med alternativer, hvert på en ny linje."
+msgstr "For Link-felt: angi dokumenttype (DocType) som målområde.\n"
+"For Select-felt: angi en liste med alternativer, ett på hver linje."
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
@@ -10699,7 +10753,7 @@ msgstr "For bruker"
msgid "For Value"
msgstr "For verdi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Til sammenligning, bruk >5, <10 eller =324. For områder, bruk 5:10 (for verdier mellom 5 og 10)."
@@ -10740,7 +10794,7 @@ msgstr "For flere adresser, skriv inn adressen på forskjellige linjer. f.eks. t
msgid "For updating, you can update only selective columns."
msgstr "Ved oppdatering kan du bare oppdatere enkelte kolonner."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "For {0} på nivå {1} i {2} på rad {3}"
@@ -10984,9 +11038,9 @@ msgstr "Fra dato"
msgid "From Date Field"
msgstr "Felt for fradato"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
-msgstr "Fra dokument type"
+msgstr "Fra dokumenttype (DocType)"
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -11046,13 +11100,13 @@ msgstr "Funksjon basert på"
msgid "Function {0} is not whitelisted."
msgstr "Funksjon {0} er ikke hvitelistet."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "Funksjon {0} krever argumenter, men ingen ble oppgitt"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Ytterligere noder kan bare opprettes under noder av typen \"Gruppe\""
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11111,7 +11165,7 @@ msgstr "Generell"
msgid "Generate Keys"
msgstr "Generer nøkler"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Generer ny rapport"
@@ -11126,7 +11180,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "Lag separate dokumenter for hver tilordnet person"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Generer sporings-URL"
@@ -11221,11 +11275,11 @@ msgstr "Github-tilpasset markdown-syntaks"
#. Name of a DocType
#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
msgid "Global Search DocType"
-msgstr "Globalt søk DocType"
+msgstr "Globalt søk (DocType)"
#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24
msgid "Global Search Document Types Reset."
-msgstr "Tilbakestill dokumenttyper for globalt søk."
+msgstr "Tilbakestill dokumenttyper (DocType) for globalt søk."
#. Name of a DocType
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
@@ -11333,10 +11387,6 @@ msgstr "Google Analytics anonymiserer IP"
msgid "Google Calendar"
msgstr "Google Kalender"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Kalender – Kontakt/e-post ikke funnet. Deltaker ble ikke lagt til for –
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalender – Kunne ikke opprette kalender for {0}, feilkode {1}."
@@ -11531,14 +11581,10 @@ msgstr "Grupper etter type"
msgid "Group By field is required to create a dashboard chart"
msgstr "Feltet Grupper etter er påkrevd for å opprette et oversiktspanel-diagram"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "\"Grupper etter\" må være en streng"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Gruppenode"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11547,7 +11593,7 @@ msgstr "Objektklasse for gruppe"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Group your custom doctypes under modules"
-msgstr "Grupper dine egendefinerte dokumenttyper under moduler"
+msgstr "Grupper dine egendefinerte dokumenttyper (DocType) under moduler"
#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
@@ -11598,7 +11644,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11703,7 +11749,7 @@ msgstr "Topptekst"
msgid "Header HTML"
msgstr "HTML-kode for topptekst"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "Topptekst-HTML satt fra vedlegg {0}"
@@ -11832,7 +11878,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Her er sporings-URL-en din"
@@ -11868,7 +11914,7 @@ msgstr "Skjult"
msgid "Hidden Fields"
msgstr "Skjulte felt"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Skjulte kolonner inkluderer: {0}"
@@ -11911,7 +11957,7 @@ msgstr "Skjul kopiering"
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Skjul tilpassede dokumenttyper og rapporter"
+msgstr "Skjul tilpassede dokumenttyper (DocType) og rapporter"
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -11980,9 +12026,9 @@ msgstr "Skjul sidefelt, meny og kommentarer"
msgid "Hide Standard Menu"
msgstr "Skjul standardmeny"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
-msgstr "Skjul tagger"
+msgstr "Skjul stikkord"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
@@ -12140,7 +12186,7 @@ msgstr "Du har nok ikke tilgang til noe arbeidsområde ennå, men du kan opprett
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12226,7 +12272,7 @@ msgstr "Idx"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User"
-msgstr "Hvis Bruk streng brukerrettighet er merket av og brukerrettighet er definert for en DocType for en bruker, vil alle dokumenter der verdien av lenken er tom, ikke bli vist for den brukeren."
+msgstr "Hvis «Bruk strenge brukerrettigheter» er valgt, og det finnes en brukerrettighet definert for en dokumenttype (DocType) for en bruker, vil alle dokumenter der lenkefeltet er tomt, ikke bli vist til den brukeren"
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
@@ -12237,9 +12283,9 @@ msgstr "Hvis Bruk streng brukerrettighet er merket av og brukerrettighet er defi
msgid "If Checked workflow status will not override status in list view"
msgstr "Hvis avmerket arbeidsflytstatus ikke overstyrer statusen i listevisningen"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Hvis eier"
@@ -12356,7 +12402,7 @@ msgstr "Hvis ikke angitt, vil valutapresisjonen avhenge av tallformatet"
#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
-msgstr "Hvis dette er angitt, kan bare brukere med disse rollene få tilgang til dette diagrammet. Hvis ikke angitt, vil DocType- eller rapporttillatelser bli brukt."
+msgstr "Hvis dette er angitt, kan bare brukere med disse rollene få tilgang til dette diagrammet. Hvis ikke angitt, vil tillatelser fra dokumenttype (DocType) eller rapport bli brukt."
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -12396,7 +12442,7 @@ msgstr "Hvis du oppdaterer, velg «Overskriv», ellers slettes ikke eksisterende
#: frappe/core/doctype/data_export/exporter.py:188
msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
-msgstr "Hvis du laster opp nye poster, blir «Navneserie» obligatorisk, hvis den finnes."
+msgstr "Hvis du laster opp nye poster, blir «Nummerserie» påkrevet, hvis den finnes."
#: frappe/core/doctype/data_export/exporter.py:186
msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
@@ -12427,7 +12473,7 @@ msgstr "Hvis CSV-filen din bruker et annet skilletegn, legg til det tegnet her,
#. Description of the 'Source Text' (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr "Hvis dataene dine er i HTML, må du kopiere og lime inn den nøyaktige HTML-koden med taggene."
+msgstr "Hvis dataene dine er i HTML, må du kopiere og lime inn den nøyaktige HTML-koden med taggene inkludert."
#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
@@ -12467,8 +12513,8 @@ msgstr "Ignorerte apper"
msgid "Illegal Document Status for {0}"
msgstr "Ulovlig dokumentstatus for {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Ulovlig SQL-spørring"
@@ -12555,11 +12601,11 @@ msgstr "Bilder"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Opptre som bruker"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Opptre som bruker {0}"
@@ -12589,7 +12635,7 @@ msgstr "Implisitt"
msgid "Import"
msgstr "Import"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Import"
@@ -12817,15 +12863,16 @@ msgstr "Inkluder tema fra apper"
msgid "Include Web View Link in Email"
msgstr "Inkluder lenke til nettvisning i e-post"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Inkluder filtre"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Inkluder skjulte kolonner"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Inkluder innrykk"
@@ -12870,9 +12917,9 @@ msgstr "Konto for innkommende e-postkonto er ikke korrekt"
#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
msgid "Incomplete Virtual Doctype Implementation"
-msgstr "Ufullstendig implementering av virtuell Doctype"
+msgstr "Ufullstendig implementering av virtuell dokumenttype (DocType)"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Ufullstendige innloggingsdetaljer"
@@ -12919,7 +12966,7 @@ msgstr "Indekser nettsider for søk"
#: frappe/core/doctype/recorder/recorder.py:132
msgid "Index created successfully on column {0} of doctype {1}"
-msgstr "Indeks opprettet på kolonne {0} av doktype {1}"
+msgstr "Indeks opprettet på kolonne {0} av dokumenttype (DocType) {1}"
#. Label of the indexing_authorization_code (Data) field in DocType 'Website
#. Settings'
@@ -12983,7 +13030,7 @@ msgstr "Sett inn ovenfor"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Sett inn etter"
@@ -13021,8 +13068,8 @@ msgstr "Sett inn stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Installer {0} fra Marketplace"
@@ -13056,7 +13103,7 @@ msgstr "Instruksjoner sendt på e-post"
msgid "Insufficient Permission Level for {0}"
msgstr "Utilstrekkelig tillatelsesnivå for {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Utilstrekkelige rettigheter for {0}"
@@ -13172,7 +13219,7 @@ msgid "Invalid"
msgstr "Ugyldig"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13182,7 +13229,7 @@ msgstr "Ugyldig «depends_on»-uttrykk"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ugyldig «depends_on»-uttrykk satt i filteret {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Ugyldig \"mandatory_depends_on\"-uttrykk"
@@ -13212,26 +13259,26 @@ msgstr "Ugyldig dato"
#: frappe/www/list.py:85
msgid "Invalid DocType"
-msgstr "Ugyldig DocType"
+msgstr "Ugyldig dokumenttype (DocType)"
#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
-msgstr "Ugyldig DocType: {0}"
+msgstr "Ugyldig dokumenttype (DocType): {0}"
#: frappe/email/doctype/email_group/email_group.py:51
msgid "Invalid Doctype"
-msgstr "Ugyldig DocType"
+msgstr "Ugyldig dokumenttype (DocType)"
#: frappe/core/doctype/doctype/doctype.py:1273
msgid "Invalid Fieldname"
msgstr "Ugyldig feltnavn"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Ugyldig fil-URL"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Ugyldig filter"
@@ -13265,7 +13312,7 @@ msgstr "Ugyldig e-postserver. Vennligst rett opp og prøv igjen."
#: frappe/model/naming.py:109
msgid "Invalid Naming Series: {}"
-msgstr "Ugyldig navngivningsserie: {}"
+msgstr "Ugyldig nummerserie: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
#: frappe/core/doctype/rq_job/rq_job.py:122
@@ -13285,7 +13332,7 @@ msgstr "Ugyldig utgående e-postserver eller port: {0}"
msgid "Invalid Output Format"
msgstr "Ugyldig utdataformat"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Ugyldig overstyring"
@@ -13299,11 +13346,11 @@ msgstr "Ugyldige parametere."
msgid "Invalid Password"
msgstr "Ugyldig passord"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Ugyldig telefonnummer"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Ugyldig forespørsel"
@@ -13320,7 +13367,7 @@ msgstr "Ugyldig tabellfeltnavn"
msgid "Invalid Transition"
msgstr "Ugyldig overgang"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13343,7 +13390,7 @@ msgstr "Ugyldig webhook-hemmelighet"
msgid "Invalid aggregate function"
msgstr "Ugyldig aggregatfunksjon"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator."
@@ -13351,19 +13398,19 @@ msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator."
msgid "Invalid app"
msgstr "Ugyldig app"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Ugyldig argumentformat: {0}. Bare anførselstegn eller enkle feltnavn er tillatt."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Ugyldig argumenttype: {0}. Bare strenger, tall og None er tillatt."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Ugyldige tegn i feltnavnet: {0}. Bare bokstaver, tall og understrekninger er tillatt."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Ugyldige tegn i tabellnavnet: {0}"
@@ -13371,17 +13418,17 @@ msgstr "Ugyldige tegn i tabellnavnet: {0}"
msgid "Invalid column"
msgstr "Ugyldig kolonne"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Ugyldig betingelsestype i nestede filtre: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
-msgstr ""
+msgstr "Ugyldig retning i Sorter etter: {0}. Må være 'ASC' eller 'DESC'."
#: frappe/model/document.py:1020 frappe/model/document.py:1034
msgid "Invalid docstatus"
-msgstr ""
+msgstr "Ugyldig dokumentstatus"
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
@@ -13391,39 +13438,39 @@ msgstr "Ugyldig uttrykk satt i filteret {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ugyldig uttrykk satt i filteret {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Ugyldig feltformat for SELECT: {0}. Feltnavn må være enkelt, backticked (`), tabellkvalifisert, aliasert, eller inneholde '*'."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
-msgstr ""
+msgstr "Ugyldig feltformat i {0}: {1}. Bruk 'field', 'link_field.field' eller 'child_table.field'."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
-msgstr ""
+msgstr "Ugyldig feltnavn i funksjon: {0}. Bare enkle feltnavn er tillatt."
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
-msgstr ""
+msgstr "Ugyldig feltnavn {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
-msgstr ""
+msgstr "Ugyldig felttype: {0}"
#: frappe/core/doctype/doctype/doctype.py:1086
msgid "Invalid fieldname '{0}' in autoname"
-msgstr ""
+msgstr "Ugyldig feltnavn ‘{0}’ i automatisk navngivning"
#: frappe/deprecation_dumpster.py:283
msgid "Invalid file path: {0}"
-msgstr ""
+msgstr "Ugyldig filsti: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Ugyldig filterbetingelse: {0}. Forventet en liste eller tuppel."
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.target_fieldname'."
@@ -13431,13 +13478,13 @@ msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.ta
msgid "Invalid filter: {0}"
msgstr "Ugyldig filter: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
-msgstr ""
+msgstr "Ugyldig argumenttype for funksjon: {0}. Bare strenger, tall, lister og None er tillatt."
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
-msgstr ""
+msgstr "Ugyldig dict-format for funksjon"
#: frappe/core/api/user_invitation.py:17
msgid "Invalid input"
@@ -13454,47 +13501,51 @@ msgstr "Ugyldig nøkkel"
#: frappe/model/naming.py:498
msgid "Invalid name type (integer) for varchar name column"
-msgstr ""
+msgstr "Ugyldig navnetype (heltall) for varchar-kolonnen ‘name’"
#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
-msgstr ""
+msgstr "Ugyldig nummerserie {}: punktum (.) mangler"
#: frappe/model/naming.py:76
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
-msgstr ""
+msgstr "Ugyldig nummerserie {}: punktum (.) mangler før de numeriske plassholderne. Vennligst bruk et format som ABCD.#####.."
#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
-msgstr ""
+msgstr "Ugyldig eller ødelagt innhold for import"
#: frappe/website/doctype/website_settings/website_settings.py:139
msgid "Invalid redirect regex in row #{}: {}"
-msgstr ""
+msgstr "Ugyldig omadresseringsregeks i rad #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
+msgstr "Ugyldige forespørselsargumenter"
+
+#: frappe/app.py:327
+msgid "Invalid request body"
msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
-msgstr ""
+msgstr "Ugyldig rolle"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "Ugyldig enkelt filterformat: {0}"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Ugyldig start for filterbetingelse: {0}. Forventet en liste eller tuppel."
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
-msgstr ""
+msgstr "Ugyldig format for strengliteral: {0}"
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
-msgstr ""
+msgstr "Ugyldig malfil for import"
#: frappe/integrations/doctype/connected_app/connected_app.py:208
msgid "Invalid token state! Check if the token has been created by the OAuth user."
@@ -13503,11 +13554,11 @@ msgstr "Ugyldig tokenstatus! Sjekk om tokenet er opprettet av OAuth-brukeren."
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
msgid "Invalid username or password"
-msgstr ""
+msgstr "Ugyldig brukernavn eller passord"
#: frappe/model/naming.py:176
msgid "Invalid value specified for UUID: {}"
-msgstr ""
+msgstr "Ugyldig verdi angitt for UUID: {}"
#: frappe/public/js/frappe/web_form/web_form.js:253
msgctxt "Error message in web form"
@@ -13520,7 +13571,7 @@ msgstr "Ugyldig wkhtmltopdf-versjon"
#: frappe/core/doctype/doctype/doctype.py:1565
msgid "Invalid {0} condition"
-msgstr ""
+msgstr "Ugyldig {0} tilstand"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
@@ -13529,11 +13580,11 @@ msgstr "Invers"
#: frappe/core/doctype/user_invitation/user_invitation.py:95
msgid "Invitation already accepted"
-msgstr ""
+msgstr "Invitasjon allerede akseptert"
#: frappe/core/doctype/user_invitation/user_invitation.py:99
msgid "Invitation already exists"
-msgstr ""
+msgstr "Invitasjonen finnes allerede"
#: frappe/core/api/user_invitation.py:84
msgid "Invitation cannot be cancelled"
@@ -13545,7 +13596,7 @@ msgstr "Invitasjonen er avbrutt"
#: frappe/core/doctype/user_invitation/user_invitation.py:125
msgid "Invitation is expired"
-msgstr ""
+msgstr "Invitasjonen er utløpt"
#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78
msgid "Invitation not found"
@@ -13557,16 +13608,16 @@ msgstr "Invitasjon til å bli med {0} er avbrutt"
#: frappe/core/doctype/user_invitation/user_invitation.py:76
msgid "Invitation to join {0} expired"
-msgstr ""
+msgstr "Invitasjon til å delta i {0} er utløpt"
#: frappe/contacts/doctype/contact/contact.js:30
msgid "Invite as User"
-msgstr ""
+msgstr "Inviter som bruker"
#. Label of the invited_by (Link) field in DocType 'User Invitation'
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "Invited By"
-msgstr ""
+msgstr "Invitert av"
#: frappe/public/js/frappe/ui/filters/filter.js:22
msgid "Is"
@@ -13575,12 +13626,12 @@ msgstr "Er"
#. Label of the is_active (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Is Active"
-msgstr ""
+msgstr "Er aktiv"
#. Label of the is_attachments_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr ""
+msgstr "Er vedleggsmappe"
#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
@@ -13592,7 +13643,7 @@ msgstr "Er kalender og Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Er Underordnet Tabell"
@@ -13645,6 +13696,10 @@ msgstr "Er mappe"
msgid "Is Global"
msgstr "Er global"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Er gruppe"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13671,8 +13726,13 @@ msgstr "Er valgfri tilstand"
msgid "Is Primary"
msgstr "Er primær"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "Er primæradresse"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Er primærkontakt"
@@ -13728,7 +13788,7 @@ msgstr "Er oppsettet fullført?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Er alene"
@@ -13764,7 +13824,7 @@ msgstr "Er standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Kan registreres"
@@ -13970,11 +14030,11 @@ msgstr "Kolonne i Kanban-tavle"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Navn på Kanban-tavle"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Innstillinger for Kanban-tavle"
@@ -14172,12 +14232,12 @@ msgstr "Oppretting og tilordning av LDAP-bruker"
#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr ""
+msgstr "LDAP-brukernavn-feltet"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
msgid "LDAP is not enabled."
-msgstr ""
+msgstr "LDAP er ikke aktivert."
#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -14191,7 +14251,7 @@ msgstr "LDAP-søkesti for brukere"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
-msgstr ""
+msgstr "LDAP-innstillinger feil. Valideringsrespons var: {0}"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Label of the label (Data) field in DocType 'DocField'
@@ -14247,24 +14307,24 @@ msgstr "Etikett"
#. Label of the label_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr ""
+msgstr "Hjelp for etikett"
#. Label of the label_and_type (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Label and Type"
-msgstr ""
+msgstr "Etikett og type"
#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
-msgstr ""
+msgstr "Etikett er påkrevet"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr ""
+msgstr "Landingsside"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Liggende"
@@ -14272,10 +14332,13 @@ msgstr "Liggende"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Språk"
@@ -14283,18 +14346,18 @@ msgstr "Språk"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr ""
+msgstr "Språkkode"
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr ""
+msgstr "Språknavn"
#. Label of the last_10_active_users (Code) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Last 10 active users"
-msgstr ""
+msgstr "Siste 10 aktive brukere"
#: frappe/public/js/frappe/ui/filters/filter.js:628
msgid "Last 14 Days"
@@ -14319,36 +14382,36 @@ msgstr "De siste 90 dager"
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr ""
+msgstr "Sist aktiv"
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
-msgstr ""
+msgstr "Siste kjøring"
#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
-msgstr ""
+msgstr "Siste hjerteslag"
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr ""
+msgstr "Siste IP"
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr ""
+msgstr "Siste kjente versjoner"
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr ""
+msgstr "Siste innlogging"
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
-msgstr ""
+msgstr "Siste endringsdato"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480
@@ -14363,15 +14426,19 @@ msgstr "Forrige måned"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
-msgstr ""
+msgstr "Etternavn"
#. Label of the last_password_reset_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Password Reset Date"
-msgstr ""
+msgstr "Dato for siste tilbakestilling av passord"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -14382,23 +14449,23 @@ msgstr "Siste kvartal"
#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Last Received At"
-msgstr ""
+msgstr "Sist mottatt den"
#. Label of the last_reset_password_key_generated_on (Datetime) field in
#. DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Reset Password Key Generated On"
-msgstr ""
+msgstr "Siste nøkkel for tilbakestilling av passord generert den"
#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Last Run"
-msgstr ""
+msgstr "Siste kjøring"
#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Last Sync On"
-msgstr ""
+msgstr "Siste synkronisering på"
#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -14408,17 +14475,17 @@ msgstr "Sist synkronisert på "
#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205
#: frappe/public/js/frappe/model/model.js:130
msgid "Last Updated By"
-msgstr ""
+msgstr "Sist oppdatert av"
#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204
#: frappe/public/js/frappe/model/model.js:126
msgid "Last Updated On"
-msgstr ""
+msgstr "Sist oppdatert den"
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr ""
+msgstr "Siste bruker"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -14434,19 +14501,19 @@ msgstr "Forrige år"
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
-msgstr ""
+msgstr "Sist synkronisert {0}"
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
-msgstr ""
+msgstr "Tilbakestilling av layout"
#: frappe/custom/doctype/customize_form/customize_form.js:186
msgid "Layout will be reset to standard layout, are you sure you want to do this?"
-msgstr ""
+msgstr "Layout vil bli tilbakestilt til standardlayout, er du sikker på at du vil gjøre dette?"
#: frappe/website/web_template/section_with_features/section_with_features.html:26
msgid "Learn more"
-msgstr ""
+msgstr "Les mer"
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -14456,7 +14523,7 @@ msgstr "La stå tomt for å alltid gjenta"
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
-msgstr ""
+msgstr "Forlat denne samtalen"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -14510,7 +14577,7 @@ msgstr "Lengde"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Lengden på den overførte datamatrisen er større enn verdien av maksimalt tillatte etikettpunkter!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Lengden på {0} bør være mellom 1 og 1000"
@@ -14560,7 +14627,7 @@ msgstr "Brev"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14588,7 +14655,7 @@ msgstr "Navn på brevhode"
msgid "Letter Head Scripts"
msgstr "Brevhodeskript"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Brevhode kan ikke være både deaktivert og standard"
@@ -14605,7 +14672,7 @@ msgstr "Brevhode i HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Nivå"
@@ -14741,7 +14808,7 @@ msgstr "Lenket DocType"
#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr "Lenket dokumenttype"
+msgstr "Lenket dokumenttype (DocType)"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
@@ -14898,7 +14965,7 @@ msgstr "Listefilter"
msgid "List Settings"
msgstr "Innstillinger for lister"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Innstillinger for lister"
@@ -14914,7 +14981,7 @@ msgstr "Innstillinger for listevisning"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
msgid "List a document type"
-msgstr "List opp en dokumenttype"
+msgstr "List opp en dokumenttype (DocType)"
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form'
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page'
@@ -14949,7 +15016,7 @@ msgid "Load Balancing"
msgstr "Belastningsfordeling"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Last inn flere"
@@ -14969,7 +15036,7 @@ msgstr "Last inn mer"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Laster inn"
@@ -15019,7 +15086,7 @@ msgstr "Logg-data"
#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Log DocType"
-msgstr "Logg DocType"
+msgstr "Logg-DocType"
#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
@@ -15112,7 +15179,7 @@ msgstr "Verifiseringskode for innlogging fra {}"
msgid "Login and view in Browser"
msgstr "Logg inn og se i nettleser"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Innlogging er påkrevd for å se webskjemaets listevisning. Aktiver {0} for å se listeinnstillinger"
@@ -15120,7 +15187,7 @@ msgstr "Innlogging er påkrevd for å se webskjemaets listevisning. Aktiver {0}
msgid "Login link sent to your email"
msgstr "Innloggingslenke er sendt til e-postkontoen din"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Innlogging er ikke tillatt for øyeblikket"
@@ -15173,7 +15240,7 @@ msgstr "Logg inn med e-postlenke"
msgid "Login with email link expiry (in minutes)"
msgstr "Utløpstid for «Logg inn med e-postlenke» (i minutter)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "«Logg inn med brukernavn og passord» er ikke tillatt."
@@ -15192,7 +15259,7 @@ msgstr "Logo URI"
msgid "Logout"
msgstr "Logg ut"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Logg ut av alle økter"
@@ -15296,7 +15363,10 @@ msgid "Major"
msgstr "Hovedversjon"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Gjør «navn» søkbart i globalt søk"
@@ -15372,7 +15442,7 @@ msgstr "Betingelse for påkrevd felt"
msgid "Mandatory Depends On (JS)"
msgstr "Betingelse for påkrevd felt (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Påkrevd informasjon mangler:"
@@ -15384,11 +15454,11 @@ msgstr "Angi rolle for påkrevd felt"
msgid "Mandatory field: {0}"
msgstr "Påkrevd felt: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Påkrevd felt kreves i tabellen {0}, rad {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Påkrevd felt kreves i {0}"
@@ -15559,7 +15629,7 @@ msgstr "Maks automatisk e-postrapport per bruker"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max signups allowed per hour"
-msgstr ""
+msgstr "Maks antall påmeldinger tillatt per time"
#: frappe/core/doctype/doctype/doctype.py:1343
msgid "Max width for type Currency is 100px in row {0}"
@@ -15570,7 +15640,7 @@ msgstr "Maks bredde for typen Valuta er 100px i raden {0}"
msgid "Maximum"
msgstr "Maksimum"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Maksgrensen for vedlegg på {0} er nådd for {1} {2}."
@@ -15584,7 +15654,7 @@ msgstr "Maks {0} rader tillatt"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
-msgstr ""
+msgstr "Meg"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
msgid "Meaning of Submit, Cancel, Amend"
@@ -15594,7 +15664,7 @@ msgstr "Betydningen av Registrer, Avbryte, Utvide"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15615,17 +15685,17 @@ msgstr "Oppfylles betingelsen?"
#. Group in Email Group's connections
#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
-msgstr ""
+msgstr "Medlemmer"
#. Label of the cache_memory_usage (Data) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Memory Usage"
-msgstr ""
+msgstr "Minnebruk"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
msgid "Memory Usage in MB"
-msgstr ""
+msgstr "Minnebruk i MB"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -15636,21 +15706,21 @@ msgstr "Omtale"
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr ""
+msgstr "Omtaler"
#: frappe/public/js/frappe/ui/page.html:41
#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr ""
+msgstr "Meny"
#: frappe/public/js/frappe/form/toolbar.js:242
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
-msgstr ""
+msgstr "Slå sammen med eksisterende"
#: frappe/utils/nestedset.py:320
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr ""
+msgstr "Det er kun mulig å slå sammen gruppe med gruppe eller bladnode med bladnode."
#. Label of the message (Text) field in DocType 'Auto Repeat'
#. Label of the content (Text Editor) field in DocType 'Activity Log'
@@ -15681,33 +15751,33 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
-msgstr ""
+msgstr "Melding"
#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr ""
+msgstr "Melding"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr ""
+msgstr "Eksempler på meldinger"
#. Label of the message_id (Small Text) field in DocType 'Communication'
#. Label of the message_id (Small Text) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Message ID"
-msgstr ""
+msgstr "Meldings-ID"
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr ""
+msgstr "Meldingsparameter"
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
-msgstr ""
+msgstr "Melding sendt"
#. Label of the message_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -15716,79 +15786,79 @@ msgstr "Meldingstype"
#: frappe/public/js/frappe/views/communication.js:956
msgid "Message clipped"
-msgstr ""
+msgstr "Melding kuttet"
#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
-msgstr ""
+msgstr "Melding fra serveren: {0}"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
-msgstr ""
+msgstr "Melding ikke konfigurert"
#. Description of the 'Success message' (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Message to be displayed on successful completion"
-msgstr ""
+msgstr "Melding som skal vises ved vellykket fullføring"
#. Label of the message_id (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr ""
+msgstr "Meldings-ID"
#. Label of the messages (Code) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
-msgstr ""
+msgstr "Meldinger"
#. Label of the meta_section (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
-msgstr ""
+msgstr "Meta"
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr ""
+msgstr "Meta beskrivelse"
#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr ""
+msgstr "Metabilde"
#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr ""
+msgstr "Meta-tagger"
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
-msgstr ""
+msgstr "Meta-tittel"
#. Label of the meta_description (Small Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta description"
-msgstr ""
+msgstr "Meta-beskrivelse"
#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta image"
-msgstr ""
+msgstr "Meta-bilde"
#. Label of the meta_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta title"
-msgstr ""
+msgstr "Meta-tittel"
#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
-msgstr ""
+msgstr "Metatittel for SEO"
#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Metadata"
-msgstr ""
+msgstr "Metadata"
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
@@ -15811,9 +15881,9 @@ msgstr "Metode"
#: frappe/__init__.py:468
msgid "Method Not Allowed"
-msgstr ""
+msgstr "Ikke tillatt metode"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Metode er påkrevd for å opprette et tallkort"
@@ -15827,6 +15897,11 @@ msgstr "Sentrert"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
msgid "Middle Name"
+msgstr "Mellomnavn"
+
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
msgstr ""
#. Name of a DocType
@@ -15834,14 +15909,14 @@ msgstr ""
#: frappe/automation/doctype/milestone/milestone.json
#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
-msgstr ""
+msgstr "Milepæl"
#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
#: frappe/automation/doctype/milestone/milestone.json
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Milestone Tracker"
-msgstr ""
+msgstr "Milepælsporing"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -15857,12 +15932,12 @@ msgstr "Minimum passordpoeng"
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
-msgstr ""
+msgstr "Mindre"
#: frappe/public/js/frappe/form/controls/duration.js:30
msgctxt "Duration"
msgid "Minutes"
-msgstr ""
+msgstr "Minutter"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -15877,7 +15952,7 @@ msgstr "Minutter før"
#. Label of the minutes_offset (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes Offset"
-msgstr ""
+msgstr "Minuttforskyvning"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
@@ -15899,7 +15974,7 @@ msgstr "Manglende DocType"
msgid "Missing Field"
msgstr "Manglende felt"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Manglende felt"
@@ -15933,7 +16008,12 @@ msgstr "Mobil"
#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
#: frappe/tests/test_translate.py:94
msgid "Mobile No"
-msgstr "Mobilnummer"
+msgstr "Mobile No"
+
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -15960,7 +16040,7 @@ msgstr "Åpner modalvindu"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16136,10 +16216,12 @@ msgstr "Mer info"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Mer informasjon"
@@ -16169,7 +16251,7 @@ msgstr "Mest sannsynlig er passordet for langt."
msgid "Move"
msgstr "Flytt"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Flytt til"
@@ -16205,7 +16287,7 @@ msgstr "Flytt seksjoner til ny fane"
msgid "Move the current field and the following fields to a new column"
msgstr "Flytt gjeldende felt og de følgende feltene til en ny kolonne"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Flytt til radnummer"
@@ -16255,7 +16337,7 @@ msgstr "Må være omsluttet av '()' og inkludere '{0}', som er en plassholder fo
msgid "Must be of type \"Attach Image\""
msgstr "Må være av typen \"Legg ved bilde\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Må ha rapporttillatelse for å få tilgang til denne rapporten."
@@ -16273,7 +16355,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16313,7 +16395,7 @@ msgstr "MERK: Denne boksen har forfalt for avvikling. Vennligst konfigurer LDAP
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16333,7 +16415,7 @@ msgstr "Navnet kan ikke inneholde spesialtegn som {0}"
#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
-msgstr "Navnet på dokumenttypen (DocType) du vil at dette feltet skal knyttes til. F.eks. kunde"
+msgstr "Navnet på dokumenttypen (DocType) du vil at dette feltet skal knyttes til. F.eks. Kunde"
#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
@@ -16363,9 +16445,9 @@ msgstr "Navngivning"
msgid "Naming Options:\n"
"- field:[fieldname] - By Field
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
-msgstr "Alternativer for navngivning:\n"
-"- field:[fieldname] - Etter felt
- naming_series: - Etter navngivningsserie (feltet kalt naming_series må være til stede)
- Spørsmål - Spør brukeren om et navn
- [serie] - Serie etter prefiks (atskilt med punktum); for eksempel PRE.#####
\n"
-"- format: EKSEMPEL-{MM}flere ord{fieldname1}-{fieldname2}-{#####} - Erstatt alle ord med parenteser (feltnavn, datoord (DD, MM, ÅÅ), serier) med verdien deres. Utenfor parenteser kan alle tegn brukes.
"
+msgstr "Alternativer for nummerserie:\n"
+"- field:[fieldname] - Etter felt
- naming_series: - Etter nummerserie (feltet kalt naming_series må være til stede)
- Spørsmål - Spør brukeren om et navn
- [serie] - Serie etter prefiks (atskilt med punktum); for eksempel PRE.#####
\n"
+"- format: EKSEMPEL-{MM}flere ord{fieldname1}-{fieldname2}-{#####} - Erstatt alle ord med parenteser (feltnavn, datoord (DD, MM, YY), serier) med verdien deres. Utenfor parenteser kan alle tegn brukes.
"
#. Label of the naming_rule (Select) field in DocType 'DocType'
#. Label of the naming_rule (Select) field in DocType 'Customize Form'
@@ -16378,11 +16460,11 @@ msgstr "Navneregel"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Naming Series"
-msgstr "Navneserie"
+msgstr "Nummerserie"
#: frappe/model/naming.py:268
msgid "Naming Series mandatory"
-msgstr "Navneserie påkrevet"
+msgstr "Nummerserie påkrevet"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
@@ -16417,12 +16499,12 @@ msgstr "Mal for navigasjonsfelt"
msgid "Navbar Template Values"
msgstr "Verdier for navigasjonsfeltmal"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Naviger nedover i listen"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Naviger listen oppover"
@@ -16437,15 +16519,19 @@ msgstr "Naviger til hovedinnholdet"
msgid "Navigation Settings"
msgstr "Navigasjonsinnstillinger"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
-msgstr "Trenger rollen Arbeidsområdeadministrator for å redigere andre brukeres private arbeidsområde"
+msgstr "Trenger rollen Administrator for arbeidsområder for å redigere andre brukeres private arbeidsområde"
#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Negativ verdi"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Nestede filtre må angis som en liste eller tuppel."
@@ -16458,6 +16544,12 @@ msgstr "Feil i nestet sett. Kontakt administratoren."
msgid "Network Printer Settings"
msgstr "Innstillinger for nettverksskriver"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16466,7 +16558,7 @@ msgstr "Innstillinger for nettverksskriver"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16527,7 +16619,7 @@ msgstr "Ny hendelse"
msgid "New Folder"
msgstr "Ny mappe"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Nytt Kanban-board"
@@ -16562,7 +16654,7 @@ msgstr "Nytt nummerkort"
msgid "New Onboarding"
msgstr "Ny onboarding"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nytt passord"
@@ -16660,7 +16752,7 @@ msgstr "Ny verdi som skal angis"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Ny {0}"
@@ -16812,7 +16904,7 @@ msgstr "Neste ved klikk"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nei"
@@ -16917,7 +17009,7 @@ msgstr "Ingen navn spesifisert for {0}"
msgid "No New notifications"
msgstr "Ingen nye varsler"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Ingen rettigheter spesifisert"
@@ -16961,7 +17053,7 @@ msgstr "Ingen resultater funnet"
msgid "No Roles Specified"
msgstr "Ingen roller spesifisert"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Ingen valgfelt funnet"
@@ -16969,7 +17061,7 @@ msgstr "Ingen valgfelt funnet"
msgid "No Suggestions"
msgstr "Ingen forslag"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Ingen stikkord"
@@ -16995,7 +17087,7 @@ msgstr "Ingen endringer i dokumentet"
#: frappe/public/js/frappe/views/workspace/workspace.js:662
msgid "No changes made"
-msgstr "Ingen endringer gjort"
+msgstr "Ingen endringer er gjort"
#: frappe/model/rename_doc.py:369
msgid "No changes made because old and new name are the same."
@@ -17031,7 +17123,7 @@ msgstr "Ingen standard adressemal funnet. Opprett en ny under Oppsett > Utskrift
#: frappe/public/js/frappe/ui/toolbar/search.js:71
msgid "No documents found tagged with {0}"
-msgstr "Ingen dokumenter funnet tagget med {0}"
+msgstr "Ingen dokumenter funnet med stikkordet {0}"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
msgid "No email account associated with the User. Please add an account under User > Email Inbox."
@@ -17045,7 +17137,7 @@ msgstr "Ingen e-postadresser å invitere"
msgid "No failed logs"
msgstr "Ingen mislykkede logger"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Ingen felt funnet som kan brukes som en Kanban-kolonne. Bruk Tilpass-skjemaet for å legge til et tilpasset felt av typen «Velg»."
@@ -17069,7 +17161,7 @@ msgstr "Ingen flere oppføringer"
msgid "No matching records. Search something new"
msgstr "Ingen samsvarende oppføringer. Søk etter noe nytt"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Ingen flere elementer å vise"
@@ -17113,7 +17205,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Ingen rettigheter til '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Ingen rettigheter til å lese {0}"
@@ -17125,13 +17217,13 @@ msgstr "Ingen rettigheter til {0} {1} {2}"
msgid "No records deleted"
msgstr "Ingen oppføringer slettet"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Ingen oppføringer finnes i {0}"
#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
msgid "No records tagged."
-msgstr "Ingen oppføringer merket."
+msgstr "Ingen poster har stikkord."
#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
@@ -17161,11 +17253,11 @@ msgstr "Ingen {0}"
msgid "No {0} Found"
msgstr "Ingen {0} funnet"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Ingen {0} funnet"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Ingen {0} funnet med samsvarende filtre. Fjern filtrene for å se alle {0}."
@@ -17174,7 +17266,7 @@ msgid "No {0} mail"
msgstr "Ingen {0} e-post"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Nr."
@@ -17238,7 +17330,7 @@ msgstr "ikke underordnede av"
msgid "Not Equals"
msgstr "Ikke lik"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Ikke funnet"
@@ -17264,9 +17356,9 @@ msgstr "Ikke koblet til noen oppføring"
msgid "Not Nullable"
msgstr "Ikke nullbar"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17285,7 +17377,7 @@ msgstr "Ikke publisert"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17336,13 +17428,13 @@ msgstr "Ikke aktiv"
msgid "Not allowed for {0}: {1}"
msgstr "Ikke tillatt for {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Det er ikke tillatt å legge ved et {0} -dokument. Vennligst aktiver Tillat utskrift for {0} i utskriftsinnstillingene."
#: frappe/core/doctype/doctype/doctype.py:336
msgid "Not allowed to create custom Virtual DocType."
-msgstr "Det er ikke tillatt å opprette egendefinerte Virtual DocType."
+msgstr "Ikke tillatt å opprette egendefinert virtuell dokumenttype (DocType)."
#: frappe/www/printview.py:165
msgid "Not allowed to print cancelled documents"
@@ -17366,14 +17458,14 @@ msgstr "Ikke i utviklermodus"
#: frappe/core/doctype/doctype/doctype.py:331
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
-msgstr "Ikke i utviklermodus! Sett i site_config.json eller lag 'Egendefinert' DocType."
+msgstr "Ikke i utviklermodus! Angi i site_config.json, eller opprett en egendefinert dokumenttype (DocType)."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Ikke tillatt"
@@ -17419,7 +17511,7 @@ msgstr "Merk: For best resultat må bildene ha samme størrelse, og bredden må
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Merk: Flere økter vil være tillatt ved bruk av mobilenhet"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Merk: Dette vil bli delt med brukeren."
@@ -17491,15 +17583,15 @@ msgstr "Dokument med abbonnert varsling"
msgid "Notification sent to"
msgstr "Varsel sendt til"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Varsel: kunden {0} har ikke angitt noe mobilnummer"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Varsling: dokumentet {0} har ikke angitt noe {1} -tall (felt: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Varsel: bruker {0} har ikke angitt noe mobilnummer"
@@ -17613,7 +17705,7 @@ msgstr "Antall spørringer"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Antall vedleggsfelt er større enn {}, grensen er oppdatert til {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Antall sikkerhetskopier må være større enn null."
@@ -17885,7 +17977,7 @@ msgstr "Onboarding fullført"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Når de først er registrert, kan ikke dokumenter endres. De kan bare annulleres eller korrigeres (ved hjelp av nytt dokument, som f.eks. kredittnota)."
@@ -17941,7 +18033,7 @@ msgstr "Send bare poster som er oppdatert i løpet av de siste X timene"
#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
-msgstr "Bare administrator av arbeidsområder kan redigere offentlige arbeidsområder"
+msgstr "Bare Administrator for arbeidsområder kan redigere offentlige arbeidsområder"
#: frappe/modules/utils.py:65
msgid "Only allowed to export customizations in developer mode"
@@ -17974,13 +18066,13 @@ msgstr "Bare rapporter av type rapportbygger kan slettes"
msgid "Only reports of type Report Builder can be edited"
msgstr "Bare rapporter om type rapportbygger kan redigeres"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
-msgstr "Bare standard-DocTypes kan tilpasses via Tilpass skjema."
+msgstr "Bare standard dokumenttyper (DocType) kan tilpasses via Tilpass skjema."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
-msgstr "Bare administratoren kan slette en standard DocType."
+msgstr "Bare administratoren kan slette en standard dokumenttype (DocType)."
#: frappe/desk/form/assign_to.py:198
msgid "Only the assignee can complete this to-do."
@@ -18074,7 +18166,7 @@ msgstr "Åpne konsollen"
msgid "Open in a new tab"
msgstr "Åpne i ny fane"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Åpne listeelement"
@@ -18123,7 +18215,7 @@ msgstr "Åpnet"
msgid "Operation"
msgstr "Operasjon"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Operatøren må være en av {0}"
@@ -18169,6 +18261,7 @@ msgstr "Valgfritt: Varselet sendes hvis dette uttrykket er sant"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18177,13 +18270,14 @@ msgstr "Valgfritt: Varselet sendes hvis dette uttrykket er sant"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Alternativer"
#: frappe/core/doctype/doctype/doctype.py:1367
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
-msgstr "Alternativene 'Dynamisk lenke' må peke til et annet lenkefelt med alternativer som 'DocType'"
+msgstr "Et felt av typen «Dynamic Link» må peke til et annet «Link»-felt der alternativene er satt til «DocType»"
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
@@ -18206,7 +18300,7 @@ msgstr "Alternativer for {0} må angis før standardverdien settes."
msgid "Options is required for field {0} of type {1}"
msgstr "Alternativer er påkrevd for feltet {0} av typen {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Alternativer ikke angitt for lenkefeltet {0}"
@@ -18222,7 +18316,7 @@ msgstr "Oransje"
msgid "Order"
msgstr "Rekkefølge"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "Sorter etter må være en streng"
@@ -18238,7 +18332,7 @@ msgstr "Organisasjonens historikk"
msgid "Org History Heading"
msgstr "Overskrift for organisasjonens historikk"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orientering"
@@ -18320,7 +18414,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18353,10 +18447,6 @@ msgstr "PDF-sidebredde (i mm)"
msgid "PDF Settings"
msgstr "PDF-innstillinger"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "PDF-generering mislyktes"
@@ -18566,11 +18656,11 @@ msgstr "Overordnet DocType"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr "Overordnet dokumenttype"
+msgstr "Overordnet dokumenttype (DocType)"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
-msgstr "Overordnet dokumenttype er påkrevd for å opprette et tallkort"
+msgstr "Overordnet dokumenttype (DocType) er påkrevd for å opprette et tallkort"
#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
#. Step'
@@ -18613,7 +18703,7 @@ msgstr "Overordnet tabell"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
-msgstr "Dokumenttypen er påkrevd for å opprette et oversiktspanel-diagram"
+msgstr "Dokumenttypen (DocType) er påkrevd for å opprette et oversiktspanel-diagram"
#: frappe/core/doctype/data_export/exporter.py:253
msgid "Parent is the name of the document to which the data will get added to."
@@ -18672,8 +18762,8 @@ msgstr "Passiv"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18696,7 +18786,7 @@ msgstr "Tilbakestilling av passord"
msgid "Password Reset Link Generation Limit"
msgstr "Grense for generering av lenke til tilbakestilling av passord"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Passordet kan ikke filtreres"
@@ -18733,7 +18823,7 @@ msgstr "Instruksjoner for tilbakestilling av passord er sendt til {} via e-post"
msgid "Password set"
msgstr "Passordet er lagret"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Passordet er for langt"
@@ -18745,7 +18835,7 @@ msgstr "Passordet er for langt"
msgid "Passwords do not match"
msgstr "Passordene samsvarer ikke"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Passordene samsvarer ikke"
@@ -18896,7 +18986,7 @@ msgstr "Permanent registrert {0}?"
msgid "Permanently delete {0}?"
msgstr "Slette {0} permanent ?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Feil i tillatelse"
@@ -18956,16 +19046,16 @@ msgstr "Tillatelsestype"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Rettigheter"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Feil i tillatelser"
@@ -18975,7 +19065,7 @@ msgstr "Tillatelser brukes automatisk på standardrapporter og søk."
#: frappe/core/page/permission_manager/permission_manager_help.html:5
msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
-msgstr "Tillatelser angis for roller og dokumenttyper (kalt DokTypes) ved å angi rettigheter som Lese, Skrive, Opprette, Slette, Registrere, Avbryte, Endre, Rapportere, Importere, Eksportere, Skrive ut, E-poste og Angi brukertillatelser."
+msgstr "Rettigeter angis for roller og dokumenttyper (DocType) ved å angi rettigheter som Lese, Skrive, Opprette, Slette, Registrere, Avbryte, Endre, Rapportere, Importere, Eksportere, Skrive ut, E-poste og Angi brukertillatelser."
#: frappe/core/page/permission_manager/permission_manager_help.html:26
msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
@@ -19027,15 +19117,18 @@ msgstr "Forespørsel om nedlasting av personopplysninger"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19048,11 +19141,11 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonnr."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummeret {0} satt i feltet {1} er ikke gyldig."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19134,11 +19227,11 @@ msgstr "Be administratoren om å bekrefte registreringen din"
msgid "Please attach a file first."
msgstr "Legg ved en fil først."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Legg ved en bildefil for å angi HTML for bunntekst."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Legg ved en bildefil for å sette HTML for brevhode."
@@ -19150,7 +19243,7 @@ msgstr "Legg ved pakken"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Sjekk filterverdiene som er angitt for oversiktspanel-diagram: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Sjekk verdien av \"Hent fra\" som er angitt for feltet {0}"
@@ -19190,7 +19283,7 @@ msgstr "Bekreft at du vil {0} dette dokumentet."
msgid "Please contact your system manager to install correct version."
msgstr "Kontakt systembehandleren for å installere riktig versjon."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Opprett et kort først"
@@ -19206,11 +19299,11 @@ msgstr "Vennligst slett feltet fra {0} eller legg til den nødvendige doktypen."
msgid "Please do not change the template headings."
msgstr "Ikke endre overskriftene i malen."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Dupliser dette for å gjøre endringer"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Aktiver minst én sosial påloggingsnøkkel eller LDAP- eller logg inn med e-postlenke før du deaktiverer brukernavn-/passordbasert pålogging."
@@ -19219,7 +19312,7 @@ msgstr "Aktiver minst én sosial påloggingsnøkkel eller LDAP- eller logg inn m
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Aktiver popup-vinduer"
@@ -19320,11 +19413,11 @@ msgstr "Lagre før vedlegging."
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
-msgstr "Lagre dokumentet før tildelingen"
+msgstr "Lagre dokumentet før tildeling"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
msgid "Please save the document before removing assignment"
-msgstr "Lagre dokumentet før du fjerner tildelingen"
+msgstr "Lagre dokumentet før du fjerner tildeling"
#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Please save the report first"
@@ -19334,23 +19427,23 @@ msgstr "Lagre rapporten først"
msgid "Please save to edit the template."
msgstr "Lagre for å redigere malen."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
-msgstr "Velg DocType først"
+msgstr "Velg dokumenttype (DocType) først"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
msgid "Please select Entity Type first"
msgstr "Velg enhetstype først"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Velg minimum passordpoengsum"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Velg X- og Y-feltene"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Velg en landskode for felt {1}."
@@ -19372,19 +19465,19 @@ msgstr "Velg et gyldig datofilter"
#: frappe/core/doctype/user_permission/user_permission_list.js:203
msgid "Please select applicable Doctypes"
-msgstr "Velg aktuelle dokumenttyper"
+msgstr "Vennligst velg relevante dokumenttyper (DocType)"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Velg minst én kolonne fra {0} for å sortere/gruppere"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
msgid "Please select prefix first"
-msgstr "Velg en fil først"
+msgstr "Vennligst velg prefiks først"
#: frappe/core/doctype/data_export/data_export.js:42
msgid "Please select the Document Type."
-msgstr "Velg dokumenttypen"
+msgstr "Velg dokumenttypen (DocType)"
#. Description of the 'Directory Server' (Select) field in DocType 'LDAP
#. Settings'
@@ -19404,7 +19497,7 @@ msgstr "Angi e-postadresse"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Angi en skrivertilordning for dette utskriftsformatet i skriverinnstillingene"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Angi filtre"
@@ -19414,7 +19507,7 @@ msgstr "Angi filterverdi i rapportfiltertabellen."
#: frappe/model/naming.py:580
msgid "Please set the document name"
-msgstr "Angi dokumenttypen"
+msgstr "Angi dokumenttypen (DocType)"
#: frappe/desk/doctype/dashboard/dashboard.py:120
msgid "Please set the following documents in this Dashboard as standard first."
@@ -19424,7 +19517,7 @@ msgstr "Angi følgende dokumenter i dette oversiktspanelet som standard først."
msgid "Please set the series to be used."
msgstr "Angi hvilken serie som skal brukes."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Konfigurer SMS før du angir det som autentiseringsmetode, via SMS-innstillinger"
@@ -19446,7 +19539,7 @@ msgstr "Spesifiser"
#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
-msgstr "Spesifiser en gyldig overordnet DocType for {0}"
+msgstr "Spesifiser en gyldig overordnet dokumenttype (DocType) for {0}"
#: frappe/email/doctype/notification/notification.py:163
msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
@@ -19539,7 +19632,7 @@ msgstr "Element i portalmeny"
msgid "Portal Settings"
msgstr "Portalinnstillinger"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Portrett"
@@ -19567,6 +19660,7 @@ msgstr "Post"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Postnummer"
@@ -19575,7 +19669,7 @@ msgstr "Postnummer"
msgid "Posting Timestamp"
msgstr "Tidsstempel for innlegg"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "Potensielt farlig innhold i strengliteral: {0}"
@@ -19590,6 +19684,10 @@ msgstr "Potensielt farlig innhold i strengliteral: {0}"
msgid "Precision"
msgstr "Presisjon"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "Presisjonen ({0}) for {1} kan ikke være større enn lengden ({2})."
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Presisjonen bør være mellom 1 og 6"
@@ -19638,7 +19736,7 @@ msgstr "Analyseverktøy for forhåndsgenererte rapporter"
msgid "Prepared Report User"
msgstr "Bruker av forhåndsgenerert rapport"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Rendring av forhåndsgenerert rapport feilet"
@@ -19758,7 +19856,7 @@ msgstr "Primært telefonnummer"
#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199
#: frappe/database/sqlite/schema.py:141
msgid "Primary key of doctype {0} can not be changed as there are existing values."
-msgstr "Primærnøkkelen til DocType {0} kan ikke endres da det finnes eksisterende verdier."
+msgstr "Primærnøkkelen til dokumenttypen (DocType) {0} kan ikke endres da det finnes eksisterende verdier."
#. Label of the print (Check) field in DocType 'Custom DocPerm'
#. Label of the print (Check) field in DocType 'DocPerm'
@@ -19773,13 +19871,13 @@ msgstr "Primærnøkkelen til DocType {0} kan ikke endres da det finnes eksistere
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Skriv ut"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Skriv ut"
@@ -19849,7 +19947,7 @@ msgstr "Hjelp med utskriftsformat"
msgid "Print Format Type"
msgstr "Type utskriftsformat"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "Utskriftsformat ikke funnet"
@@ -19888,7 +19986,7 @@ msgstr "Skjul i utskrift hvis ingen verdi"
msgid "Print Language"
msgstr "Utskriftsspråk"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Utskrift sendt til trykkeriet!"
@@ -19906,7 +20004,7 @@ msgstr "Utskriftsserver"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Utskriftsinnstillinger"
@@ -20030,11 +20128,11 @@ msgstr "ProTips: Legg til Referanse: {{ reference_doctype }} {{ reference_
msgid "Proceed"
msgstr "Fortsett"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Fortsett uansett"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Behandler"
@@ -20051,11 +20149,21 @@ msgstr "Prof."
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr ""
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Fremgang"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Prosjekt"
@@ -20084,7 +20192,7 @@ msgstr "Egenskapsinnstilling"
#. Description of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter overrides a standard DocType or Field property"
-msgstr "Egenskapsinnstilling overstyrer en standard DocType eller feltegenskap"
+msgstr "Egenskapsinnstilling overstyrer en standard dokumenttype (DocType) eller feltegenskap"
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -20099,7 +20207,7 @@ msgstr "Egenskapstype"
msgid "Protect Attached Files"
msgstr "Beskytt vedlagte filer"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Beskyttet fil"
@@ -20213,7 +20321,7 @@ msgstr "Innkjøpsleder"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
-msgstr "Innkjøpssjef"
+msgstr "Administrator for innkjøpsstamdata"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
@@ -20272,7 +20380,7 @@ msgstr "QR-kode"
msgid "QR Code for Login Verification"
msgstr "QR-kode for innloggingsbekreftelse"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Tray – feil:"
@@ -20479,7 +20587,7 @@ msgstr "Rangering"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Rå kommandoer"
@@ -20605,11 +20713,11 @@ msgstr "Sanntid (SocketIO)"
msgid "Reason"
msgstr "Årsak"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Gjenoppbygg"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Gjenoppbygg trestruktur"
@@ -20696,7 +20804,7 @@ msgstr "Foreslått indeks for opptaker"
#: frappe/core/doctype/user_permission/user_permission_help.html:2
msgid "Records for following doctypes will be filtered"
-msgstr "Oppføringer for følgende doktyper vil bli filtrert"
+msgstr "Oppføringer for følgende dokumenttyper (DocType) vil bli filtrert"
#: frappe/core/doctype/doctype/doctype.py:1609
msgid "Recursive Fetch From"
@@ -20780,7 +20888,7 @@ msgstr "Ref DocType"
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
-msgstr "Referansedokumenttypen og navnet på oversiktspanelet kan ikke brukes samtidig."
+msgstr "Referanse-dokumenttypen (DocType) og navnet på oversiktspanelet kan ikke brukes samtidig."
#. Label of the linked_with (Section Break) field in DocType 'Address'
#. Label of the contact_details (Section Break) field in DocType 'Contact'
@@ -20833,7 +20941,7 @@ msgstr "Referanse-DocType"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr "Referanse-DocType og referanse-DocName er påkrevd"
+msgstr "Referanse-dokumenttype (DocType) og referansenavn er påkrevd"
#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
@@ -20990,8 +21098,8 @@ msgstr "Henviser"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21022,13 +21130,13 @@ msgstr "Oppdater forhåndsvisning av utskrift"
msgid "Refresh Token"
msgstr "Oppdater token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Oppdaterer"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Oppdaterer..."
@@ -21046,33 +21154,33 @@ msgstr "Avvist"
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
msgid "Relay Server URL missing"
-msgstr ""
+msgstr "Mangler URL til reléserver"
#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Relay Settings"
-msgstr ""
+msgstr "Reléinnstillinger"
#. Group in Package's connections
#: frappe/core/doctype/package/package.json
msgid "Release"
-msgstr ""
+msgstr "Utgivelse"
#. Label of the release_notes (Markdown Editor) field in DocType 'Package
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr ""
+msgstr "Utgivelseskommentarer"
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
-msgstr ""
+msgstr "Koble på nytt"
#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr ""
+msgstr "Koble kommunikasjon på nytt"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -21088,15 +21196,15 @@ msgstr "Last inn på nytt"
#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Reload File"
-msgstr ""
+msgstr "Last inn fil på nytt"
#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
-msgstr ""
+msgstr "Last inn liste på nytt"
#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
-msgstr ""
+msgstr "Last inn rapporten på nytt"
#. Label of the remember_last_selected_value (Check) field in DocType
#. 'DocField'
@@ -21111,28 +21219,28 @@ msgstr "Husk sist valgte verdi"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
-msgstr ""
+msgstr "Påminn på"
#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
-msgstr ""
+msgstr "Påminn meg"
#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
-msgstr ""
+msgstr "Påminn meg om"
#. Name of a DocType
#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
-msgstr ""
+msgstr "Påminnelse"
#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
-msgstr ""
+msgstr "Påminnelse kan ikke opprettes tilbake i tid."
#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
-msgstr ""
+msgstr "Påminnelse angitt på {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
@@ -21142,7 +21250,7 @@ msgstr "Fjern"
#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
-msgstr ""
+msgstr "Fjern mislykkede jobber"
#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
@@ -21154,11 +21262,11 @@ msgstr "Fjern seksjon"
#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
-msgstr ""
+msgstr "Fjerne alle egentilpasninger?"
#: frappe/public/js/form_builder/components/Section.vue:286
msgid "Remove all fields in the column"
-msgstr ""
+msgstr "Fjern alle felter i kolonnen"
#: frappe/public/js/form_builder/components/Section.vue:278
#: frappe/public/js/frappe/utils/datatable.js:9
@@ -21168,11 +21276,11 @@ msgstr "Fjern kolonne"
#: frappe/public/js/form_builder/components/Field.vue:260
msgid "Remove field"
-msgstr ""
+msgstr "Fjern felt"
#: frappe/public/js/form_builder/components/Section.vue:279
msgid "Remove last column"
-msgstr ""
+msgstr "Fjern siste kolonne"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
msgid "Remove page break"
@@ -21185,7 +21293,7 @@ msgstr "Fjernet seksjon"
#: frappe/public/js/form_builder/components/Tabs.vue:140
msgid "Remove tab"
-msgstr ""
+msgstr "Fjern fane"
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -21199,20 +21307,20 @@ msgstr "Fjernet"
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
-msgstr ""
+msgstr "Endre navn"
#: frappe/custom/doctype/custom_field/custom_field.js:116
#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
-msgstr ""
+msgstr "Endre feltnavn"
#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
-msgstr ""
+msgstr "Endre navn på {0}"
#: frappe/core/doctype/doctype/doctype.py:699
msgid "Renamed files and replaced code in controllers, please check!"
-msgstr ""
+msgstr "Endrede navn på filer og erstattet kode i kontrollere, vennligst sjekk!"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
msgid "Render labels to the left and values to the right in this section"
@@ -21225,7 +21333,7 @@ msgstr "Gjenåpne"
#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
-msgstr ""
+msgstr "Gjenta"
#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -21341,8 +21449,8 @@ msgstr "Svar alle"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21413,11 +21521,11 @@ msgstr "Rapportansvarlig"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Rapportnavn"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Rapportnavn, rapportfelt og -fusjon er påkrevd for å opprette et nummerkort"
@@ -21426,13 +21534,13 @@ msgstr "Rapportnavn, rapportfelt og -fusjon er påkrevd for å opprette et numme
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Report Ref DocType"
-msgstr "Rapport-ref. DocType"
+msgstr "Rapport-Ref DocType"
#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr "DocTypen rapport-referanse"
+msgstr "Rapportreferanse-dokumenttype (DocType)"
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21451,21 +21559,21 @@ msgstr "Rapportvisning"
msgid "Report bug"
msgstr "Rapporter feil"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Rapport kan ikke settes for DocType-er av typen Single."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Rapporten inneholder ingen data. Vennligst endre filtrene eller rapportnavnet."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Rapporten har ingen numeriske felt. Vennligst endre rapportnavnet."
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Rapport påbegynt, klikk for å se status"
@@ -21485,7 +21593,7 @@ msgstr "Arbeidsflyten ble vellykket oppdatert"
msgid "Report was not saved (there were errors)"
msgstr "Rapporten ble ikke lagret (det oppstod feil)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Rapporten med mer enn 10 kolonner ser bedre ut i landskapsmodus."
@@ -21521,7 +21629,7 @@ msgstr "Rapporter"
msgid "Reports & Masters"
msgstr "Rapporter og stamdata"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Det ligger allerede rapporter i køen"
@@ -21540,7 +21648,10 @@ msgid "Request Body"
msgstr "Request Body"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Forespørselsdata"
@@ -21592,6 +21703,11 @@ msgstr "Tidsavbrudd for forespørsel"
msgid "Request URL"
msgstr "Forespørsels-URL"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21647,7 +21763,7 @@ msgstr "Tilbakestill tilpasninger av oversiktspanelet"
msgid "Reset Fields"
msgstr "Tilbakestill felt"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Tilbakestill LDAP-passord"
@@ -21655,11 +21771,11 @@ msgstr "Tilbakestill LDAP-passord"
msgid "Reset Layout"
msgstr "Tilbakestill oppsett"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Tilbakestill OTP-hemmelighet"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21694,7 +21810,7 @@ msgstr "Tilbakestill til standard"
msgid "Reset sorting"
msgstr "Tilbakestill sortering"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Tilbakestill til standardinnstilling"
@@ -21834,7 +21950,7 @@ msgstr "Gå tilbake til bekreftelsesskjermen og skriv inn koden som vises av aut
msgid "Reverse Icon Color"
msgstr "Omvendt ikonfarge"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Tilbakestiller lengden til {0} for '{1}' i '{2}'. Hvis lengden settes til {3} , vil dataene bli avkortet."
@@ -21946,7 +22062,7 @@ msgstr "Rolletillatelse for side og rapport"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Rolletillatelser"
@@ -21956,7 +22072,7 @@ msgstr "Rolletillatelser"
msgid "Role Permissions Manager"
msgstr "Ansvarlig for rolletillatelser"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Ansvarlig for rolletillatelser"
@@ -22101,7 +22217,7 @@ msgstr "Omdirigeringer av stier"
msgid "Route: Example \"/app\""
msgstr "Sti: for eksempel \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Rad"
@@ -22109,12 +22225,12 @@ msgstr "Rad"
msgid "Row #"
msgstr "Rad #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Rad # {0}: En bruker som ikke er administrator kan ikke angi rollen {1} til den egendefinerte dokumenttypen"
+msgstr "Rad # {0}: En bruker som ikke er administrator kan ikke angi rollen {1} til den egendefinerte dokumenttypen (DocType)"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Rad #{0}:"
@@ -22149,11 +22265,11 @@ msgstr "Radverdier endret"
msgid "Row {0}"
msgstr "Rad {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Rad {0}: Å deaktivere \"Obligatorisk\" er sperret for standardfelt"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Rad {0}: Å aktivere \"Tillat ved registrering\" er sperret for standardfelt"
@@ -22172,7 +22288,10 @@ msgid "Rows Removed"
msgstr "Rader fjernet"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "Radterskel for rutenettsøk"
@@ -22189,7 +22308,7 @@ msgstr "Regelbetingelser"
#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
-msgstr "Regelen finnes allerede for denne kombinasjonen av DocType/rolle/rettighetsnivå/‘hvis eier’."
+msgstr "Regelen finnes allerede for denne kombinasjonen av dokumenttype (DocType)/rolle/rettighetsnivå/‘hvis eier’."
#. Group in DocType's connections
#: frappe/core/doctype/doctype/doctype.json
@@ -22289,17 +22408,17 @@ msgstr "SQL-betingelser. Eksempel: status=\"Åpen\""
#: frappe/core/doctype/recorder/recorder.js:85
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
-msgstr ""
+msgstr "Spørringsplan (EXPLAIN)"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr ""
+msgstr "SQL-utdata"
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr ""
+msgstr "SQL-spørringer"
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -22308,24 +22427,24 @@ msgstr "SSL/TLS-modus"
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
-msgstr ""
+msgstr "SWATCHES"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr ""
+msgstr "Salgsleder"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
-msgstr ""
+msgstr "Administrator for salgsstamdata"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
-msgstr ""
+msgstr "Salgsmedarbeider"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -22339,7 +22458,7 @@ msgstr "Salesforce"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
-msgstr ""
+msgstr "Hilsen"
#: frappe/integrations/doctype/webhook/webhook.py:113
msgid "Same Field is entered more than once"
@@ -22348,7 +22467,7 @@ msgstr "Samme felt er skrevet inn mer enn én gang"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr ""
+msgstr "Prøve"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22380,8 +22499,8 @@ msgstr "Lørdag"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22404,11 +22523,11 @@ msgstr "Lagre som"
msgid "Save Customizations"
msgstr "Lagre tilpasninger"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Lagre rapport"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Lagre filtre"
@@ -22437,7 +22556,7 @@ msgstr "Lagrede filtre"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr ""
+msgstr "Lagrer"
#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
@@ -22446,7 +22565,7 @@ msgstr "Lagrer"
#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
-msgstr ""
+msgstr "Lagrer egendefinering..."
#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
@@ -22460,20 +22579,20 @@ msgstr "Lagrer..."
#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
-msgstr ""
+msgstr "Skann QRCode"
#: frappe/www/qrcode.html:14
msgid "Scan the QR Code and enter the resulting code displayed."
-msgstr ""
+msgstr "Skann QR-koden, og skriv inn koden som vises."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Schedule"
-msgstr ""
+msgstr "Tidsplan"
#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
-msgstr ""
+msgstr "Planlegg Send på"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
@@ -22490,12 +22609,12 @@ msgstr "Planlagt i forhold til"
#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job"
-msgstr ""
+msgstr "Planlagt jobb"
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job Log"
-msgstr ""
+msgstr "Logg for planlagte jobber"
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -22505,26 +22624,26 @@ msgstr ""
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Scheduled Job Type"
-msgstr ""
+msgstr "Planlagt jobbtype"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Scheduled Jobs Logs"
-msgstr ""
+msgstr "Logger for planlagte jobber"
#: frappe/core/doctype/server_script/server_script.py:150
msgid "Scheduled execution for script {0} has updated"
-msgstr ""
+msgstr "Planlagt utførelse for skript {0} er blitt oppdatert"
#: frappe/email/doctype/auto_email_report/auto_email_report.js:26
msgid "Scheduled to send"
-msgstr ""
+msgstr "Planlagt å sende"
#. Label of the scheduler_section (Section Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Scheduler"
-msgstr ""
+msgstr "Planlegger"
#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -22537,33 +22656,33 @@ msgstr "Planlagt hendelse"
#: frappe/core/doctype/data_import/data_import.py:107
msgid "Scheduler Inactive"
-msgstr ""
+msgstr "Planleggeren er inaktiv"
#. Label of the scheduler_status (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Scheduler Status"
-msgstr ""
+msgstr "Planleggerstatus"
#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
-msgstr ""
+msgstr "Planleggeren kan ikke aktiveres på nytt når vedlikeholdsmodus er aktiv."
#: frappe/core/doctype/data_import/data_import.py:107
msgid "Scheduler is inactive. Cannot import data."
-msgstr ""
+msgstr "Planleggeren er inaktiv. Kan ikke importere data."
#: frappe/core/doctype/rq_job/rq_job_list.js:19
msgid "Scheduler: Active"
-msgstr ""
+msgstr "Planlegger: Aktiv"
#: frappe/core/doctype/rq_job/rq_job_list.js:21
msgid "Scheduler: Inactive"
-msgstr ""
+msgstr "Planlegger: Inaktiv"
#. Label of the scope (Data) field in DocType 'OAuth Scope'
#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
-msgstr ""
+msgstr "Omfang"
#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
#. App'
@@ -22583,7 +22702,7 @@ msgstr "Omfang"
#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Scopes Supported"
-msgstr ""
+msgstr "Omfang som støttes"
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
@@ -22598,12 +22717,12 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr ""
+msgstr "Skript"
#. Name of a role
#: frappe/core/doctype/server_script/server_script.json
msgid "Script Manager"
-msgstr ""
+msgstr "Skriptbehandler"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -22618,19 +22737,19 @@ msgstr "Skripttype"
#. Description of a DocType
#: frappe/website/doctype/website_script/website_script.json
msgid "Script to attach to all web pages."
-msgstr ""
+msgstr "Skript som skal legges ved alle websider."
#. Label of a Card Break in the Build Workspace
#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page'
#: frappe/core/workspace/build/build.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Scripting"
-msgstr ""
+msgstr "Skripting"
#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Scripting / Style"
-msgstr ""
+msgstr "Skripting / stil"
#. Label of the scripts_section (Section Break) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -22704,11 +22823,11 @@ msgstr "Søk etter {0}"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
msgid "Search in a document type"
-msgstr "Søk i en dokumenttype"
+msgstr "Søk i en dokumenttype (DocType)"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
msgid "Search or type a command ({0})"
-msgstr "Søk eller skriv inn en kommando ({0})"
+msgstr "Søk eller skriv en kommando ({0})"
#: frappe/public/js/form_builder/components/SearchBox.vue:8
msgid "Search properties..."
@@ -22731,7 +22850,7 @@ msgstr "Søker ..."
#: frappe/public/js/frappe/form/controls/duration.js:35
msgctxt "Duration"
msgid "Seconds"
-msgstr ""
+msgstr "Sekunder"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
@@ -22759,7 +22878,7 @@ msgstr "Seksjonsoverskrift"
#. Label of the section_id (Data) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Section ID"
-msgstr ""
+msgstr "Seksjons-ID"
#: frappe/public/js/form_builder/components/Section.vue:28
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8
@@ -22769,25 +22888,25 @@ msgstr "Seksjonstittel"
#: frappe/public/js/form_builder/components/Section.vue:217
#: frappe/public/js/form_builder/components/Section.vue:240
msgid "Section must have at least one column"
-msgstr ""
+msgstr "Seksjonen må ha minst én kolonne"
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr ""
+msgstr "Sikkerhetsinnstillinger"
#: frappe/public/js/frappe/ui/notifications/notifications.js:309
msgid "See all Activity"
-msgstr ""
+msgstr "Se all aktivitet"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
-msgstr ""
+msgstr "Se alle tidligere rapporter."
#: frappe/public/js/frappe/form/form.js:1235
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
-msgstr ""
+msgstr "Se på nettstedet"
#: frappe/website/doctype/web_form/templates/web_form.html:160
msgctxt "Button in web form"
@@ -22813,12 +22932,12 @@ msgstr "Sett"
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr ""
+msgstr "Sett av"
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr ""
+msgstr "Sett av"
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -22844,7 +22963,7 @@ msgstr "Velg"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Velg alle"
@@ -22865,7 +22984,7 @@ msgid "Select Column"
msgstr "Velg kolonne"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Velg kolonner"
@@ -22903,15 +23022,15 @@ msgstr "Velg DocType"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
msgid "Select Document Type"
-msgstr "Velg dokumenttype"
+msgstr "Velg dokumenttype (DocType)"
#: frappe/core/page/permission_manager/permission_manager.js:179
msgid "Select Document Type or Role to start."
-msgstr "Velg dokumenttype og rolle for å begynne"
+msgstr "Velg dokumenttype (DocType) og rolle for å begynne."
#: frappe/core/page/permission_manager/permission_manager_help.html:34
msgid "Select Document Types to set which User Permissions are used to limit access."
-msgstr "Velg dokumenttyper for å angi hvilke brukertillatelser som brukes til å begrense tilgang."
+msgstr "Velg dokumenttyper (DocType) for å angi hvilke brukertillatelser som brukes til å begrense tilgang."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
@@ -22924,14 +23043,14 @@ msgstr "Velg felt"
msgid "Select Field..."
msgstr "Velg felt..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Velg felter"
#: frappe/public/js/frappe/list/list_settings.js:234
msgid "Select Fields (Up to {0})"
-msgstr ""
+msgstr "Velg felt (opptil {0})"
#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
@@ -23037,21 +23156,21 @@ msgstr "Velg en logo først."
#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
-msgstr "Velg en DocType for å lage et nytt format"
+msgstr "Velg en dokumenttype (DocType) for å lage et nytt format"
#: frappe/public/js/form_builder/components/Sidebar.vue:56
msgid "Select a field to edit its properties."
msgstr "Velg et felt for å redigere egenskapene."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Velg en gruppenode først."
+msgid "Select a group {0} first."
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Velg et gyldig avsenderfelt for å opprette dokumenter fra e-post"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Velg et gyldig emnefelt for å opprette dokumenter fra e-post"
@@ -23081,13 +23200,13 @@ msgstr "Velg minst én oppføring for utskrift"
msgid "Select atleast 2 actions"
msgstr "Velg minst 2 handlinger"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Velg listeelement"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Velg flere listeelementer"
@@ -23123,28 +23242,28 @@ msgstr "Velg {0}"
#: frappe/model/workflow.py:120
msgid "Self approval is not allowed"
-msgstr ""
+msgstr "Må godkjennes av en annen person"
#: frappe/www/contact.html:41
msgid "Send"
-msgstr ""
+msgstr "Send"
#: frappe/public/js/frappe/views/communication.js:26
msgctxt "Send Email"
msgid "Send"
-msgstr ""
+msgstr "Send"
#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence."
-msgstr ""
+msgstr "Send tidligst dette antallet minutter før eller etter referansetidspunktet. Den faktiske utsendelsen kan bli forsinket med opptil 5 minutter på grunn av planleggerens utløserintervall."
#. Label of the send_after (Datetime) field in DocType 'Communication'
#. Label of the send_after (Datetime) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr ""
+msgstr "Send etter"
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -23154,12 +23273,12 @@ msgstr "Send varsel på"
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr ""
+msgstr "Send e-postvarsel"
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
-msgstr ""
+msgstr "Send e-post på tilstand"
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
@@ -23171,32 +23290,32 @@ msgstr "Send e-post Skriv ut vedlegg som PDF (anbefales)"
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Send Email To Creator"
-msgstr ""
+msgstr "Send e-post til skaperen"
#. Label of the send_me_a_copy (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr ""
+msgstr "Send meg en kopi av utgående e-post"
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr ""
+msgstr "Send varsel til"
#. Label of the document_follow_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr ""
+msgstr "Send varsler for dokumenter som følges av meg"
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr ""
+msgstr "Send varsler for e-posttråder"
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
-msgstr ""
+msgstr "Send nå"
#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -23205,23 +23324,23 @@ msgstr "Send utskrift som PDF"
#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
-msgstr ""
+msgstr "Send lesebekreftelse"
#. Label of the send_system_notification (Check) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr ""
+msgstr "Send systemvarsling"
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr ""
+msgstr "Send til alle mottakere"
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr ""
+msgstr "Send velkomst-e-post"
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -23248,38 +23367,38 @@ msgstr "Send en påminnelse via e-post om morgenen"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr ""
+msgstr "Send dager før eller etter referansedatoen"
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send email when document transitions to the state."
-msgstr ""
+msgstr "Send e-post når dokumentet går over til denne tilstanden."
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr ""
+msgstr "Send forespørsler til denne e-postadressen"
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
-msgstr ""
+msgstr "Send påloggingslenke"
#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
-msgstr ""
+msgstr "Send meg en kopi"
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr ""
+msgstr "Send bare hvis det finnes data"
#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr ""
+msgstr "Send avmeldingsmelding i e-post"
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -23296,30 +23415,30 @@ msgstr "Avsender"
#. Label of the sender_email (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr ""
+msgstr "Avsenders e-postadresse"
#. Label of the sender_field (Data) field in DocType 'DocType'
#. Label of the sender_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
-msgstr ""
+msgstr "Felt for avsenders e-postadresse"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
-msgstr ""
+msgstr "Avsenderfeltet må være av typen e-postadresse"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sender Name"
-msgstr ""
+msgstr "Avsendernavn"
#. Label of the sender_name_field (Data) field in DocType 'DocType'
#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
-msgstr ""
+msgstr "Felt for avsendernavn"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23348,22 +23467,22 @@ msgstr "Sendt"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "Mappe for sendte meldinger"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
-msgstr ""
+msgstr "Sendt den"
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr ""
+msgstr "Lesebekreftelse sendt"
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
-msgstr ""
+msgstr "Sendt til"
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -23383,33 +23502,33 @@ msgstr "Separator"
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Sequence Id"
-msgstr ""
+msgstr "Sekvens-ID"
#. Label of the naming_series_options (Text) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr ""
+msgstr "Liste med løpenummerserier for denne transaksjonen"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
-msgstr ""
+msgstr "Løpenummerserien for {} er oppdatert"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
msgid "Series counter for {} updated to {} successfully"
-msgstr ""
+msgstr "Telleren for løpenummerserier for {} er oppdatert til {}"
#: frappe/core/doctype/doctype/doctype.py:1110
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
-msgstr ""
+msgstr "Løpenummerserien {0} er allerede brukt i {1}"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
msgstr "Serverhandling"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfeil"
@@ -23426,23 +23545,23 @@ msgstr "Server-IP"
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/workspace/build/build.json
msgid "Server Script"
-msgstr ""
+msgstr "Serverskript"
#: frappe/utils/safe_exec.py:98
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
-msgstr ""
+msgstr "Serverskript er deaktivert. Aktiver serverskript fra benkekonfigurasjonen."
#: frappe/core/doctype/server_script/server_script.js:39
msgid "Server Scripts feature is not available on this site."
-msgstr ""
+msgstr "Serverskript-funksjonen er ikke tilgjengelig på dette nettstedet."
#: frappe/public/js/frappe/request.js:254
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
-msgstr ""
+msgstr "Serveren klarte ikke å behandle denne forespørselen på grunn av en samtidig motstridende forespørsel. Vennligst prøv igjen."
#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
-msgstr ""
+msgstr "Serveren var for opptatt til å behandle denne forespørselen. Vennligst prøv igjen."
#. Label of the service (Select) field in DocType 'Email Account'
#. Label of the integration_request_service (Data) field in DocType
@@ -23455,12 +23574,12 @@ msgstr "Tjeneste"
#. Name of a DocType
#: frappe/core/doctype/session_default/session_default.json
msgid "Session Default"
-msgstr ""
+msgstr "Øktstandard"
#. Name of a DocType
#: frappe/core/doctype/session_default_settings/session_default_settings.json
msgid "Session Default Settings"
-msgstr ""
+msgstr "Standardinnstillinger for økt"
#. Label of a standard navbar item
#. Type: Action
@@ -23469,29 +23588,29 @@ msgstr ""
#: frappe/core/doctype/session_default_settings/session_default_settings.json
#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
-msgstr ""
+msgstr "Øktstandarder"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
-msgstr "Standardinnstillinger for økter lagret"
+msgstr "Standardinnstillinger for økt er lagret"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
-msgstr ""
+msgstr "Økten er utløpt på grunn av inaktivitet"
#. Label of the session_expiry (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
-msgstr ""
+msgstr "Utløpstid for økter (ved inaktivitet)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
-msgstr ""
+msgstr "Utløpstid for økter må være på format {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Angi"
@@ -23505,11 +23624,11 @@ msgstr "Angi"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr ""
+msgstr "Sett banner fra bilde"
#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
-msgstr ""
+msgstr "Sett diagram"
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -23517,12 +23636,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Sett standardalternativer for alle kartene på dette oversiktspanelet (eks: \"farger\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Angi dynamiske filtre"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23533,19 +23652,19 @@ msgstr "Angi filtere"
msgid "Set Filters for {0}"
msgstr "Angi filtre for {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
-msgstr ""
+msgstr "Angi nivå"
#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
-msgstr ""
+msgstr "Angi begrensning"
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr ""
+msgstr "Angi alternativer for nummerserier på transaksjoner."
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -23558,11 +23677,11 @@ msgstr "Angi antall sikkerhetskopier"
#: frappe/www/update-password.html:32
msgid "Set Password"
-msgstr ""
+msgstr "Angi passord"
#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
-msgstr ""
+msgstr "Angi rettigheter"
#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
@@ -23587,15 +23706,15 @@ msgstr "Angi antall"
msgid "Set Role For"
msgstr "Angi rolle for"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr ""
+msgstr "Legg til brukerrettigheter"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr ""
+msgstr "Ny verdi"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
@@ -23606,13 +23725,13 @@ msgstr "Sett alle til private"
msgid "Set all public"
msgstr "Sett alle til offentlige"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Angi som standard"
#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
-msgstr ""
+msgstr "Angi som standardtema"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -23625,27 +23744,30 @@ msgstr "Angitt av bruker"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Angi dynamiske filterverdier i JavaScript for de påkrevde feltene her."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Angi ikke-standard presisjon for et flyt- eller valutafelt"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "Angi ikke-standard presisjon for et desimal-, valuta- eller prosentfelt"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
-msgstr ""
+msgstr "Angi bare en gang"
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Set size in MB"
-msgstr ""
+msgstr "Angi størrelse i MB"
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
@@ -23697,11 +23819,18 @@ msgid "Set the path to a whitelisted function that will return the data for the
"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
"}"
-msgstr ""
+msgstr "Angi banen til en hvitlistet funksjon som returnerer dataene for tallkortet i formatet:\n\n"
+"\n"
+"{\n"
+"\t\"verdi\": verdi,\n"
+"\t\"felttype\": \"Valuta\",\n"
+"\t\"rutealternativer\": {\"fra_dato\": \"2023-05-23\"},\n"
+"\t\"rute\": [\"spørringsrapport\", \"Tillatte dokumenter for bruker\"]\n"
+"}
"
#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr ""
+msgstr "Setter denne adressemalen som standard, da det ikke finnes noen annen standard"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
@@ -23709,7 +23838,7 @@ msgstr "Sette opp globale søkedokumenter."
#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr ""
+msgstr "Sette opp systemet ditt"
#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
#. Label of the settings_tab (Tab Break) field in DocType 'User'
@@ -23733,17 +23862,17 @@ msgstr "Innstillinger"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr ""
+msgstr "Innstillingsmeny"
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Settings for Contact Us Page"
-msgstr ""
+msgstr "Innstillinger for \"Kontakt oss\"-siden"
#. Description of a DocType
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Settings for the About Us Page"
-msgstr ""
+msgstr "Innstillinger for \"Om oss\"-siden"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -23753,36 +23882,36 @@ msgstr "Oppsett"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "Setup > Customize Form"
-msgstr ""
+msgstr "Oppsett > Tilpass skjema"
#: frappe/core/page/permission_manager/permission_manager_help.html:8
msgid "Setup > User"
-msgstr ""
+msgstr "Oppsett > Bruker"
#: frappe/core/page/permission_manager/permission_manager_help.html:33
msgid "Setup > User Permissions"
-msgstr ""
+msgstr "Oppsett > Brukertillatelser"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
-msgstr ""
+msgstr "Konfigurer automatisk e-post"
#. Label of the setup_complete (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Setup Complete"
-msgstr ""
+msgstr "Oppsettet er fullført"
#. Label of the setup_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr ""
+msgstr "Opprett løpenummerserie for transaksjoner"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "Oppsettet mislyktes"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -23800,15 +23929,15 @@ msgstr "Del"
#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr ""
+msgstr "Del med"
#: frappe/public/js/frappe/form/templates/set_sharing.html:49
msgid "Share this document with"
-msgstr ""
+msgstr "Del dette dokumentet med"
#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr ""
+msgstr "Del {0} med"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -23817,7 +23946,7 @@ msgstr "Delt"
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr ""
+msgstr "Delt med følgende brukere med lesetilgang:{0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -23826,7 +23955,7 @@ msgstr "Frakt"
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
-msgstr ""
+msgstr "Leveringsadresse"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -23835,14 +23964,14 @@ msgstr "Butikk"
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr ""
+msgstr "Korte tastaturmønstre er enkle å gjette"
#. Label of the shortcuts (Table) field in DocType 'Workspace'
#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr ""
+msgstr "Snarveier"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
@@ -23850,7 +23979,7 @@ msgstr ""
#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
#: frappe/www/update-password.html:120
msgid "Show"
-msgstr ""
+msgstr "Vis"
#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
#. 'System Settings'
@@ -23859,7 +23988,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Show Absolute Datetime in Timeline"
-msgstr ""
+msgstr "Vis absolutt datoperiode i tidslinjen"
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -23868,22 +23997,22 @@ msgstr "Vis absolutte verdier"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
msgid "Show All"
-msgstr ""
+msgstr "Vis alle"
#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Show Auth Server Metadata"
-msgstr ""
+msgstr "Vis metadata for autentiseringsserver"
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr ""
+msgstr "Vis kalender"
#. Label of the symbol_on_right (Check) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
-msgstr ""
+msgstr "Vis valutasymbol på høyre side"
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -23898,20 +24027,26 @@ msgstr "Vis oversiktspanel"
#. Label of the show_document (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr ""
+msgstr "Vis dokument"
#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
msgstr "Vis feil"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
-msgstr ""
+msgstr "Vis feltnavn (klikk for å kopiere til utklippstavlen)"
#. Label of the first_document (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
-msgstr ""
+msgstr "Vis første dokumentvisning"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
@@ -23933,23 +24068,23 @@ msgstr "Vis fullstendig skjema?"
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Full Number"
-msgstr ""
+msgstr "Vis fullt nummer"
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr ""
+msgstr "Vis tastatursnarveier"
#. Label of the show_labels (Check) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
-msgstr ""
+msgstr "Vis etiketter"
#. Label of the show_language_picker (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr ""
+msgstr "Vis språkvelger"
#. Label of the line_breaks (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -23958,21 +24093,21 @@ msgstr "Vis linjeskift etter seksjoner"
#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
-msgstr ""
+msgstr "Vis lenker"
#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Show Only Failed Logs"
-msgstr ""
+msgstr "Vis bare mislykkede logger"
#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Percentage Stats"
-msgstr ""
+msgstr "Vis prosentstatistikk"
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr ""
+msgstr "Vis rettigheter"
#: frappe/public/js/form_builder/form_builder.bundle.js:31
#: frappe/public/js/form_builder/form_builder.bundle.js:43
@@ -23986,18 +24121,18 @@ msgstr "Vis forhåndsvisning"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr ""
+msgstr "Vis forhåndsvisning i popup-vindu"
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr ""
+msgstr "Vis prosessliste"
#. Label of the show_protected_resource_metadata (Check) field in DocType
#. 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Show Protected Resource Metadata"
-msgstr ""
+msgstr "Vis metadata for beskyttede ressurser"
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
@@ -24008,7 +24143,7 @@ msgstr "Vis relaterte feil"
#: frappe/core/doctype/prepared_report/prepared_report.js:43
#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr ""
+msgstr "Vis rapport"
#: frappe/public/js/frappe/list/list_filter.js:15
#: frappe/public/js/frappe/list/list_filter.js:94
@@ -24023,23 +24158,23 @@ msgstr "Vis seksjonsoverskrifter"
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr ""
+msgstr "Vis sidefelt"
#. Label of the show_social_login_key_as_authorization_server (Check) field in
#. DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Show Social Login Key as Authorization Server"
-msgstr ""
+msgstr "Vis sosial påloggingsnøkkel som autorisasjonsserver"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
-msgstr ""
+msgstr "Vis stikkord"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr ""
+msgstr "Vis tittel"
#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
@@ -24051,11 +24186,11 @@ msgstr "Vis tittel i lenkefelt"
#: frappe/public/js/frappe/views/reports/report_view.js:1529
msgid "Show Totals"
-msgstr ""
+msgstr "Vis totalsummer"
#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
-msgstr ""
+msgstr "Vis omvisning"
#: frappe/core/doctype/data_import/data_import.js:448
msgid "Show Traceback"
@@ -24073,37 +24208,37 @@ msgstr "Vis advarsler"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr ""
+msgstr "Vis helger"
#. Label of the show_account_deletion_link (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr ""
+msgstr "Vis lenke for sletting av konto på siden Min konto"
#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr ""
+msgstr "Vis alle versjoner"
#: frappe/public/js/frappe/form/footer/form_timeline.js:69
msgid "Show all activity"
-msgstr ""
+msgstr "Vis all aktivitet"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr ""
+msgstr "Vis som cc"
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show attachments"
-msgstr ""
+msgstr "Vis vedlegg"
#. Label of the show_footer_on_login (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
-msgstr ""
+msgstr "Vis bunntekst ved pålogging"
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
@@ -24120,7 +24255,7 @@ msgstr "Vis i modulseksjonen"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Show in Resource Metadata"
-msgstr ""
+msgstr "Vis i ressursmetadata"
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -24130,22 +24265,22 @@ msgstr "Vis i filter"
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
-msgstr ""
+msgstr "Vis lenke til dokument"
#. Label of the show_list (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show list"
-msgstr ""
+msgstr "Vis liste"
#: frappe/public/js/frappe/form/layout.js:272
#: frappe/public/js/frappe/form/layout.js:290
msgid "Show more details"
-msgstr ""
+msgstr "Vis flere detaljer"
#. Label of the show_on_timeline (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Show on Timeline"
-msgstr ""
+msgstr "Vis på tidslinjen"
#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
#. Card'
@@ -24156,12 +24291,12 @@ msgstr "Vis prosentvis forskjell i henhold til dette tidsintervallet"
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show sidebar"
-msgstr ""
+msgstr "Vis sidefelt"
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr ""
+msgstr "Vis tittel i nettleservinduet som \"Prefiks - tittel\""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
@@ -24169,47 +24304,47 @@ msgstr "Vis {0} -liste"
#: frappe/public/js/frappe/views/reports/report_view.js:506
msgid "Showing only Numeric fields from Report"
-msgstr ""
+msgstr "Viser bare numeriske felt fra rapporten"
#: frappe/public/js/frappe/data_import/import_preview.js:153
msgid "Showing only first {0} rows out of {1}"
-msgstr ""
+msgstr "Viser bare de første {0} radene av {1}"
#. Label of the list_sidebar (Check) field in DocType 'User'
#. Label of the form_sidebar (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Sidebar"
-msgstr ""
+msgstr "Sidefelt"
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr ""
+msgstr "Elementer i sidefeltet"
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Innstillinger for sidefelt"
#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr ""
+msgstr "Sidefelt og kommentarer"
#. Label of the sign_up_and_confirmation_section (Section Break) field in
#. DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
-msgstr ""
+msgstr "Påmelding og bekreftelse"
#: frappe/core/doctype/user/user.py:1029
msgid "Sign Up is disabled"
-msgstr ""
+msgstr "Påmelding er deaktivert"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
-msgstr ""
+msgstr "Påmelding"
#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -24233,57 +24368,57 @@ msgstr "Signatur"
#: frappe/www/login.html:168
msgid "Signup Disabled"
-msgstr ""
+msgstr "Påmelding deaktivert"
#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
+msgstr "Påmelding er deaktivert for dette nettstedet."
+
+#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
+
+#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
msgstr ""
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Enkelt Python-uttrykk, eksempel: Status i (\"Lukket\", \"Avbrutt\")"
-
-#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Enkelt Python-uttrykk, eksempel: Status i (\"Lukket\", \"Avbrutt\")"
-
-#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Enkelt Python-uttrykk, eksempel: status == 'Åpen' og type == 'Feil'"
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr ""
+msgstr "Samtidige økter"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
-msgstr ""
+msgstr "Enkeltstående dokumenttyper (DocType) kan ikke tilpasses."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr ""
+msgstr "Enkelttyper har bare én post, ingen tilknyttede tabeller. Verdier lagres i tabSingles."
#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
-msgstr ""
+msgstr "Nettstedet kjører i skrivebeskyttet modus for vedlikehold eller oppdatering av nettstedet, og denne handlingen kan ikke utføres akkurat nå. Vennligst prøv igjen senere."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
-msgstr ""
+msgstr "Størrelse"
#. Label of the size (Float) field in DocType 'System Health Report Tables'
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "Size (MB)"
-msgstr ""
+msgstr "Størrelse (MB)"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
@@ -24307,32 +24442,32 @@ msgstr "Hopp over trinn"
#. Label of the skipped (Check) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
-msgstr ""
+msgstr "Hoppet over"
#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr ""
+msgstr "Hopper over dupliserte kolonner {0}"
#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr ""
+msgstr "Hopper over kolonne uten navn"
#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr ""
+msgstr "Hopper over kolonne {0}"
#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
-msgstr ""
+msgstr "Hopper over synkronisering av fixture for dokumenttype (DocType) {0} fra fil {1}"
#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
-msgstr ""
+msgstr "Hopper over {0} av {1}, {2}"
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr ""
+msgstr "Skype"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -24342,7 +24477,7 @@ msgstr "Slack"
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr ""
+msgstr "Slack-kanal"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
@@ -24353,7 +24488,7 @@ msgstr "Slack Webhook-feil"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr ""
+msgstr "Slack Webhook-URL"
#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
@@ -24364,17 +24499,17 @@ msgstr "Lysbildefremvisning"
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr ""
+msgstr "Elementer i lysbildefremvisningen"
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr ""
+msgstr "Navn på lysbildefremvisning"
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow like display for the website"
-msgstr ""
+msgstr "Lysbildeserie-lignende visning for nettstedet"
#. Label of the slug (Data) field in DocType 'UTM Campaign'
#. Label of the slug (Data) field in DocType 'UTM Medium'
@@ -24383,7 +24518,7 @@ msgstr ""
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
msgid "Slug"
-msgstr ""
+msgstr "Slug"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24402,13 +24537,13 @@ msgstr "Liten tekst"
#. 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr ""
+msgstr "Minste valutaenhet"
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr ""
+msgstr "Minste sirkulerende enhet (mynt). F.eks. 1 cent for USD, og den må angis som 0,01"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
@@ -24417,7 +24552,7 @@ msgstr "Utdrag og flere variabler: {0}"
#. Name of a DocType
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
-msgstr ""
+msgstr "Innstillinger for sosiale lenker"
#. Label of the social_link_type (Select) field in DocType 'Social Link
#. Settings'
@@ -24430,7 +24565,7 @@ msgstr "Type sosial lenke"
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
-msgstr ""
+msgstr "Sosial innloggingsnøkkel"
#. Label of the social_login_provider (Select) field in DocType 'Social Login
#. Key'
@@ -24441,7 +24576,7 @@ msgstr "Leverandør av sosial innlogging"
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr ""
+msgstr "Sosial innlogging"
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
@@ -24463,12 +24598,12 @@ msgstr "Soft-Bounced"
#. Label of the software_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Software ID"
-msgstr ""
+msgstr "Programvare ID"
#. Label of the software_version (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Software Version"
-msgstr ""
+msgstr "Programvareversjon"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
@@ -24477,15 +24612,15 @@ msgstr "Noen kolonner kan bli avkuttet når du skriver ut til PDF. Prøv å hold
#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\""
-msgstr ""
+msgstr "Noen postkasser krever et annet navn på sendt-mappen, f.eks. \"INBOX.Sent\""
#: frappe/public/js/frappe/desk.js:20
msgid "Some of the features might not work in your browser. Please update your browser to the latest version."
-msgstr ""
+msgstr "Noen av funksjonene fungerer kanskje ikke i nettleseren din. Oppdater nettleseren din til den nyeste versjonen."
#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
-msgstr ""
+msgstr "Noe gikk galt"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
@@ -24493,23 +24628,23 @@ msgstr "Noe gikk galt under genereringen av token. Klikk på {0} for å generere
#: frappe/templates/includes/login/login.js:293
msgid "Something went wrong."
-msgstr ""
+msgstr "Noe gikk galt."
#: frappe/public/js/frappe/views/pageview.js:117
msgid "Sorry! I could not find what you were looking for."
-msgstr ""
+msgstr "Beklager! Fant ikke det du lette etter."
#: frappe/public/js/frappe/views/pageview.js:125
msgid "Sorry! You are not permitted to view this page."
-msgstr ""
+msgstr "Beklager! Ditt rettighetsnivå hindrer visning av denne siden."
#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
-msgstr ""
+msgstr "Sorter stigende"
#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
-msgstr ""
+msgstr "Sorter synkende"
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -24523,7 +24658,7 @@ msgstr "Sorteringsfelt"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
-msgstr ""
+msgstr "Sorteringsalternativer"
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -24532,20 +24667,20 @@ msgstr "Sorteringsrekkefølge"
#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Sort field {0} must be a valid fieldname"
-msgstr ""
+msgstr "Sorteringsfelt {0} må være et gyldig feltnavn"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
msgid "Source"
-msgstr ""
+msgstr "Kilde"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Source Code"
-msgstr ""
+msgstr "Kildekode"
#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
@@ -24556,7 +24691,7 @@ msgstr "Kildenavn"
#: frappe/core/doctype/translation/translation.json
#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr ""
+msgstr "Kildetekst"
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
@@ -24581,30 +24716,30 @@ msgstr "Utløser handlinger i en bakgrunnsjobb"
#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr ""
+msgstr "Spesialtegn er ikke tillatt"
#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr ""
+msgstr "Spesialtegn unntatt '-', '#', '.', '/', '{{' and '}}' er ikke tillatt i nummerserier {0}"
#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Specify a custom timeout, default timeout is 1500 seconds"
-msgstr ""
+msgstr "Angi en egendefinert tidsavbryter, standard tidsavbrudd er 1500 sekunder"
#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "Angi hvilke domener eller opprinnelser som har tillatelse til å bygge inn dette skjemaet. Angi ett domene per linje (f.eks. https://example.com). Hvis ingen domener er angitt, kan skjemaet bare legges inn på samme opprinnelsessted."
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
-msgstr ""
+msgstr "Velkomstbilde"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Nr."
@@ -24618,7 +24753,7 @@ msgstr "Nr."
#: frappe/core/doctype/recorder/recorder.js:82
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
-msgstr ""
+msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
@@ -24636,13 +24771,13 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
-msgstr ""
+msgstr "Standard dokumenttype (DocType) kan ikke slettes."
#: frappe/core/doctype/doctype/doctype.py:229
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr "Standard DocType kan ikke ha standard utskriftsformat, bruk Tilpass skjema"
+msgstr "Standard dokumenttyper (DocType) kan ikke ha standard utskriftsformat, bruk Tilpass skjema"
#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
@@ -24650,9 +24785,9 @@ msgstr "Standard ikke satt"
#: frappe/core/page/permission_manager/permission_manager.js:132
msgid "Standard Permissions"
-msgstr ""
+msgstr "Standardtillatelser"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Standard utskriftsformat kan ikke oppdateres"
@@ -24662,37 +24797,37 @@ msgstr "Standard utskriftsstil kan ikke endres. Vennligst dupliser for å redige
#: frappe/desk/reportview.py:355
msgid "Standard Reports cannot be deleted"
-msgstr ""
+msgstr "Standardrapporter kan ikke slettes"
#: frappe/desk/reportview.py:326
msgid "Standard Reports cannot be edited"
-msgstr ""
+msgstr "Standardrapporter kan ikke redigeres"
#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr ""
+msgstr "Standard sidefeltmeny"
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
-msgstr ""
+msgstr "Standard webskjemaer kan ikke endres, dupliser webskjemaet i stedet."
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Standard rich text editor with controls"
-msgstr ""
+msgstr "Standard riktekst-redigerer med formateringsverktøy"
#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr ""
+msgstr "Standardroller kan ikke deaktiveres"
#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr ""
+msgstr "Standardroller kan ikke gis nye navn"
#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
-msgstr ""
+msgstr "Standard brukertype {0} kan ikke slettes."
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
@@ -24710,7 +24845,7 @@ msgstr "Start"
#: frappe/public/js/frappe/utils/common.js:409
#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
-msgstr ""
+msgstr "Startdato"
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
@@ -24719,16 +24854,16 @@ msgstr "Felt for startdato"
#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
-msgstr ""
+msgstr "Start import"
#: frappe/core/doctype/recorder/recorder_list.js:201
msgid "Start Recording"
-msgstr ""
+msgstr "Start opptak"
#. Label of the birth_date (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Start Time"
-msgstr ""
+msgstr "Starttid"
#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
@@ -24736,7 +24871,7 @@ msgstr "Start en ny diskusjon …"
#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
-msgstr ""
+msgstr "Begynn å legge inn data nedenfor denne linjen"
#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
@@ -24755,11 +24890,11 @@ msgstr "Startet"
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
-msgstr ""
+msgstr "Startet kl."
#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
-msgstr ""
+msgstr "Starter Frappe..."
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -24770,13 +24905,14 @@ msgstr "Begynner på"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr ""
+msgstr "Tilstand"
#: frappe/public/js/workflow_builder/components/Properties.vue:26
msgid "State Properties"
@@ -24787,7 +24923,7 @@ msgstr "Egenskaper for tilstand"
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr ""
+msgstr "Delstat/provins"
#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
#. Label of the states (Table) field in DocType 'Customize Form'
@@ -24796,17 +24932,17 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr ""
+msgstr "Tilstander"
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr ""
+msgstr "Statiske parametere"
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
-msgstr ""
+msgstr "Statistikk"
#. Label of the stats_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24877,7 +25013,7 @@ msgstr "Status"
#: frappe/www/update-password.html:188
msgid "Status Updated"
-msgstr ""
+msgstr "Status oppdatert"
#: frappe/email/doctype/email_queue/email_queue.js:37
msgid "Status Updated. The email will be picked up in the next scheduled run."
@@ -24885,7 +25021,7 @@ msgstr "Status oppdatert. E-posten vil bli hentet i neste planlagte kjøring."
#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr ""
+msgstr "Status: {0}"
#. Label of the step (Link) field in DocType 'Onboarding Step Map'
#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
@@ -24901,58 +25037,58 @@ msgstr "Trinn"
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr ""
+msgstr "Fremgangsmåte for å bekrefte påloggingen din"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
-msgstr ""
+msgstr "Klebrig"
#: frappe/core/doctype/recorder/recorder_list.js:87
msgid "Stop"
-msgstr ""
+msgstr "Stopp"
#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
-msgstr ""
+msgstr "Stoppet"
#. Label of the db_storage_usage (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Storage Usage (MB)"
-msgstr ""
+msgstr "Bruk av lagringsplass (MB)"
#. Label of the top_db_tables (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Storage Usage By Table"
-msgstr ""
+msgstr "Bruk av lagringsplass etter tabell"
#. Label of the store_attached_pdf_document (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Store Attached PDF Document"
-msgstr ""
+msgstr "Lagre vedlagt PDF-dokument"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "Lagre API-hemmeligheten på en sikker måte. Den vil ikke bli vist igjen."
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr ""
+msgstr "Lagrer JSON for sist kjente versjon av ulike installerte apper. Den brukes til å vise utgivelsesmerknader."
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
-msgstr ""
+msgstr "Lagrer tidspunktet da den siste tilbakestillingen av passordnøkkelen ble generert."
#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
-msgstr ""
+msgstr "Rette rader med taster er lette å gjette"
#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
#. DocType 'System Settings'
@@ -24962,7 +25098,7 @@ msgstr "Fjern EXIF-tagger fra opplastede bilder"
#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
-msgstr ""
+msgstr "Sterk"
#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
#. Label of the style (Select) field in DocType 'Workflow State'
@@ -24984,12 +25120,12 @@ msgstr "Stilen representerer knappefargen: Suksess - Grønn, Fare - Rød, Invers
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr ""
+msgstr "Stilark"
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr ""
+msgstr "Undervaluta. For eksempel \"Cent\""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
@@ -25000,7 +25136,7 @@ msgstr "Underdomene levert av erpnext.com"
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr ""
+msgstr "Underdomenet"
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -25033,20 +25169,21 @@ msgstr "Emne"
msgid "Subject Field"
msgstr "Emnefelt"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr ""
+msgstr "Emnefeltets type bør være Data, Tekst, Lang tekst, Liten tekst, Tekstredigerer"
#. Name of a DocType
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
-msgstr ""
+msgstr "Kø for innsending"
#. Label of the submit (Check) field in DocType 'Custom DocPerm'
#. Label of the submit (Check) field in DocType 'DocPerm'
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25055,10 +25192,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Registrer"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Registrer"
@@ -25068,7 +25206,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Registrer"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Registrer"
@@ -25116,7 +25254,7 @@ msgstr "Registrer dette dokumentet for å fullføre dette trinnet."
msgid "Submit this document to confirm"
msgstr "Registrer dette dokumentet for å bekrefte"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Registrer {0} dokumenter?"
@@ -25166,7 +25304,7 @@ msgstr "Undertittel"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25181,7 +25319,7 @@ msgstr "Suksess"
#. Name of a DocType
#: frappe/core/doctype/success_action/success_action.json
msgid "Success Action"
-msgstr ""
+msgstr "Handling etter suksess"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25191,48 +25329,48 @@ msgstr "Suksess-melding"
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
-msgstr ""
+msgstr "URI etter suksess"
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr ""
+msgstr "URL etter suksess"
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success message"
-msgstr ""
+msgstr "Suksess-melding"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "Suksesstittel"
#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
-msgstr ""
+msgstr "Antall vellykkede jobber"
#: frappe/model/workflow.py:363
msgid "Successful Transactions"
-msgstr ""
+msgstr "Vellykkede transaksjoner"
#: frappe/model/rename_doc.py:698
msgid "Successful: {0} to {1}"
-msgstr ""
+msgstr "Vellykket: {0} til {1}"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr ""
+msgstr "Vellykket oppdatert"
#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
-msgstr ""
+msgstr "Vellykket import av {0}"
#: frappe/core/doctype/data_import/data_import.js:144
msgid "Successfully imported {0} out of {1} records."
-msgstr ""
+msgstr "Vellykket import av {0} ut av {1}-oppføringer."
#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
@@ -25240,28 +25378,28 @@ msgstr "Vellykket tilbakestilling av onboarding-status for alle brukere."
#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr ""
+msgstr "Vellykket oppdatering av oversettelser"
#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
-msgstr ""
+msgstr "Vellykket oppdatering av {0}"
#: frappe/core/doctype/data_import/data_import.js:149
msgid "Successfully updated {0} out of {1} records."
-msgstr ""
+msgstr "Vellykket oppdatering av {0} av {1}}-oppføringer."
#: frappe/core/doctype/recorder/recorder.js:15
msgid "Suggest Optimizations"
-msgstr ""
+msgstr "Foreslå optimaliseringer"
#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Suggested Indexes"
-msgstr ""
+msgstr "Foreslåtte indekser"
#: frappe/core/doctype/user/user.py:733
msgid "Suggested Username: {0}"
-msgstr ""
+msgstr "Foreslått brukernavn: {0}"
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
@@ -25274,11 +25412,11 @@ msgstr "Sum"
#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
-msgstr ""
+msgstr "Summen av {0}"
#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr ""
+msgstr "Sammendrag"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -25298,48 +25436,48 @@ msgstr "Søndag"
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr ""
+msgstr "Sett sending på pause"
#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
-msgstr ""
+msgstr "Bytt kamera"
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr ""
+msgstr "Bytt tema"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr ""
+msgstr "Bytt til skrivebord"
#: frappe/public/js/frappe/list/list_sidebar.js:319
msgid "Switch to Frappe CRM for smarter sales"
-msgstr ""
+msgstr "Bytt til Frappe CRM for smartere salg"
#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
-msgstr ""
+msgstr "Bytter Kamera"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr ""
+msgstr "Symbol"
#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
#. Label of the sync (Section Break) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr ""
+msgstr "Synkroniser"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr ""
+msgstr "Synkroniser kalender"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr ""
+msgstr "Synkroniser kontakter"
#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
@@ -25348,11 +25486,11 @@ msgstr "Synkroniser hendelser fra Google som offentlige"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr ""
+msgstr "Synkroniser ved migrering"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
-msgstr ""
+msgstr "Synkroniseringstokenet var ugyldig og er tilbakestilt. Prøv å synkronisere på nytt."
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -25362,7 +25500,7 @@ msgstr "Synkroniser med Google Kalender"
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr ""
+msgstr "Synkroniser med Google Kontakter"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
@@ -25375,13 +25513,13 @@ msgstr "Synkroniserte felt"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr ""
+msgstr "Synkronisering"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr ""
+msgstr "Synkronisering {0} av {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Syntaksfeil"
@@ -25394,7 +25532,7 @@ msgstr "System"
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr ""
+msgstr "Systemkonsoll"
#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
@@ -25404,12 +25542,12 @@ msgstr "Systemgenererte felt kan ikke gis nytt navn"
#. Type: Route
#: frappe/hooks.py
msgid "System Health"
-msgstr ""
+msgstr "Systemhelse"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "System Health Report"
-msgstr ""
+msgstr "Rapport om systemhelse"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
@@ -25419,27 +25557,27 @@ msgstr "Feil i systemhelserapporten"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "System Health Report Failing Jobs"
-msgstr ""
+msgstr "Systemhelserapport – mislykkede jobber"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "System Health Report Queue"
-msgstr ""
+msgstr "Kø for systemhelserapporter"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "System Health Report Tables"
-msgstr ""
+msgstr "Tabeller for systemhelserapport"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "System Health Report Workers"
-msgstr ""
+msgstr "Systemhelserapport – arbeidsprosesser"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "System Logs"
-msgstr ""
+msgstr "Systemlogger"
#. Name of a role
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -25603,12 +25741,12 @@ msgstr "Systemvarsel"
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr ""
+msgstr "Systemside"
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr ""
+msgstr "Systeminnstillinger"
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
@@ -25619,12 +25757,12 @@ msgstr "Systemadministratorer har tillatelse som standard"
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
-msgstr ""
+msgstr "T"
#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "TOS URI"
-msgstr ""
+msgstr "TOS-URI"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25637,7 +25775,7 @@ msgstr "Tabulatorskift"
#: frappe/public/js/form_builder/components/Tabs.vue:135
msgid "Tab Label"
-msgstr ""
+msgstr "Faneetikett"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
@@ -25663,21 +25801,21 @@ msgstr "Tabell-oppdeling"
#: frappe/core/doctype/version/version_view.html:73
msgid "Table Field"
-msgstr ""
+msgstr "Tabellfelt"
#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
-msgstr ""
+msgstr "Feltnavn for tabell"
#: frappe/core/doctype/doctype/doctype.py:1204
msgid "Table Fieldname Missing"
-msgstr ""
+msgstr "Feltnavn for tabell mangler"
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr ""
+msgstr "Tabell-HTML"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25690,15 +25828,15 @@ msgstr "Flervalg av tabeller"
#: frappe/custom/doctype/customize_form/customize_form.js:229
msgid "Table Trimmed"
-msgstr ""
+msgstr "Tabellen er forkortet"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
-msgstr ""
+msgstr "Tabellen er oppdatert"
#: frappe/model/document.py:1578
msgid "Table {0} cannot be empty"
-msgstr ""
+msgstr "Tabell {0} kan ikke være tom"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -25708,12 +25846,12 @@ msgstr "Tabloid"
#. Name of a DocType
#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
-msgstr ""
+msgstr "Stikkord"
#. Name of a DocType
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
-msgstr ""
+msgstr "Lenke for stikkord"
#: frappe/model/meta.py:59
#: frappe/public/js/frappe/form/templates/form_sidebar.html:81
@@ -25725,18 +25863,18 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:133
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
msgid "Tags"
-msgstr ""
+msgstr "Stikkord"
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
-msgstr ""
+msgstr "Ta bilde"
#. Label of the target (Data) field in DocType 'Portal Menu Item'
#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr ""
+msgstr "Mål"
#. Label of the task (Select) field in DocType 'Workflow Transition Task'
#: frappe/desk/doctype/todo/todo_calendar.js:19
@@ -25748,32 +25886,32 @@ msgstr "Oppgave"
#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks'
#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json
msgid "Tasks"
-msgstr ""
+msgstr "Oppgaver"
#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
#. Label of the team_members (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
#: frappe/www/about.html:45
msgid "Team Members"
-msgstr ""
+msgstr "Lagmedlemmer"
#. Label of the team_members_heading (Data) field in DocType 'About Us
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr ""
+msgstr "Overskrift for lagmedlemmer"
#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
-msgstr ""
+msgstr "Undertittel for lagmedlemmer"
#. Label of the telemetry_section (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
-msgstr ""
+msgstr "Telemetri"
#. Label of the template (Link) field in DocType 'Auto Repeat'
#. Label of the template (Code) field in DocType 'Address Template'
@@ -25800,7 +25938,7 @@ msgstr "Malfil"
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr ""
+msgstr "Alternativer for maler"
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -25809,30 +25947,30 @@ msgstr "Advarsler om maler"
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
-msgstr ""
+msgstr "Maler"
#: frappe/core/doctype/user/user.py:1042
msgid "Temporarily Disabled"
-msgstr ""
+msgstr "Midlertidig deaktivert"
#: frappe/core/doctype/translation/test_translation.py:47
#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
-msgstr ""
+msgstr "Testdata"
#. Label of the test_job_id (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Test Job ID"
-msgstr ""
+msgstr "Testjobb-ID"
#: frappe/core/doctype/translation/test_translation.py:49
#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
-msgstr ""
+msgstr "Test på spansk"
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr ""
+msgstr "Test_Folder"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25855,12 +25993,12 @@ msgstr "Tekstjustering"
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr ""
+msgstr "Tekstfarge"
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr ""
+msgstr "Tekstinnhold"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25875,7 +26013,7 @@ msgstr "Tekstbehandler"
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr ""
+msgstr "Tusen takk"
#: frappe/www/contact.py:39
msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
@@ -25887,19 +26025,19 @@ msgstr "Takk for at du kontaktet oss. Vi kontakter deg så snart som mulig.\n\n\
#: frappe/website/doctype/web_form/templates/web_form.html:147
msgid "Thank you for spending your valuable time to fill this form"
-msgstr ""
+msgstr "Takk for at du bruker av din verdifulle tid på å fylle ut dette skjemaet"
#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr ""
+msgstr "Takk for e-posten"
#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr "Takk for din tilbakemelding!"
+msgstr "Takk for tilbakemeldingen!"
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
-msgstr ""
+msgstr "Takk for meldingen"
#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
@@ -25907,11 +26045,11 @@ msgstr "Takk"
#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
-msgstr ""
+msgstr "Automatisk gjentakelse for dette dokumentet er deaktivert."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
-msgstr ""
+msgstr "CSV-formatet skiller mellom store og små bokstaver"
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -25924,11 +26062,11 @@ msgstr "Klient-ID-en som ble hentet fra Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
-msgstr ""
+msgstr "Prosjektnummeret hentet fra Google Cloud Console under \n"
+"\"IAM & Admin\" > \"Innstillinger\"\n"
+""
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
-msgstr ""
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "Rapporten du ba om, er generert.
Klikk her for å laste ned:
{0}
Denne lenken utløper om {1} timer."
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
-msgstr ""
+msgstr "Lenken for tilbakestilling av passord er utløpt"
#: frappe/core/doctype/user/user.py:1002
msgid "The reset password link has either been used before or is invalid"
-msgstr ""
+msgstr "Lenken for tilbakestilling av passord er enten brukt før eller ugyldig"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr ""
+msgstr "Ressursen du leter etter er ikke tilgjengelig"
#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
-msgstr ""
+msgstr "Rollen {0} bør være en egendefinert rolle."
#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
msgstr "Det valgte dokumentet {0} er ikke et {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Systemet oppdateres. Vennligst oppdater på nytt om noen få øyeblikk."
@@ -26115,20 +26255,20 @@ msgstr "Systemet tilbyr mange forhåndsdefinerte roller. Du kan legge til nye ro
#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
-msgstr ""
+msgstr "Grensen for totalt antall bruker-dokumenttyper (DocType) er overskredet."
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
-msgstr ""
+msgstr "Verdien du limte inn var {0} tegn lang. Maks tillatte tegn er {1}."
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr ""
+msgstr "Webhook-en vil bli utløst hvis dette uttrykket er sant"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183
msgid "The {0} is already on auto repeat {1}"
-msgstr ""
+msgstr "{0} er allerede på automatisk repetisjon {1}"
#. Label of the section_break_6 (Section Break) field in DocType 'Website
#. Settings'
@@ -26137,26 +26277,26 @@ msgstr ""
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr ""
+msgstr "Tema"
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
-msgstr ""
+msgstr "Tema endret"
#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr ""
+msgstr "Konfigurasjon av tema"
#. Label of the theme_url (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr ""
+msgstr "Tema-URL"
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
-msgstr ""
+msgstr "Det finnes dokumenter som har arbeidsflytstatus som ikke finnes i denne arbeidsflyten. Det anbefales at du legger til disse tilstandene i arbeidsflyten og endrer tilstandene før du fjerner dem."
#: frappe/public/js/frappe/ui/notifications/notifications.js:442
msgid "There are no upcoming events for you."
@@ -26164,20 +26304,20 @@ msgstr "Det er ingen kommende hendelser for deg."
#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
-msgstr ""
+msgstr "Det er ingen {0} for dette {1}. Hvorfor ikke starte en!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "Det finnes allerede {0} med de samme filtrene i køen:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
-msgstr ""
+msgstr "Det kan bare være 9 sideskiftfelt i et webskjema"
#: frappe/core/doctype/doctype/doctype.py:1444
msgid "There can be only one Fold in a form"
-msgstr ""
+msgstr "Det kan bare være én fold i et skjema"
#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
@@ -26185,33 +26325,33 @@ msgstr "Det er en feil i adressemalen din {0}"
#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
-msgstr ""
+msgstr "Det er ingen data å eksportere"
#: frappe/model/workflow.py:170
msgid "There is no task called \"{}\""
-msgstr ""
+msgstr "Det finnes ingen oppgave som heter \"{}\""
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "There is nothing new to show you right now."
msgstr "Det er ikke noe nytt å vise deg akkurat nå."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr ""
+msgstr "Det er et problem med fil-URL-en: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Det finnes allerede {0} med de samme filtrene i køen:"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "There must be atleast one permission rule."
-msgstr ""
+msgstr "Det må være minst én tillatelsesregel."
#: frappe/www/error.py:17
msgid "There was an error building this page"
msgstr "Det oppsto en feil under oppbyggingen av denne siden"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Det oppsto en feil under lagring av filtre"
@@ -26235,13 +26375,13 @@ msgstr "Det oppsto noen feil under angivelse av navnet. Kontakt administratoren.
#. 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "These announcements will appear inside a dismissible alert below the Navbar."
-msgstr ""
+msgstr "Disse kunngjøringene vises i et avvisningsbart varsel under Navbar."
#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
-msgstr ""
+msgstr "Disse feltene brukes til å gi metadata om ressursserveren til klienter som spør etter endepunktet for \"velkjent beskyttet ressurs\"."
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
@@ -26252,30 +26392,34 @@ msgstr "Disse innstillingene er påkrevde hvis «Tilpasset» LDAP-katalog brukes
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr ""
+msgstr "Disse verdiene vil bli automatisk oppdatert i transaksjoner, og de vil også være nyttige for å begrense tillatelser for denne brukeren på transaksjoner som inneholder disse verdiene."
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr ""
+msgstr "Tredjeparts-apper"
#. Label of the third_party_authentication (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr ""
+msgstr "Autentisering via tredjepart"
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr ""
+msgstr "Denne valutaen er deaktivert. Aktiver for bruk i transaksjoner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
-msgstr ""
+msgstr "Denne Kanban-tavlen forblir privat"
#: frappe/public/js/frappe/ui/filters/filter.js:666
msgid "This Month"
msgstr "Denne måneden"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "Denne PDF-filen kan ikke lastes opp fordi den inneholder usikkert innhold."
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Dette kvartalet"
@@ -26290,21 +26434,26 @@ msgstr "I år"
#: frappe/custom/doctype/customize_form/customize_form.js:220
msgid "This action is irreversible. Do you wish to continue?"
-msgstr ""
+msgstr "Denne handlingen kan ikke angres. Vil du fortsette?"
#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
-msgstr ""
+msgstr "Denne handlingen er kun tillatt for {}"
#: frappe/public/js/frappe/form/toolbar.js:117
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
-msgstr ""
+msgstr "Dette kan ikke angres."
+
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "Dette kortet er som standard kun synlig for Administrator og systemadministratorer. Angi en dokumenttype (DocType) for å dele med brukere som har lesetilgang."
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr ""
+msgstr "Dette kortet vil være tilgjengelig for alle brukere hvis dette er angitt"
#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -26317,15 +26466,15 @@ msgstr "Denne dokumenttypen har ingen foreldreløse felt å trimme"
#: frappe/core/doctype/doctype/doctype.py:1055
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
-msgstr ""
+msgstr "Denne dokumenttypen (DocType) har utestående migreringer. Kjør \"bench migrate\" før du endrer dokumenttype, for å unngå at endringer går tapt."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
-msgstr ""
+msgstr "Dette dokumentet kan ikke slettes akkurat nå, siden det redigeres av en annen bruker. Vennligst prøv igjen etter en stund."
#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr ""
+msgstr "Dette dokumentet er endret etter at e-posten ble sendt."
#: frappe/public/js/frappe/form/form.js:1305
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
@@ -26333,15 +26482,15 @@ msgstr "Dette dokumentet har ulagrede endringer som kanskje ikke vises i den end
#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr ""
+msgstr "Dette dokumentet er allerede endret, og du kan ikke endre det igjen"
#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
-msgstr ""
+msgstr "Dette dokumentet er for øyeblikket låst og står i kø for kjøring. Vennligst prøv igjen etter en stund."
#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr ""
+msgstr "Denne e-posten er automatisk generert"
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
msgid "This feature can not be used as dependencies are missing.\n"
@@ -26359,11 +26508,14 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"myfield\n"
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
-msgstr ""
+msgstr "Dette feltet vises bare hvis feltnavnet som er definert her, har verdi ELLER reglene er sanne (eksempler):\n"
+"myfield\n"
+"eval:doc.myfield=='My Value'\n"
+"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
-msgstr ""
+msgstr "Denne filen er knyttet til et beskyttet dokument og kan ikke slettes."
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
@@ -26371,72 +26523,72 @@ msgstr "Denne filen er offentlig og kan nås av alle, selv uten å logge inn. Me
#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
-msgstr ""
+msgstr "Denne filen er offentlig. Den er tilgjengelig uten autentisering."
#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr ""
+msgstr "Dette skjemaet er endret etter at du har lastet det inn"
#: frappe/public/js/frappe/form/form.js:2259
msgid "This form is not editable due to a Workflow."
-msgstr ""
+msgstr "Dette skjemaet kan ikke redigeres på grunn av en arbeidsflyt."
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr ""
+msgstr "Dette formatet brukes hvis det ikke finnes et landsspesifikt format"
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
-msgstr ""
+msgstr "Denne geolokaliseringsleverandøren støttes ikke ennå."
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr ""
+msgstr "Dette går over lysbildefremvisningen."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Dette er en bakgrunnsrapport. Vennligst angi de riktige filtrene og generer deretter en ny."
#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr ""
+msgstr "Dette er et av de 10 vanligste passordene."
#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr ""
+msgstr "Dette er et av de 100 vanligste passordene."
#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr ""
+msgstr "Dette er et veldig vanlig passord."
#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
-msgstr "Dette er en virtuell dokumenttype, og dataene slettes med jevne mellomrom."
+msgstr "Dette er en virtuell dokumenttype (DocType), og dataene slettes med jevne mellomrom."
#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr ""
+msgstr "Dette er et automatisk generert svar"
#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr ""
+msgstr "Dette ligner på et vanlig brukt passord."
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr ""
+msgstr "Dette er nummeret på den sist opprettede transaksjonen med dette prefikset"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr ""
+msgstr "Denne lenken er allerede aktivert for verifisering."
#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr ""
+msgstr "Denne lenken er ugyldig eller utløpt. Kontroller at du har limt inn riktig."
#: frappe/printing/page/print/print.js:431
msgid "This may get printed on multiple pages"
@@ -26444,31 +26596,31 @@ msgstr "Dette kan bli skrevet ut på flere sider"
#: frappe/utils/goal.py:109
msgid "This month"
-msgstr ""
+msgstr "Denne måneden"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
-msgstr ""
+msgstr "Denne rapporten inneholder {0} rader og er for stor til å vises i nettleseren. Du kan bruke {1} i stedet."
#: frappe/templates/emails/auto_email_report.html:57
msgid "This report was generated on {0}"
-msgstr ""
+msgstr "Denne rapporten ble generert den {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
-msgstr ""
+msgstr "Denne rapporten ble generert {0}."
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr ""
+msgstr "Denne forespørselen er ennå ikke godkjent av brukeren."
#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
-msgstr ""
+msgstr "Dette nettstedet er i skrivebeskyttet modus, og full funksjonalitet vil snart bli gjenopprettet."
#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
-msgstr ""
+msgstr "Dette nettstedet kjører i utviklermodus. Alle endringer som gjøres her, vil bli oppdatert i koden."
#: frappe/www/attribution.html:11
msgid "This software is built on top of many open source packages."
@@ -26476,21 +26628,21 @@ msgstr "Denne programvaren er bygget oppå mange pakker med åpen kildekode."
#: frappe/website/doctype/web_page/web_page.js:71
msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr ""
+msgstr "Denne tittelen vil bli brukt som tittel på nettsiden og i meta-tagger"
#: frappe/public/js/frappe/form/controls/base_input.js:129
msgid "This value is fetched from {0}'s {1} field"
-msgstr ""
+msgstr "Denne verdien hentes fra {0}'s {1} -felt"
#. Description of the 'Max Report Rows' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "This value specifies the max number of rows that can be rendered in report view."
-msgstr ""
+msgstr "Denne verdien angir det maksimale antallet rader som kan gjengis i rapportvisningen."
#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr ""
+msgstr "Denne genereres automatisk når du publiserer siden, men du kan også legge inn en rute selv hvis du ønsker det"
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
@@ -26506,28 +26658,28 @@ msgstr "Dette vil bli vist til brukeren i en dialogboks etter at rapporten er å
#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr ""
+msgstr "Dette vil logge ut {0} fra alle andre enheter"
#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr ""
+msgstr "Dette vil fjerne dataene dine permanent."
#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
-msgstr ""
+msgstr "Dette vil tilbakestille denne omvisningen og vise den til alle brukere. Er du sikker?"
#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
-msgstr ""
+msgstr "Dette vil avslutte jobben umiddelbart og kan være risikabelt, er du sikker?"
#: frappe/core/doctype/user/user.py:1255
msgid "Throttled"
-msgstr ""
+msgstr "Begrenset"
#. Label of the thumbnail_url (Small Text) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr ""
+msgstr "Miniatyrbilde-URL"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -26587,18 +26739,20 @@ msgstr "Tidsserie basert på"
#. Label of the time_taken (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
-msgstr ""
+msgstr "Tid brukt"
#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Time Window (Seconds)"
-msgstr ""
+msgstr "Tidsvindu (sekunder)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26607,23 +26761,23 @@ msgstr "Tidssone"
#. Label of the time_zones (Text) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr ""
+msgstr "Tidssoner"
#. Label of the time_format (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr ""
+msgstr "Tidsformat"
#. Label of the time_in_queries (Float) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Time in Queries"
-msgstr ""
+msgstr "Tid brukt på spørringer"
#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr ""
+msgstr "Tid i sekunder for å lagre QR-kodebildet på serveren. Min:240"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
@@ -26631,7 +26785,7 @@ msgstr "Feltet Tidsserier basert på er påkrevd for å lage et oversiktspanel-d
#: frappe/public/js/frappe/form/controls/time.js:124
msgid "Time {0} must be in format: {1}"
-msgstr ""
+msgstr "Tid {0} må være i formatet: {1}"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -26640,52 +26794,52 @@ msgstr "Utgått på tid"
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
-msgstr ""
+msgstr "Tidløs natt"
#. Label of the timeline (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Timeline"
-msgstr ""
+msgstr "Tidslinje"
#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr ""
+msgstr "Tidslinje-DocType"
#. Label of the timeline_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr ""
+msgstr "Felt for tidslinje"
#. Label of the timeline_links_sections (Section Break) field in DocType
#. 'Communication'
#. Label of the timeline_links (Table) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr ""
+msgstr "Lenker til tidslinje"
#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
-msgstr ""
+msgstr "Navn på tidslinje"
#: frappe/core/doctype/doctype/doctype.py:1539
msgid "Timeline field must be a Link or Dynamic Link"
-msgstr ""
+msgstr "Feltet for tidslinje må være en lenke eller dynamisk lenke"
#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Timeline field must be a valid fieldname"
-msgstr ""
+msgstr "Feltet for tidslinje må være et gyldig feltnavn"
#. Label of the timeout (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
-msgstr ""
+msgstr "Tidsavbrudd"
#. Label of the timeout (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Timeout (In Seconds)"
-msgstr ""
+msgstr "Tidsavbrudd (i sekunder)"
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
@@ -26701,7 +26855,7 @@ msgstr "Tidsrom"
#. Label of the timestamp (Datetime) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Timestamp"
-msgstr ""
+msgstr "Tidsstempel"
#: frappe/desk/doctype/system_console/system_console.js:41
msgid "Tip: Try the new dropdown console using"
@@ -26758,32 +26912,32 @@ msgstr "Tittel"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr ""
+msgstr "Tittelfelt"
#. Label of the title_prefix (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr ""
+msgstr "Prefiks for tittel"
#: frappe/core/doctype/doctype/doctype.py:1476
msgid "Title field must be a valid fieldname"
-msgstr ""
+msgstr "Tittelfeltet må være et gyldig feltnavn"
#: frappe/website/doctype/web_page/web_page.js:70
msgid "Title of the page"
-msgstr ""
+msgstr "Tittel på siden"
#. Label of the recipients (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
-msgstr ""
+msgstr "Til"
#: frappe/public/js/frappe/views/communication.js:53
msgctxt "Email Recipients"
msgid "To"
-msgstr ""
+msgstr "Til"
#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -26800,7 +26954,7 @@ msgstr "Felt for til-dato"
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
-msgstr ""
+msgstr "Oppgaver"
#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -26813,7 +26967,8 @@ msgstr "For å legge til et dynamisk emne, bruk jinja-tagger som\n\n"
#: frappe/email/doctype/notification/notification.json
msgid "To add dynamic subject, use jinja tags like\n\n"
""
-msgstr ""
+msgstr "For å legge til et dynamisk emne, bruk jinja-tagger som\n\n"
+""
#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
@@ -26822,17 +26977,21 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
" "
-msgstr ""
+msgstr "For å legge til dynamiske verdier fra dokumentet, bruk jinja-tagger som\n\n"
+"
\n"
+"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n"
+"
"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
-msgstr ""
+msgstr "For å tillate flere rapporter, se oppdateringsgrensen i Systeminnstillinger."
#. Label of the section_break_10 (Section Break) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr ""
+msgstr "Til og CC"
#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
#. Email Report'
@@ -26842,15 +27001,15 @@ msgstr "For å starte datoperioden ved starten av den valgte perioden. Hvis for
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
-msgstr ""
+msgstr "For å konfigurere automatisk gjentakelse, aktiverer du \"Tillat automatisk gjentakelse\" fra {0}."
#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
-msgstr ""
+msgstr "Følg instruksjonene i følgende lenke for å aktivere den: {0}"
#: frappe/core/doctype/server_script/server_script.js:40
msgid "To enable server scripts, read the {0}."
-msgstr ""
+msgstr "For å aktivere serverskript, les {0}."
#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
@@ -26858,15 +27017,15 @@ msgstr "For å eksportere dette trinnet som JSON, koble det til et onboarding-do
#: frappe/email/doctype/email_account/email_account.js:126
msgid "To generate password click {0}"
-msgstr ""
+msgstr "For å generere passord, klikk {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
-msgstr ""
+msgstr "For å få den oppdaterte rapporten, klikk på {0}."
#: frappe/email/doctype/email_account/email_account.js:139
msgid "To know more click {0}"
-msgstr ""
+msgstr "For å vite mer, klikk {0}"
#. Description of the 'Console' (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -26875,30 +27034,30 @@ msgstr "For å skrive ut, bruk
print(tekst)"
#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
-msgstr ""
+msgstr "For å angi rollen {0} i brukeren {1}, vennligst angi {2} -feltet som {3} i en av {4} -postene."
#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr ""
+msgstr "For å bruke Google Kalender, aktiver {0}."
#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr ""
+msgstr "For å bruke Google Kontakter, aktiver {0}."
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable
Google Settings."
-msgstr ""
+msgstr "For å bruke Google-indeksering, aktiver
Google-innstillinger."
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a
Slack Webhook URL."
-msgstr ""
+msgstr "For å bruke Slack Channel, legg til en
Slack Webhook URL."
#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
-msgstr ""
+msgstr "Til versjon"
#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
@@ -26907,7 +27066,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr ""
+msgstr "Gjøremål"
#: frappe/public/js/frappe/form/controls/date.js:58
#: frappe/public/js/frappe/ui/filters/filter.js:733
@@ -26917,34 +27076,34 @@ msgstr "I dag"
#: frappe/public/js/frappe/views/reports/report_view.js:1572
msgid "Toggle Chart"
-msgstr ""
+msgstr "Vis/skjul diagram"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Full Width"
-msgstr ""
+msgstr "Bytt til/fra full bredde"
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr ""
+msgstr "Bytt til/fra rutenettvisning"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
#: frappe/public/js/frappe/views/reports/report_view.js:1576
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Vis/skjul sidepanel"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Vis/skjul sidepanel"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Theme"
-msgstr ""
+msgstr "Bytt tema"
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -26954,7 +27113,7 @@ msgstr "Token"
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
-msgstr ""
+msgstr "Token-buffer"
#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
#. Client'
@@ -26965,16 +27124,16 @@ msgstr "Token endepunkt Auth metode"
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
-msgstr ""
+msgstr "Tokentype"
#. Label of the token_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
-msgstr ""
+msgstr "Token URI"
#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr ""
+msgstr "Token mangler"
#: frappe/public/js/frappe/ui/filters/filter.js:739
msgid "Tomorrow"
@@ -26983,15 +27142,15 @@ msgstr "I morgen"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
#: frappe/model/workflow.py:310
msgid "Too Many Documents"
-msgstr ""
+msgstr "For mange dokumenter"
#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr ""
+msgstr "For mange forespørsler"
#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
-msgstr ""
+msgstr "For mange endringer i databasen i én enkelt handling."
#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
@@ -27005,7 +27164,7 @@ msgstr "Altfor mange brukere har registrert seg nylig, så registreringen er dea
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "Verktøy"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -27015,17 +27174,17 @@ msgstr "Topp"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
-msgstr ""
+msgstr "Topp 10"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr ""
+msgstr "Element i toppmeny"
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr ""
+msgstr "Elementer i toppmeny"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -27057,11 +27216,11 @@ msgstr "Øverst til høyre"
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr ""
+msgstr "Emne"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Totalt"
@@ -27079,28 +27238,28 @@ msgstr "Totalt antall feil (siste 1 dag)"
#: frappe/public/js/frappe/ui/capture.js:259
msgid "Total Images"
-msgstr ""
+msgstr "Totalt antall bilder"
#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Outgoing Emails"
-msgstr ""
+msgstr "Totalt antall utgående e-poster"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Total Subscribers"
-msgstr ""
+msgstr "Totalt antall abonnenter"
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Users"
-msgstr ""
+msgstr "Totalt antall brukere"
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
-msgstr ""
+msgstr "Total arbeidstid"
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
@@ -27114,11 +27273,11 @@ msgstr "Totalt:"
#: frappe/public/js/frappe/views/reports/report_view.js:1258
msgid "Totals"
-msgstr ""
+msgstr "Totalsummer"
#: frappe/public/js/frappe/views/reports/report_view.js:1233
msgid "Totals Row"
-msgstr ""
+msgstr "Rad for totalsummer"
#. Label of the trace_id (Data) field in DocType 'Error Log'
#: frappe/core/doctype/error_log/error_log.json
@@ -27135,34 +27294,34 @@ msgstr "Tilbakesporing"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr ""
+msgstr "Spor endringer"
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr ""
+msgstr "Spor e-poststatus"
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr ""
+msgstr "Sporingsfelt"
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr ""
+msgstr "Spor hvem som har sett"
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
-msgstr ""
+msgstr "Spor steg"
#. Label of the track_views (Check) field in DocType 'DocType'
#. Label of the track_views (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr ""
+msgstr "Spor antall visninger"
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -27177,39 +27336,39 @@ msgstr "Spor om e-posten din har blitt åpnet av mottakeren.\n"
#. Description of a DocType
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Track milestones for any document"
-msgstr ""
+msgstr "Spor milepæler for ethvert dokument"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Tracking"
-msgstr ""
+msgstr "Sporing"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
-msgstr ""
+msgstr "Sporing av URL generert og kopiert til utklippstavlen"
#: frappe/desk/page/setup_wizard/install_fixtures.py:31
msgid "Transgender"
-msgstr ""
+msgstr "Transkjønnet"
#: frappe/public/js/workflow_builder/components/Properties.vue:19
msgid "Transition Properties"
-msgstr "Egenskaper for Overgang "
+msgstr "Overgangsegenskaper"
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr ""
+msgstr "Overgangsregler"
#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Transition Tasks"
-msgstr ""
+msgstr "Overgangsoppgaver"
#. Label of the transitions (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr ""
+msgstr "Overganger"
#. Label of the translatable (Check) field in DocType 'DocField'
#. Label of the translatable (Check) field in DocType 'Custom Field'
@@ -27218,11 +27377,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr ""
+msgstr "Oversettbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
-msgstr ""
+msgstr "Oversett data"
#. Label of the translated_doctype (Check) field in DocType 'DocType'
#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
@@ -27233,30 +27392,30 @@ msgstr "Oversett lenkefelt"
#: frappe/public/js/frappe/views/reports/report_view.js:1658
msgid "Translate values"
-msgstr ""
+msgstr "Oversett verdier"
#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr ""
+msgstr "Oversett {0}"
#. Label of the translated_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr ""
+msgstr "Oversatt tekst"
#. Name of a DocType
#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr ""
+msgstr "Oversettelse"
#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr ""
+msgstr "Oversettelser"
#. Name of a role
#: frappe/core/doctype/translation/translation.json
msgid "Translator"
-msgstr ""
+msgstr "Oversetter"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -27272,38 +27431,38 @@ msgstr "Tre"
#: frappe/public/js/frappe/list/base_list.js:210
msgid "Tree View"
-msgstr ""
+msgstr "Trestrukturvisning"
#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Tree structures are implemented using Nested Set"
-msgstr ""
+msgstr "Trestrukturer implementeres ved hjelp av Nested Set"
#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
-msgstr ""
+msgstr "Trestrukturvisning er ikke tilgjengelig for {0}"
#. Label of the method (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr ""
+msgstr "Utløsende metode"
#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr ""
+msgstr "Utfør hovedhandling"
#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
-msgstr ""
+msgstr "Utløs hurtigbufring"
#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
-msgstr "Utløses på gyldige metoder som «before_insert», «after_update» osv. (avhenger av hvilken dokumenttype som er valgt)"
+msgstr "Utløses på gyldige metoder som «before_insert», «after_update» osv. (avhenger av hvilken dokumenttype (DocType) som er valgt)"
#: frappe/custom/doctype/customize_form/customize_form.js:144
msgid "Trim Table"
-msgstr ""
+msgstr "Rydd opp i tabell"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
msgid "Try Again"
@@ -27313,7 +27472,7 @@ msgstr "Prøv igjen"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
-msgstr ""
+msgstr "Prøv en nummerserie"
#: frappe/printing/page/print/print.js:202
#: frappe/printing/page/print/print.js:208
@@ -27322,11 +27481,11 @@ msgstr "Prøv den nye utskriftsdesigneren"
#: frappe/utils/password_strength.py:106
msgid "Try to avoid repeated words and characters"
-msgstr ""
+msgstr "Prøv å unngå gjentatte ord og tegn"
#: frappe/utils/password_strength.py:98
msgid "Try to use a longer keyboard pattern with more turns"
-msgstr ""
+msgstr "Prøv å bruke et lengre tastaturmønster med flere svinger"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -27350,7 +27509,7 @@ msgstr "Tirsdag"
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr ""
+msgstr "To-faktor autentisering"
#. Label of the two_factor_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -27382,7 +27541,7 @@ msgstr "To-faktor autentiseringsmetode"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27392,7 +27551,7 @@ msgstr "Type"
#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
-msgstr ""
+msgstr "Skriv inn et svar/kommentar"
#: frappe/templates/includes/search_template.html:51
msgid "Type something in the search box to search"
@@ -27402,22 +27561,22 @@ msgstr "Skriv noe i søkefeltet for å søke"
#: frappe/templates/discussions/reply_section.html:53
#: frappe/templates/discussions/topic_modal.html:11
msgid "Type title"
-msgstr ""
+msgstr "Skriv tittel"
#: frappe/templates/discussions/discussions.js:341
msgid "Type your reply here..."
-msgstr ""
+msgstr "Skriv svaret ditt her..."
#: frappe/core/doctype/data_export/exporter.py:143
msgid "Type:"
-msgstr ""
+msgstr "Type:"
#. Label of the ui_tour (Check) field in DocType 'Form Tour'
#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
-msgstr ""
+msgstr "UI-omvisning"
#. Label of the uid (Int) field in DocType 'Communication'
#. Label of the uid (Data) field in DocType 'Email Flag Queue'
@@ -27426,7 +27585,7 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "UID"
-msgstr ""
+msgstr "UID"
#. Label of the uidnext (Int) field in DocType 'Email Account'
#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
@@ -27440,7 +27599,7 @@ msgstr "UIDNEXT"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDVALIDITY"
-msgstr ""
+msgstr "UIDVALIDITY"
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -27474,17 +27633,17 @@ msgstr "URL"
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr ""
+msgstr "URL for dokumentasjon eller hjelp"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
-msgstr ""
+msgstr "URL-adressen må begynne med http:// eller https://"
#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "URL of a human-readable page with info that developers might need."
-msgstr ""
+msgstr "URL-adressen til en side som kan leses av mennesker, med informasjon som utviklere kan trenge."
#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -27495,52 +27654,52 @@ msgstr "URL-adressen til en nettside med informasjon om klienten."
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "URL of human-readable page with info about the protected resource's terms of service."
-msgstr ""
+msgstr "URL-adressen til en side som kan leses av mennesker, med informasjon om den beskyttede ressursens tjenestevilkår."
#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "URL of human-readable page with info on requirements about how the client can use the data."
-msgstr ""
+msgstr "URL til en side som kan leses av mennesker, med informasjon om krav til hvordan kunden kan bruke dataene."
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr ""
+msgstr "URL-adressen til siden"
#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
-msgstr ""
+msgstr "URL-adresse som peker til et lesbart policydokument for klienten. Bør vises til sluttbrukeren før autorisering."
#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
-msgstr ""
+msgstr "URL-adresse som peker til et dokument med lesbare tjenestevilkår for klienten. Bør vises til sluttbrukeren før autorisering."
#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "URL that references a logo for the client."
-msgstr ""
+msgstr "URL som refererer til en logo for klienten."
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr ""
+msgstr "URL-en du går til når du klikker på bildet i lysbildeserien"
#. Name of a DocType
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "UTM Campaign"
-msgstr ""
+msgstr "UTM campaign"
#. Name of a DocType
#: frappe/website/doctype/utm_medium/utm_medium.json
msgid "UTM Medium"
-msgstr ""
+msgstr "UTM medium"
#. Name of a DocType
#: frappe/website/doctype/utm_source/utm_source.json
msgid "UTM Source"
-msgstr ""
+msgstr "UTM source"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -27549,19 +27708,19 @@ msgstr "UUID"
#: frappe/desk/form/document_follow.py:79
msgid "Un-following document {0}"
-msgstr ""
+msgstr "Slutter å følge dokumentet {0}"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67
msgid "Unable to find DocType {0}"
-msgstr ""
+msgstr "Kunne ikke finne dokumenttype (DocType) {0}"
#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr ""
+msgstr "Kan ikke laste inn kamera."
#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
-msgstr ""
+msgstr "Kan ikke lastes inn: {0}"
#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
@@ -27569,59 +27728,59 @@ msgstr "Klarte ikke å åpne den vedlagte filen. Eksporterte du den som CSV?"
#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr ""
+msgstr "Kan ikke lese filformatet for {0}"
#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
-msgstr ""
+msgstr "Kan ikke sende e-post på grunn av manglende e-postkonto. Konfigurer standard e-postkonto fra Innstillinger > E-postkonto"
#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
msgstr "Kan ikke oppdatere hendelsen"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
-msgstr ""
+msgstr "Kan ikke skrive filformat for {0}"
#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr ""
+msgstr "Tilordne betingelse"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
-msgstr ""
+msgstr "Ubehandlet unntak"
#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr ""
+msgstr "Uendret"
#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
-msgstr ""
+msgstr "Angre"
#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
-msgstr ""
+msgstr "Angre siste handling"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
-msgstr ""
+msgstr "Ubeskyttede anførselstegn i strengliteral: {0} ✅"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
-msgstr ""
+msgstr "Stopp å følge"
#. Name of a DocType
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Unhandled Email"
-msgstr ""
+msgstr "Ubehandlet e-post"
#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Unhandled Emails"
-msgstr ""
+msgstr "Ubehandlede e-poster"
#. Label of the unique (Check) field in DocType 'DocField'
#. Label of the unique (Check) field in DocType 'Custom Field'
@@ -27630,7 +27789,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr ""
+msgstr "Unik"
#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -27643,32 +27802,32 @@ msgstr "Unik ID tildelt av klientutvikleren som brukes til å identifisere klien
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
-msgstr ""
+msgstr "Ukjent"
#: frappe/public/js/frappe/model/model.js:209
msgid "Unknown Column: {0}"
-msgstr ""
+msgstr "Ukjent kolonne: {0}"
#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
-msgstr ""
+msgstr "Ukjent avrundingsmetode: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
-msgstr ""
+msgstr "Ukjent bruker"
#: frappe/utils/csvutils.py:54
msgid "Unknown file encoding. Tried to use: {0}"
-msgstr ""
+msgstr "Ukjent filkoding. Prøvde å bruke: {0}"
#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
-msgstr ""
+msgstr "Lås opp referansedokumentet"
#: frappe/public/js/frappe/form/footer/form_timeline.js:633
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
-msgstr ""
+msgstr "Avpubliser"
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
@@ -27679,11 +27838,11 @@ msgstr "Ulest"
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr ""
+msgstr "Ulest varsel sendt"
#: frappe/utils/safe_exec.py:498
msgid "Unsafe SQL query"
-msgstr ""
+msgstr "Usikker SQL-spørring"
#: frappe/public/js/frappe/data_import/data_exporter.js:159
#: frappe/public/js/frappe/form/controls/multicheck.js:166
@@ -27697,17 +27856,17 @@ msgstr "Ikke delt"
#: frappe/email/queue.py:67
msgid "Unsubscribe"
-msgstr ""
+msgstr "Meld av"
#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr ""
+msgstr "Avmeldingsmetode"
#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Params"
-msgstr ""
+msgstr "Avmeldingsparametere"
#. Label of the unsubscribed (Check) field in DocType 'Contact'
#. Label of the unsubscribed (Check) field in DocType 'User'
@@ -27717,28 +27876,28 @@ msgstr ""
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/queue.py:123
msgid "Unsubscribed"
-msgstr ""
+msgstr "Avmeldt"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
-msgstr ""
+msgstr "Ikke-støttet funksjon eller ugyldig feltnavn: {0}"
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr ""
+msgstr "Kolonne uten tittel"
#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr ""
+msgstr "Pakk ut"
#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr ""
+msgstr "Pakket ut {0} filer"
#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr ""
+msgstr "Pakker ut filer..."
#: frappe/desk/doctype/event/event.py:273
msgid "Upcoming Events for Today"
@@ -27754,7 +27913,7 @@ msgstr "Kommende hendelser for I dag"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Oppdater"
@@ -27762,7 +27921,7 @@ msgstr "Oppdater"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
-msgstr ""
+msgstr "Oppdatering av endringsnavn"
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -27778,27 +27937,32 @@ msgstr "Oppdater felt"
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
-msgstr ""
+msgstr "Oppdater løsningsrekkefølge for hook-er"
#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
-msgstr ""
+msgstr "Oppdater ordre"
#: frappe/desk/page/setup_wizard/setup_wizard.js:494
msgid "Update Password"
+msgstr "Oppdater passord"
+
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
msgstr ""
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
-msgstr ""
+msgstr "Oppdater løpeummerteller"
#. Label of the update_series_start (Button) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr ""
+msgstr "Oppdater løpenummer"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27807,22 +27971,22 @@ msgstr "Oppdater instillinger"
#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr ""
+msgstr "Oppdater oversettelser"
#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
#. Label of the update_value (Data) field in DocType 'Workflow Document State'
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr ""
+msgstr "Oppdater verdi"
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
-msgstr ""
+msgstr "Oppdater fra Frappe Cloud"
#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
-msgstr ""
+msgstr "Oppdater {0} poster"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
@@ -27836,7 +28000,7 @@ msgstr "Oppdatert"
#: frappe/desk/doctype/bulk_update/bulk_update.js:32
msgid "Updated Successfully"
-msgstr ""
+msgstr "Oppdateringen var vellykket"
#: frappe/public/js/frappe/desk.js:446
msgid "Updated To A New Version 🎉"
@@ -27844,16 +28008,16 @@ msgstr "Oppdatert til en ny versjon 🎉"
#: frappe/public/js/frappe/list/bulk_operations.js:372
msgid "Updated successfully"
-msgstr ""
+msgstr "Oppdateringen var vellykket"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
-msgstr ""
+msgstr "Oppdaterer"
#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr "Oppdatering"
+msgstr "Oppdaterer"
#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
@@ -27861,35 +28025,35 @@ msgstr "Oppdaterer statuser for e-postkø. E-postene vil bli hentet i neste plan
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "Oppdatering av telleren kan føre til konflikter mellom dokumentnavn hvis det ikke gjøres riktig"
#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
-msgstr ""
+msgstr "Oppdaterer globale innstillinger"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
-msgstr ""
+msgstr "Oppdaterer alternativer for nummerserier"
#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
-msgstr ""
+msgstr "Oppdaterer relaterte felt..."
#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr ""
+msgstr "Oppdaterer {0}"
#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr ""
+msgstr "Oppdaterer {0} av {1}, {2}"
#: frappe/public/js/billing.bundle.js:131
msgid "Upgrade plan"
-msgstr ""
+msgstr "Oppgrader abonnementet"
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
-msgstr ""
+msgstr "Få bedre support med Frappe Helpdesk"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144
@@ -27930,36 +28094,36 @@ msgstr "Bruk % for alle verdier som ikke er tomme."
#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr ""
+msgstr "Bruk ASCII-koding for passord"
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Use First Day of Period"
-msgstr ""
+msgstr "Bruk første dag i perioden"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
-msgstr ""
+msgstr "Bruk HTML"
#. Label of the use_imap (Check) field in DocType 'Email Account'
#. Label of the use_imap (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr ""
+msgstr "Bruk IMAP"
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Use Number Format from Currency"
-msgstr ""
+msgstr "Bruk tallformat fra valuta"
#. Label of the use_post (Check) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr ""
+msgstr "Bruk POST"
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -27973,43 +28137,39 @@ msgstr "Bruk rapportdiagram"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr ""
+msgstr "Bruk SSL"
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
-msgstr ""
+msgstr "Bruk STARTTLS"
#. Label of the use_tls (Check) field in DocType 'Email Account'
#. Label of the use_tls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr ""
+msgstr "Bruk TLS"
#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr ""
+msgstr "Bruk noen få ord, unngå vanlige fraser."
#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
-msgstr ""
+msgstr "Bruk en annen e-post-ID"
#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Use if the default settings don't seem to detect your data correctly"
-msgstr ""
+msgstr "Bruk hvis standardinnstillingene ikke ser ut til å oppdage dataene dine riktig"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
-msgstr ""
+msgstr "Bruk av underspørring eller funksjon er ikke tillatt"
#: frappe/printing/page/print/print.js:292
msgid "Use the new Print Format Builder"
@@ -28018,18 +28178,18 @@ msgstr "Bruk den nye utskriftsformatbyggeren"
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr ""
+msgstr "Bruk dette feltnavnet til å generere tittel"
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use this, for example, if all sent emails should also be send to an archive."
-msgstr ""
+msgstr "Bruk dette for eksempel hvis alle sendte e-poster også skal sendes til et arkiv."
#. Label of the used_oauth (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
-msgstr ""
+msgstr "Bruker OAuth"
#. Label of the user (Link) field in DocType 'Assignment Rule User'
#. Label of the user (Link) field in DocType 'Auto Repeat User'
@@ -28096,27 +28256,27 @@ msgstr "Bruker"
#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr ""
+msgstr "Bruker '{0}' har allerede rollen '{1}'"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
-msgstr ""
+msgstr "Rapport om brukeraktivitet"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
-msgstr ""
+msgstr "Rapport om brukeraktivitet uten sortering"
#. Label of the user_agent (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr ""
+msgstr "User Agent"
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr ""
+msgstr "Bruker kan ikke opprette"
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -28125,51 +28285,51 @@ msgstr "Brukeren kan ikke søke"
#: frappe/public/js/frappe/desk.js:550
msgid "User Changed"
-msgstr ""
+msgstr "Bruker endret"
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr ""
+msgstr "Standardinnstillinger for bruker"
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Details"
-msgstr ""
+msgstr "Brukerdetaljer"
#. Name of a report
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
msgid "User Doctype Permissions"
-msgstr ""
+msgstr "Rettigheter for bruker-dokumenttype (DocType)"
#. Name of a DocType
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
-msgstr ""
+msgstr "Bruker-dokumenttype (DocType)"
#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
-msgstr ""
+msgstr "Grensen for bruker-dokumenttyper (DocType) er overskredet"
#. Name of a DocType
#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr ""
+msgstr "Bruker-epost"
#. Label of the user_emails (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr ""
+msgstr "Bruker-eposter"
#. Name of a DocType
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
-msgstr ""
+msgstr "Brukergruppe"
#. Name of a DocType
#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
-msgstr ""
+msgstr "Medlem av brukergruppen"
#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
#. Group'
@@ -28180,40 +28340,40 @@ msgstr "Medlemmer av brukergruppen"
#. Label of the userid (Data) field in DocType 'User Social Login'
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr ""
+msgstr "Bruker-ID"
#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr ""
+msgstr "Egenskap til bruker-ID"
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr ""
+msgstr "Bruker-ID"
#. Label of the user_id_field (Select) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
-msgstr "Felt for bruker-id"
+msgstr "Felt for bruker-ID"
#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
-msgstr ""
+msgstr "Feltet bruker-ID er obligatorisk i brukertypen {0}"
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr ""
+msgstr "Brukerbilde"
#. Name of a DocType
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "User Invitation"
-msgstr ""
+msgstr "Brukerinvitasjon"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
msgid "User Menu"
-msgstr ""
+msgstr "Brukermeny"
#. Label of the user_name (Data) field in DocType 'Personal Data Download
#. Request'
@@ -28224,28 +28384,28 @@ msgstr "Brukernavn"
#. Name of a DocType
#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr ""
+msgstr "Brukerrettighet"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
-msgstr ""
+msgstr "Brukerrettigheter"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
-msgstr ""
+msgstr "Brukerrettigheter"
#: frappe/core/page/permission_manager/permission_manager_help.html:32
msgid "User Permissions are used to limit users to specific records."
-msgstr ""
+msgstr "Brukerrettigheter brukes til å begrense brukernes tilgang til bestemte poster."
#: frappe/core/doctype/user_permission/user_permission_list.js:124
msgid "User Permissions created successfully"
-msgstr ""
+msgstr "Brukerrettigheter ble opprettet"
#. Name of a DocType
#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
@@ -28257,28 +28417,28 @@ msgstr "Brukerrolle"
#. Name of a DocType
#: frappe/core/doctype/user_role_profile/user_role_profile.json
msgid "User Role Profile"
-msgstr ""
+msgstr "Brukerrolle-profil (DocType)"
#. Name of a DocType
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
-msgstr "Brukervalg av dokumenttype"
+msgstr "Brukervalg av dokumenttype (DocType)"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "User Settings"
-msgstr ""
+msgstr "Brukerinnstillinger"
#. Name of a DocType
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User Social Login"
-msgstr ""
+msgstr "Sosial brukerinnlogging"
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr ""
+msgstr "Brukerstikkord"
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -28286,30 +28446,30 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User Type"
-msgstr ""
+msgstr "Brukertype"
#. Label of the user_type_modules (Table) field in DocType 'User Type'
#. Name of a DocType
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type_module/user_type_module.json
msgid "User Type Module"
-msgstr ""
+msgstr "Modul for brukertype"
#. Description of the 'Allow Login using Mobile Number' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr ""
+msgstr "Brukeren kan logge inn ved hjelp av e-postadresse eller mobilnummer"
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr ""
+msgstr "Brukeren kan logge inn med e-postadresse eller brukernavn"
#: frappe/templates/includes/login/login.js:292
msgid "User does not exist."
-msgstr ""
+msgstr "Brukeren finnes ikke."
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
@@ -28317,11 +28477,11 @@ msgstr "Brukeren har ikke tillatelse til å opprette den nye {0}"
#: frappe/core/doctype/user_invitation/user_invitation.py:102
msgid "User is disabled"
-msgstr ""
+msgstr "Brukeren er deaktivert"
#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr ""
+msgstr "Bruker er påkrevet for deling"
#. Label of the user_must_always_select (Check) field in DocType 'Document
#. Naming Settings'
@@ -28331,65 +28491,65 @@ msgstr "Brukeren må alltid velge"
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr ""
+msgstr "Brukerrettigheten finnes allerede"
#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
-msgstr ""
+msgstr "Bruker med e-postadresse {0} finnes ikke"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
-msgstr ""
+msgstr "Bruker med e-postadresse: {0} finnes ikke i systemet. Be \"Systemadministrator\" om å opprette brukeren for deg."
#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
-msgstr ""
+msgstr "Bruker {0} kan ikke slettes"
#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
-msgstr ""
+msgstr "Bruker {0} kan ikke deaktiveres"
#: frappe/core/doctype/user/user.py:611
msgid "User {0} cannot be renamed"
-msgstr ""
+msgstr "Bruker {0} kan ikke gis nytt navn"
#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
-msgstr ""
+msgstr "Bruker {0} har ikke tilgang til dette dokumentet"
#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr ""
+msgstr "Bruker {0} har ikke tilgang til dokumenttypen (DocType) via rollerettigheter for dokument {1}."
#: frappe/desk/doctype/workspace/workspace.py:275
msgid "User {0} does not have the permission to create a Workspace."
-msgstr ""
+msgstr "Bruker {0} har ikke tillatelse til å opprette et arbeidsområde."
#: frappe/templates/emails/data_deletion_approval.html:1
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr ""
+msgstr "Bruker {0} har bedt om sletting av data"
#: frappe/core/doctype/user/user.py:1384
msgid "User {0} impersonated as {1}"
-msgstr ""
+msgstr "Bruker {0} utga seg for å være {1}"
#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr ""
+msgstr "Bruker {0} er deaktivert"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
-msgstr ""
+msgstr "Bruker {0} er deaktivert. Ta kontakt med din systemansvarlige."
#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
-msgstr ""
+msgstr "Bruker {0} har ikke tilgang til dette dokumentet."
#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
-msgstr ""
+msgstr "Brukerinfo URI"
#. Label of the username (Data) field in DocType 'User'
#. Label of the username (Data) field in DocType 'User Social Login'
@@ -28397,11 +28557,11 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/www/login.py:110
msgid "Username"
-msgstr ""
+msgstr "Brukernavn"
#: frappe/core/doctype/user/user.py:700
msgid "Username {0} already exists"
-msgstr ""
+msgstr "Brukernavnet {0} finnes allerede"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
@@ -28425,11 +28585,11 @@ msgstr "Brukere kan bare slette vedlagte filer hvis dokumentet enten er i utkast
#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr ""
+msgstr "Brukere med rollen {0}:"
#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
-msgstr ""
+msgstr "Bruker systemets tema til å veksle mellom lys og mørk modus"
#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
@@ -28439,12 +28599,12 @@ msgstr "Bruk av denne konsollen kan gjøre det mulig for angripere å utgi seg f
#. Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Utilization"
-msgstr ""
+msgstr "Utnyttelse"
#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
-msgstr ""
+msgstr "Utnyttelse %"
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
@@ -28470,7 +28630,7 @@ msgstr "Valider felt"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Validate Frappe Mail Settings"
-msgstr ""
+msgstr "Valider e-post innstillinger for Frappe"
#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
#. Account'
@@ -28481,7 +28641,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Validate SSL Certificate"
-msgstr ""
+msgstr "Valider SSL-sertifikat"
#: frappe/public/js/frappe/web_form/web_form.js:384
msgid "Validation Error"
@@ -28506,8 +28666,8 @@ msgstr "Gyldighet"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28537,41 +28697,41 @@ msgstr "Endret verdi"
#. Label of the property_value (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr ""
+msgstr "Verdi som skal settes"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
-msgstr ""
+msgstr "Verdien kan ikke endres for {0}"
#: frappe/model/document.py:781
msgid "Value cannot be negative for"
-msgstr ""
+msgstr "Verdien kan ikke være negativ for"
#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
-msgstr ""
+msgstr "Verdien kan ikke være negativ for {0}: {1}"
#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr ""
+msgstr "Verdien for et kontrollfelt kan være enten 0 eller 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr ""
+msgstr "Verdien for feltet {0} er for lang i {1}. Lengden bør være mindre enn {2} tegn"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
-msgstr ""
+msgstr "Verdien for {0} kan ikke være en liste"
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr "Verdien fra dette feltet vil bli satt som forfallsdato i ToDo"
+msgstr "Verdien fra dette feltet vil bli satt som forfallsdato i gjøremål"
#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr ""
+msgstr "Verdien må være en av {0}"
#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
#. 'OAuth Client'
@@ -28584,26 +28744,26 @@ msgstr "Verdien «Ingen» antyder en offentlig klient. I slike tilfeller gis ikk
msgid "Value to Validate"
msgstr "Verdi som skal valideres"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
-msgstr ""
+msgstr "For stor verdi"
#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr ""
+msgstr "Verdien {0} mangler for {1}"
#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr ""
+msgstr "Verdien {0} må være i gyldig varighetsformat: d h m s (dager, timer, minutter, sekunder)"
#: frappe/core/doctype/data_import/importer.py:745
#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr ""
+msgstr "Verdien {0} må være i {1} -format"
#: frappe/core/doctype/version/version_view.html:9
msgid "Values Changed"
-msgstr ""
+msgstr "Verdier endret"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -28612,19 +28772,19 @@ msgstr "Verdana"
#: frappe/templates/includes/login/login.js:333
msgid "Verification"
-msgstr ""
+msgstr "Verifisering"
#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357
msgid "Verification Code"
-msgstr ""
+msgstr "Verifiseringskode"
#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr ""
+msgstr "Verifiseringslenke"
#: frappe/templates/includes/login/login.js:383
msgid "Verification code email not sent. Please contact Administrator."
-msgstr ""
+msgstr "Verifiseringskoden er ikke sendt. Vennligst kontakt administrator."
#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
@@ -28638,24 +28798,24 @@ msgstr "Verifisert"
#: frappe/public/js/frappe/ui/messages.js:359
#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr ""
+msgstr "Verifiser"
#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr ""
+msgstr "Verifiser passordet"
#: frappe/templates/includes/login/login.js:171
msgid "Verifying..."
-msgstr ""
+msgstr "Verifiserer..."
#. Name of a DocType
#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr ""
+msgstr "Versjon"
#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr ""
+msgstr "Versjon oppdatert"
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28670,43 +28830,43 @@ msgstr "Vis"
#: frappe/core/doctype/success_action/success_action.js:60
#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr ""
+msgstr "Vis alle"
#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
-msgstr ""
+msgstr "Vis revisjonsspor"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
-msgstr ""
+msgstr "Vis DocType-rettigheter"
#: frappe/core/doctype/file/file.js:4
msgid "View File"
-msgstr ""
+msgstr "Vis fil"
#: frappe/public/js/frappe/ui/notifications/notifications.js:220
msgid "View Full Log"
-msgstr ""
+msgstr "Vis hele loggen"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr ""
+msgstr "Vis liste"
#. Name of a DocType
#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr ""
+msgstr "Vis logg"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr ""
+msgstr "Vis tillatte dokumenter"
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr ""
+msgstr "Vis egenskaper (via Tilpass skjema)"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28719,27 +28879,27 @@ msgstr "Vis rapport"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr ""
+msgstr "Vis innstillinger"
#. Label of the view_switcher (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "View Switcher"
-msgstr ""
+msgstr "Vis velger"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr ""
+msgstr "Vis nettsted"
#: frappe/www/confirm_workflow_action.html:12
msgid "View document"
-msgstr ""
+msgstr "Vis dokument"
#: frappe/templates/emails/auto_email_report.html:60
msgid "View report in your browser"
-msgstr ""
+msgstr "Se rapporten i nettleseren din"
#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
@@ -28748,7 +28908,7 @@ msgstr "Se dette i nettleseren din"
#: frappe/public/js/frappe/web_form/web_form.js:478
msgctxt "Button in web form"
msgid "View your response"
-msgstr ""
+msgstr "Se svaret ditt"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
@@ -28759,36 +28919,36 @@ msgstr "Vis"
#. Label of the viewed_by (Data) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr ""
+msgstr "Sett av"
#. Group in DocType's connections
#. Label of a Card Break in the Build Workspace
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/workspace/build/build.json
msgid "Views"
-msgstr ""
+msgstr "Visninger"
#. Label of the is_virtual (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
-msgstr ""
+msgstr "Virtuell"
#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
-msgstr ""
+msgstr "Virtuell dokumenttype (DocType) {} krever en statisk metode kalt {}, men fant {}"
#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
-msgstr ""
+msgstr "Virtuell dokumenttype (DocType) {} krever at en instansmetode kalt {} overstyres, men fant {}"
#. Label of the visibility_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
-msgstr ""
+msgstr "Synlighet"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41
msgid "Visible to website/portal users."
-msgstr ""
+msgstr "Synlig for brukere av nettstedet/portalen."
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -28797,16 +28957,16 @@ msgstr "Besøk"
#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr ""
+msgstr "Besøk nettsiden"
#. Label of the visitor_id (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
-msgstr ""
+msgstr "Besøks-ID"
#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
-msgstr ""
+msgstr "Vil du diskutere?"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -28814,13 +28974,14 @@ msgid "Warehouse"
msgstr "Varehus"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Advarsel"
#: frappe/custom/doctype/customize_form/customize_form.js:217
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
-msgstr "Advarsel! FARE FOR DATATAP ER OVERHENGENDE! Hvis du fortsetter, vil følgende databasekolonner slettes permanent fra doctype {0}:"
+msgstr "Advarsel! FARE FOR DATATAP ER OVERHENGENDE! Hvis du fortsetter, vil følgende databasekolonner slettes permanent fra dokumenttype (DocType) {0}:"
#: frappe/core/doctype/doctype/doctype.py:1126
msgid "Warning: Naming is not set"
@@ -28837,7 +28998,7 @@ msgstr "Advarsel: Oppdatering av telleren kan føre til konflikter i dokumentnav
#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr ""
+msgstr "Var denne artikkelen nyttig?"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
msgid "Watch Tutorial"
@@ -28850,11 +29011,11 @@ msgstr "Se video"
#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
-msgstr ""
+msgstr "Vi tillater ikke redigering av dette dokumentet. Bare klikk på Rediger-knappen på arbeidsområde-siden for å gjøre arbeidsområdet ditt redigerbart og tilpasse det slik du ønsker"
#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr ""
+msgstr "Vi har mottatt en forespørsel om sletting av {0} data knyttet til: {1}"
#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
@@ -28862,15 +29023,15 @@ msgstr "Vi har mottatt en forespørsel fra deg om å laste ned {0} dataene dine
#: frappe/www/attribution.html:12
msgid "We would like to thank the authors of these packages for their contribution."
-msgstr ""
+msgstr "Vi vil gjerne takke forfatterne av disse pakkene for deres bidrag."
#: frappe/www/contact.py:50
msgid "We've received your query!"
-msgstr ""
+msgstr "Vi har mottatt forespørselen din!"
#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
-msgstr ""
+msgstr "Svak"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28878,22 +29039,22 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr ""
+msgstr "Nettskjema"
#. Name of a DocType
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr ""
+msgstr "Nettskjemafelt"
#. Label of the web_form_fields (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr ""
+msgstr "Nettskjemafelt"
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
-msgstr ""
+msgstr "Kolonne for liste over nettskjemaer"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28901,52 +29062,52 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr ""
+msgstr "Nettside"
#. Name of a DocType
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr ""
+msgstr "Websideblokk"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
-msgstr ""
+msgstr "Nettside-URL"
#. Name of a DocType
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr ""
+msgstr "Nettsidevisning"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Web Site"
-msgstr ""
+msgstr "Nettsted"
#. Label of the web_template (Link) field in DocType 'Web Page Block'
#. Name of a DocType
#: frappe/website/doctype/web_page_block/web_page_block.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Web Template"
-msgstr ""
+msgstr "Nettmal"
#. Name of a DocType
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr ""
+msgstr "Nettmalfelt"
#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr ""
+msgstr "Verdier for nettmaler"
#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
-msgstr ""
+msgstr "Nettmal er ikke spesifisert"
#. Label of the web_view (Tab Break) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr ""
+msgstr "Nettvisning"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
@@ -28956,56 +29117,56 @@ msgstr ""
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Webhook"
-msgstr ""
+msgstr "Webhook"
#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook'
#. Name of a DocType
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
msgid "Webhook Data"
-msgstr ""
+msgstr "Webhook data"
#. Name of a DocType
#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr ""
+msgstr "Webhook header"
#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr ""
+msgstr "Webhook headere"
#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr ""
+msgstr "Webhook request"
#. Label of a Link in the Build Workspace
#. Name of a DocType
#: frappe/core/workspace/build/build.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
-msgstr ""
+msgstr "Webhook request logg"
#. Label of the webhook_secret (Password) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr ""
+msgstr "Webhook secret"
#. Label of the sb_security (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr ""
+msgstr "Webhook security"
#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr ""
+msgstr "Webhook trigger"
#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr ""
+msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
@@ -29014,12 +29175,12 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr ""
+msgstr "Nettsted"
#. Name of a report
#: frappe/website/report/website_analytics/website_analytics.json
msgid "Website Analytics"
-msgstr ""
+msgstr "Nettstedsanalyse"
#. Name of a role
#: frappe/core/doctype/comment/comment.json
@@ -29036,31 +29197,31 @@ msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr ""
+msgstr "Nettstedsansvarlig"
#. Name of a DocType
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr ""
+msgstr "Meta-tagg for nettstedet"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_route_meta/website_route_meta.json
#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr ""
+msgstr "Sti-metadata for nettsted"
#. Name of a DocType
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr ""
+msgstr "Sti-viderekobling for nettsted"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_script/website_script.json
#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr ""
+msgstr "Skript for nettstedet"
#. Label of the website_search_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -29076,7 +29237,7 @@ msgstr "Nettstedets søkefelt må være et gyldig feltnavn"
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr ""
+msgstr "Innstillinger for nettsted"
#. Label of the website_sidebar (Link) field in DocType 'Web Form'
#. Label of the website_sidebar (Link) field in DocType 'Web Page'
@@ -29087,24 +29248,24 @@ msgstr ""
#: frappe/website/doctype/website_sidebar/website_sidebar.json
#: frappe/website/workspace/website/website.json
msgid "Website Sidebar"
-msgstr ""
+msgstr "Nettstedets sidefelt"
#. Name of a DocType
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr ""
+msgstr "Element i nettstedets sidefelt"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr ""
+msgstr "Lysbildefremvisning på nettstedet"
#. Name of a DocType
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr ""
+msgstr "Element i lysbildefremvisning på nettstedet"
#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
@@ -29113,23 +29274,23 @@ msgstr ""
#: frappe/website/doctype/website_theme/website_theme.json
#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr ""
+msgstr "Nettstedstema"
#. Name of a DocType
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr ""
+msgstr "Ignorer app for nettstedstema"
#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr ""
+msgstr "Bilde for nettstedstema"
#. Label of the website_theme_image_link (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
-msgstr ""
+msgstr "Bildelenke for nettstedstema"
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
@@ -29155,7 +29316,7 @@ msgstr "Onsdag"
#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
-msgstr ""
+msgstr "Uke"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -29193,7 +29354,7 @@ msgstr "Ukeslang"
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
-msgstr ""
+msgstr "Velkommen"
#. Label of the welcome_email_template (Link) field in DocType 'System
#. Settings'
@@ -29201,25 +29362,25 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr ""
+msgstr "Mal for velkomst-e-post"
#. Label of the welcome_url (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
-msgstr ""
+msgstr "Velkomst-URL"
#. Name of a Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
-msgstr ""
+msgstr "Velkomst og introduksjon"
#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
-msgstr ""
+msgstr "Velkomst-e-post sendt"
#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
-msgstr ""
+msgstr "Velkommen til {0}"
#: frappe/public/js/frappe/ui/notifications/notifications.js:62
msgid "What's New"
@@ -29252,7 +29413,7 @@ msgstr "Når du endrer et dokument etter Avbryt og lagrer det, vil det få et ny
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "Hvilken visning av den tilknyttede DocTypen skal denne snarveien ta deg til?"
+msgstr "Hvilken visning av den tilknyttede dokumenttypen (DocType) skal denne snarveien ta deg til?"
#. Label of the width (Data) field in DocType 'DocField'
#. Label of the width (Int) field in DocType 'Report Column'
@@ -29286,7 +29447,7 @@ msgstr "Vil legge til «%» før og etter spørringen"
#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr ""
+msgstr "Vil være din innloggings-ID"
#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
@@ -29296,9 +29457,9 @@ msgstr "Vil bare vises hvis seksjonsoverskrifter er aktivert"
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
-msgstr ""
+msgstr "Kjører planlagte jobber bare én gang om dagen for inaktive nettsteder. Sett den til 0 for å unngå automatisk deaktivering av planleggeren."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Med brevhode"
@@ -29311,7 +29472,7 @@ msgstr "Info om bakgrunnsprosesser"
#. Label of the worker_name (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
-msgstr ""
+msgstr "Prosessnavn"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Group in DocType's connections
@@ -29327,30 +29488,30 @@ msgstr "Arbeidsflyt"
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr ""
+msgstr "Arbeidsflythandling"
#. Name of a DocType
#. Description of a DocType
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr ""
+msgstr "Mal for arbeidsflythandling"
#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr ""
+msgstr "Navn på arbeidsflythandling"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
-msgstr ""
+msgstr "Tillatt rolle for arbeidsflythandling"
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "Arbeidsflythandlingen er ikke opprettet for valgfrie tilstander"
+msgstr "Det opprettes ikke arbeidsflythandling for valgfrie tilstander"
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
@@ -29374,7 +29535,7 @@ msgstr "Med Arbeidsflytbygger kan du lage arbeidsflyter visuelt. Du kan dra og s
#. Label of the workflow_data (JSON) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
-msgstr ""
+msgstr "Arbeidsflytdata"
#: frappe/public/js/workflow_builder/components/Properties.vue:44
msgid "Workflow Details"
@@ -29383,40 +29544,40 @@ msgstr "Arbeidsflytdetaljer"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr ""
+msgstr "Tilstand for arbeidsflytdokument"
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr ""
+msgstr "Navn på arbeidsflyt"
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr ""
+msgstr "Arbeidsflyttilstand"
#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr ""
+msgstr "Felt for arbeidsflyttilstand"
#: frappe/model/workflow.py:64
msgid "Workflow State not set"
-msgstr ""
+msgstr "Arbeidsflyttilstand ikke angitt"
#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr ""
+msgstr "Overgang mellom arbeidsflyttilstander er ikke tillatt fra {0} til {1}"
#: frappe/workflow/doctype/workflow/workflow.js:140
msgid "Workflow States Don't Exist"
-msgstr ""
+msgstr "Arbeidsflyttilstander finnes ikke"
#: frappe/model/workflow.py:384
msgid "Workflow Status"
-msgstr ""
+msgstr "Arbeidsflyttilstand"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -29426,26 +29587,26 @@ msgstr "Oppgaver i arbeidsflyt"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr ""
+msgstr "Arbeidsflytovergang"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
msgid "Workflow Transition Task"
-msgstr ""
+msgstr "Oppgave ved arbeidsflytovergang"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json
msgid "Workflow Transition Tasks"
-msgstr ""
+msgstr "Oppgaver ved arbeidsflytovergang"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow state represents the current state of a document."
-msgstr ""
+msgstr "Arbeidsflyttilstand representerer den nåværende tilstanden til et dokument."
#: frappe/public/js/workflow_builder/store.js:83
msgid "Workflow updated successfully"
-msgstr "Arbeidsflyten ble vellykket oppdatert"
+msgstr "Arbeidsflyten ble oppdatert"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -29459,41 +29620,41 @@ msgstr "Arbeidsflyten ble vellykket oppdatert"
msgid "Workspace"
msgstr "Arbeidsområde"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace
{0} does not exist"
-msgstr ""
+msgstr "Arbeidsområdet
{0} finnes ikke"
#. Name of a DocType
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
-msgstr ""
+msgstr "Diagram for arbeidsområde"
#. Name of a DocType
#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
-msgstr ""
+msgstr "Tilpasset blokk for arbeidsområde"
#. Name of a DocType
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
-msgstr ""
+msgstr "Lenke for arbeidsområde"
#. Name of a role
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
-msgstr ""
+msgstr "Administrator for arbeidsområder"
#. Name of a DocType
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
-msgstr ""
+msgstr "Nummerkort for arbeidsområde"
#. Name of a DocType
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
-msgstr ""
+msgstr "Hurtigliste for arbeidsområde"
#. Label of a standard navbar item
#. Type: Action
@@ -29501,28 +29662,28 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
#: frappe/hooks.py
msgid "Workspace Settings"
-msgstr ""
+msgstr "Innstillinger for arbeidsområde"
#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Setup Completed"
-msgstr ""
+msgstr "Oppsett av arbeidsområdet er fullført"
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
-msgstr ""
+msgstr "Snarvei til arbeidsområde"
#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Visibility"
-msgstr ""
+msgstr "Synlighet av arbeidsområde"
#: frappe/public/js/frappe/views/workspace/workspace.js:538
msgid "Workspace {0} created"
-msgstr ""
+msgstr "Arbeidsområde {0} opprettet"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -29531,15 +29692,15 @@ msgstr "Arbeidsområder"
#: frappe/public/js/frappe/form/footer/form_timeline.js:757
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
-msgstr ""
+msgstr "Ønsker du å publisere denne kommentaren? Dette betyr at den blir synlig for brukere av nettstedet/portalen."
#: frappe/public/js/frappe/form/footer/form_timeline.js:761
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
-msgstr ""
+msgstr "Ønsker du å avpublisere denne kommentaren? Dette betyr at den ikke lenger vil være synlig for brukere av nettstedet/portalen."
#: frappe/desk/page/setup_wizard/setup_wizard.py:41
msgid "Wrapping up"
-msgstr ""
+msgstr "Oppsummerer"
#. Label of the write (Check) field in DocType 'Custom DocPerm'
#. Label of the write (Check) field in DocType 'DocPerm'
@@ -29550,15 +29711,15 @@ msgstr ""
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr ""
+msgstr "Skrive"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
-msgstr ""
+msgstr "Feil «Hent fra»-verdi"
#: frappe/public/js/frappe/views/reports/report_view.js:495
msgid "X Axis Field"
-msgstr ""
+msgstr "Felt i X-akse"
#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -29577,11 +29738,11 @@ msgstr "Y-akse"
#: frappe/public/js/frappe/views/reports/report_view.js:502
msgid "Y Axis Fields"
-msgstr ""
+msgstr "Felt for Y-akse"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y-felt"
@@ -29643,7 +29804,7 @@ msgstr "Gul"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29665,98 +29826,102 @@ msgstr "I går"
#: frappe/public/js/frappe/utils/user.js:33
msgctxt "Name of the current user. For example: You edited this 5 hours ago."
msgid "You"
-msgstr ""
+msgstr "Du"
#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
-msgstr ""
+msgstr "Du likte"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266
msgid "You added 1 row to {0}"
-msgstr ""
+msgstr "Du la til 1 rad til {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244
msgid "You added {0} rows to {1}"
+msgstr "Du la til {0} rader til {1}"
+
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr ""
+msgstr "Du er koblet til Internett."
#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
msgid "You are impersonating as another user."
-msgstr ""
+msgstr "Du utgir deg for å være en annen bruker."
#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
msgid "You are not allowed to access this resource"
-msgstr ""
+msgstr "Du har ikke tilgang til denne ressursen"
#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr ""
+msgstr "Du har ikke tilgang til denne {0} oppføringen fordi den er lenket til {1} '{2}' i felt {3}"
#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
-msgstr ""
+msgstr "Du har ikke tilgang til denne {0} -posten fordi den er knyttet til {1} '{2}' i rad {3}, felt {4}"
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr ""
+msgstr "Du har ikke rettigheter til å opprette kolonner"
#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr ""
+msgstr "Du har ikke rettigheter til å slette standardrapporten"
#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr ""
+msgstr "Du har ikke rettigheter til å slette et standard nettstedstema"
#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
-msgstr ""
+msgstr "Du har ikke rettigheter til å redigere rapporten."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
-msgstr ""
+msgstr "Du har ikke rettigheter til å eksportere {} dokumenttype (DocType)"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
-msgstr "Du har ikke tillatelse til å skrive ut denne rapporten"
+msgstr "Du har ikke rettigheter til å skrive ut denne rapporten"
#: frappe/public/js/frappe/views/communication.js:787
msgid "You are not allowed to send emails related to this document"
-msgstr ""
+msgstr "Du har ikke rettigheter til å sende e-poster om dette dokumentet"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
-msgstr ""
+msgstr "Du har ikke rettigheter til å oppdatere dette nettskjemadokumentet"
#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr ""
+msgstr "Du er ikke koblet til Internett. Prøv på nytt etter en stund."
#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
-msgstr ""
+msgstr "Du har ikke tilgang til denne siden uten å være logget inn."
#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr ""
+msgstr "Ditt rettighetsnivå hindrer visning av denne siden."
#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
-msgstr ""
+msgstr "Du må være innlogget for å få tilgang til denne ressursen."
#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
-msgstr ""
+msgstr "Du følger nå dette dokumentet. Du vil motta daglige oppdateringer via e-post. Du kan endre dette i brukerinnstillingene."
#: frappe/core/doctype/installed_applications/installed_applications.py:117
msgid "You are only allowed to update order, do not remove or add apps."
-msgstr ""
+msgstr "Du kan bare endre rekkefølgen på appene, ikke legge til eller fjerne dem."
#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
@@ -29765,7 +29930,7 @@ msgstr "Du velger Synkroniseringsalternativet ALLE. Dette vil synkronisere alle
#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
-msgstr ""
+msgstr "Du la ved {0}"
#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
@@ -29785,11 +29950,11 @@ msgstr "Du kan også kopiere og lime inn dette"
#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr ""
+msgstr "Du kan også kopiere og lime inn denne {0} i nettleseren din"
#: frappe/templates/emails/user_invitation_expired.html:8
msgid "You can ask your team to resend the invitation if you'd still like to join."
-msgstr ""
+msgstr "Du kan be teamet ditt om å sende invitasjonen på nytt hvis du fortsatt ønsker å bli med."
#: frappe/core/page/permission_manager/permission_manager_help.html:17
msgid "You can change Submitted documents by cancelling them and then, amending them."
@@ -29797,27 +29962,27 @@ msgstr "Du kan endre registrerte dokumenter ved å kansellere dem og deretter ko
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
-msgstr ""
+msgstr "Du kan endre retningslinjene for oppbevaring fra {0}."
#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
msgstr "Du kan fortsette med onboarding-prosessen etter å ha utforsket denne siden"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
-msgstr ""
+msgstr "Du kan deaktivere denne {0} i stedet for å slette den."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
-msgstr ""
+msgstr "Du kan øke grensen fra systeminnstillingene."
#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
-msgstr ""
+msgstr "Du kan manuelt fjerne låsen hvis du tror det er trygt: {}"
#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
-msgstr ""
+msgstr "Du kan bare sette inn bilder i felter som støtter Markdown"
#: frappe/public/js/frappe/list/bulk_operations.js:42
msgid "You can only print upto {0} documents at a time"
@@ -29825,7 +29990,7 @@ msgstr "Du kan bare skrive ut opptil {0} dokumenter om gangen"
#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
-msgstr ""
+msgstr "Du kan bare angi tre egendefinerte dokumenttyper (DocType) i dokumenttype-tabellen."
#: frappe/handler.py:183
msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
@@ -29843,7 +30008,7 @@ msgstr "Du kan velge ett av følgende,"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "You can set a high value here if multiple users will be logging in from the same network."
-msgstr ""
+msgstr "Du kan angi en høy verdi her hvis flere brukere skal logge seg på fra samme nettverk."
#: frappe/desk/query_report.py:382
msgid "You can try changing the filters of your report."
@@ -29857,13 +30022,13 @@ msgstr "Du kan bruke Tilpass skjema til å angi nivåer på felt."
msgid "You can use wildcard %"
msgstr "Du kan bruke jokertegn %."
-#: frappe/custom/doctype/customize_form/customize_form.py:390
-msgid "You can't set 'Options' for field {0}"
-msgstr ""
-
#: frappe/custom/doctype/customize_form/customize_form.py:394
+msgid "You can't set 'Options' for field {0}"
+msgstr "Du kan ikke angi «Alternativer» for felt {0}"
+
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
-msgstr ""
+msgstr "Du kan ikke angi «Oversettbar» for felt {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
@@ -29877,42 +30042,42 @@ msgstr "Du avbrøt dokumentet {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr "Du kan ikke opprette et oversiktspanel-diagram fra enkeltstående dokumenttyper"
+msgstr "Du kan ikke opprette et oversiktspanel-diagram fra enkeltstående dokumenttyper (DocType)"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr ""
+msgstr "Du kan ikke oppheve \"Skrivebeskyttet\" for felt {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
-msgstr ""
+msgstr "Du endret verdien for {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
-msgstr ""
+msgstr "Du endret verdien for {0} {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
-msgstr ""
+msgstr "Du endret verdiene for {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
-msgstr ""
+msgstr "Du endret verdiene for {0} {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
-msgstr ""
+msgstr "Du endret {0} til {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
-msgstr ""
+msgstr "Du opprettet dette"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340
msgctxt "Form timeline"
msgid "You created this document {0}"
-msgstr ""
+msgstr "Du opprettet dette dokumentet {0}"
#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
@@ -29920,19 +30085,19 @@ msgstr "Du har ikke lese- eller valgtillatelser for {}"
#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr ""
+msgstr "Du har ikke tilstrekkelige rettigheter til å få tilgang til denne ressursen. Ta kontakt med admin for å få tilgang."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
-msgstr ""
+msgstr "Du har ikke tilstrekkelige rettigheter til å fullføre handlingen"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
-msgstr ""
+msgstr "Du har ikke rettigheter for tilgang til feltet: {0}"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
-msgstr ""
+msgstr "Du har ikke rettigheter for tilgang til {0}: {1}."
#: frappe/public/js/frappe/form/form.js:960
msgid "You do not have permissions to cancel all linked documents."
@@ -29940,23 +30105,23 @@ msgstr "Du har ikke rettigheter til å avbryte alle sammenlenkede dokumenter."
#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
-msgstr ""
+msgstr "Du har ikke tilgang til rapport: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
-msgstr ""
+msgstr "Du har ikke rettigheter for tilgang til {} dokumenttype (DocType)."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
-msgstr ""
+msgstr "Du har ikke rettigheter for tilgang til denne filen"
#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
-msgstr ""
+msgstr "Du har ikke rettigheter til å få en rapport på: {0}"
#: frappe/website/doctype/web_form/web_form.py:175
msgid "You don't have the permissions to access this document"
-msgstr ""
+msgstr "Du har ikke rettigheter til å få tilgang til dette dokumentet"
#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from:"
@@ -29964,19 +30129,19 @@ msgstr "Du har en ny melding fra:"
#: frappe/handler.py:119
msgid "You have been successfully logged out"
-msgstr ""
+msgstr "Du er blitt logget ut"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
-msgstr ""
+msgstr "Du har nådd grensen for radstørrelse i databasetabellen: {0}"
#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
-msgstr ""
+msgstr "Du har ikke angitt noen verdi. Feltet vil bli satt til tomt."
#: frappe/twofactor.py:437
msgid "You have to enable Two Factor Auth from System Settings."
-msgstr ""
+msgstr "Du må aktivere tofaktorautentisering fra systeminnstillinger."
#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
@@ -29984,84 +30149,84 @@ msgstr "Du har ulagrede endringer i dette skjemaet. Vennligst lagre før du fort
#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
msgid "You have unseen notifications"
-msgstr ""
+msgstr "Du har usette varsler"
#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr ""
+msgstr "Du har usett {0}"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Du har ikke lagt til noen oversiktspanel-diagrammer eller tallkort ennå."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
-msgstr ""
+msgstr "Du har ikke opprettet en {0} ennå"
#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
-msgstr ""
+msgstr "Du har nådd hastighetsgrensen på grunn av for mange forespørsler. Prøv igjen etter en stund."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
-msgstr ""
+msgstr "Du redigerte dette sist"
#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
-msgstr ""
+msgstr "Du må legge til minst én lenke."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
-msgstr ""
+msgstr "Du må være innlogget for å bruke dette skjemaet."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Du må logge inn for å kunne registrere dette skjemaet"
#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
-msgstr ""
+msgstr "Du trenger tillatelsen '{0}' på {1} {2} for å utføre denne handlingen."
#: frappe/desk/doctype/workspace/workspace.py:127
msgid "You need to be Workspace Manager to delete a public workspace."
-msgstr "Du må være administrator for arbeidsområder for å slette et offentlig arbeidsområde."
+msgstr "Du må være Administrator for arbeidsområder for å slette et offentlig arbeidsområde."
#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
-msgstr ""
+msgstr "Du må være Administrator for arbeidsområder for å redigere dette dokumentet"
#: frappe/www/attribution.py:16
msgid "You need to be a system user to access this page."
-msgstr ""
+msgstr "Du må være systembruker for å få adgang til denne siden."
#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr ""
+msgstr "Du må være i utviklermodus for å redigere et standard webskjema"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Du må være logget inn og ha rollen som systemansvarlig for å få tilgang til sikkerhetskopier."
#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr ""
+msgstr "Du må være innlogget for å få tilgang til denne siden"
#: frappe/website/doctype/web_form/web_form.py:164
msgid "You need to be logged in to access this {0}."
-msgstr ""
+msgstr "Du må være innlogget for å få tilgang til denne {0}."
#: frappe/public/js/frappe/widgets/links_widget.js:63
msgid "You need to create these first:"
-msgstr ""
+msgstr "Du må opprette disse først:"
#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr ""
+msgstr "Du må aktivere JavaScript for at appen skal fungere."
#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
-msgstr ""
+msgstr "Du må ha tillatelse til å dele"
#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
@@ -30073,32 +30238,32 @@ msgstr "Du må først velge indeksene du vil legge til."
#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
-msgstr ""
+msgstr "Du må angi én IMAP-mappe for {0}"
#: frappe/model/rename_doc.py:391
msgid "You need write permission on {0} {1} to merge"
-msgstr ""
+msgstr "Du trenger skriverettighet på {0} {1} for å slå sammen"
#: frappe/model/rename_doc.py:386
msgid "You need write permission on {0} {1} to rename"
-msgstr ""
+msgstr "Du trenger skriverettighet på {0} {1} for å gi nytt navn til"
#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
-msgstr ""
+msgstr "Du må ha rettighet fra {0} for å hente verdier fra {1} {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311
msgid "You removed 1 row from {0}"
-msgstr ""
+msgstr "Du fjernet 1 rad fra {0}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
-msgstr ""
+msgstr "Du fjernet vedlegg {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289
msgid "You removed {0} rows from {1}"
-msgstr ""
+msgstr "Du fjernet {0} rader fra {1}"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
@@ -30124,19 +30289,23 @@ msgstr "Du registrerte dette dokumentet {0}"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr ""
+msgstr "Du sluttet å følge dette dokumentet"
#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
+msgstr "Du så dette"
+
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
-msgstr ""
+msgstr "Du er blitt invitert til å bli med på {0}"
#: frappe/templates/emails/user_invitation.html:5
msgid "You've been invited to join {0}."
-msgstr ""
+msgstr "Du er blitt invitert til å bli med på {0}"
#: frappe/public/js/frappe/desk.js:547
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
@@ -30144,7 +30313,7 @@ msgstr "Du har logget inn som en annen bruker fra en annen fane. Oppdater denne
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "YouTube"
-msgstr ""
+msgstr "YouTube"
#: frappe/core/doctype/prepared_report/prepared_report.js:57
msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
@@ -30152,15 +30321,15 @@ msgstr "CSV-filen din genereres og vil vises i Vedlegg-delen når den er klar. I
#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr ""
+msgstr "Ditt land"
#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr ""
+msgstr "Ditt språk"
#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr ""
+msgstr "Ditt navn"
#: frappe/public/js/frappe/list/bulk_operations.js:132
msgid "Your PDF is ready for download"
@@ -30168,44 +30337,44 @@ msgstr "PDF-filen din er klar for nedlasting"
#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr ""
+msgstr "Dine snarveier"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
msgstr "Din konto er blitt slettet"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr ""
+msgstr "Kontoen din er låst og vil bli gjenopptatt etter {0} sekunder"
#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr ""
+msgstr "Oppgaven din på {0} {1} er fjernet av {2}"
#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
-msgstr ""
+msgstr "Nettleseren din støtter ikke audio-elementet."
#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
-msgstr ""
+msgstr "Nettleseren din støtter ikke video-elementet."
#: frappe/templates/pages/integrations/gcalendar-success.html:11
msgid "Your connection request to Google Calendar was successfully accepted"
-msgstr ""
+msgstr "Forespørselen din om tilkobling til Google Kalender ble godkjent"
#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr ""
+msgstr "Din e-postadresse "
#: frappe/desk/utils.py:105
msgid "Your exported report: {0}"
-msgstr ""
+msgstr "Din eksporterte rapport: {0}"
#: frappe/public/js/frappe/web_form/web_form.js:452
msgid "Your form has been successfully updated"
-msgstr ""
+msgstr "Skjemaet ditt er blitt oppdatert"
#: frappe/templates/emails/user_invitation_cancelled.html:5
msgid "Your invitation to join {0} has been cancelled by the site administrator."
@@ -30213,7 +30382,7 @@ msgstr "Invitasjonen din til å bli med {0} er blitt kansellert av nettstedadmin
#: frappe/templates/emails/user_invitation_expired.html:5
msgid "Your invitation to join {0} has expired."
-msgstr ""
+msgstr "Invitasjonen din til å bli medlem av {0} har utløpt."
#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
@@ -30225,61 +30394,61 @@ msgstr "Vellykket oppretting av nytt passord."
#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
-msgstr ""
+msgstr "Det gamle passordet ditt er feil."
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr ""
+msgstr "Organisasjonens navn og adresse for bunnteksten i e-posten."
#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vi har mottatt forespørselen din. Vi vil svare tilbake innen kort tid. Hvis du har ytterligere informasjon, vennligst svar på denne e-posten."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr ""
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "Rapporten din genereres i bakgrunnen. Du vil motta en e-post på {0} med en nedlastingslenke når den er klar."
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
-msgstr ""
+msgstr "Økten din er utløpt. Logg inn på nytt for å fortsette."
#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
msgid "Your site is undergoing maintenance or being updated."
-msgstr ""
+msgstr "Nettstedet ditt er under vedlikehold eller oppdatering."
#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
-msgstr ""
+msgstr "Din verifiseringskode er {0}"
#: frappe/utils/data.py:1558
msgid "Zero"
-msgstr ""
+msgstr "Null"
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr ""
+msgstr "Null betyr at alle oppdaterte poster sendes, uavhengig av tidspunkt"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358
msgid "[Action taken by {0}]"
-msgstr ""
+msgstr "[Handling utført av {0}]"
#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_doctype"
-msgstr ""
+msgstr "_doctype"
#. Label of the _report (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_report"
-msgstr ""
+msgstr "_report"
#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
-msgstr ""
+msgstr "`as_iterator` fungerer bare med `as_list=True` eller `as_dict=True`."
#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
@@ -30298,7 +30467,7 @@ msgstr "korriger"
#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
-msgstr ""
+msgstr "og"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
@@ -30312,12 +30481,12 @@ msgstr "blå"
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
-msgstr ""
+msgstr "etter rolle"
#. Label of the profile (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "cProfile Output"
-msgstr ""
+msgstr "cProfile-utdata"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295
msgid "calendar"
@@ -30340,7 +30509,7 @@ msgstr "tøm"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
msgid "commented"
-msgstr ""
+msgstr "kommenterte"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30357,7 +30526,7 @@ msgstr "cyan"
#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr ""
+msgstr "d"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -30414,41 +30583,41 @@ msgstr "synkende"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr ""
+msgstr "dokumenttype (DocType) … f.eks. Kunde"
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr ""
+msgstr "f.eks. \"Support\", \"Salg\", \"Jerry Yang\""
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr ""
+msgstr "f.eks. (55 + 434) / 4 eller =Math.sin(Math.PI/2)..."
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr ""
+msgstr "f.eks. pop.gmail.com / imap.gmail.com"
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr ""
+msgstr "f.eks. svar@dittselskap.no. Alle svar kommer til denne innboksen."
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr ""
+msgstr "f.eks. smtp.gmail.com"
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr ""
+msgstr "f.eks.:"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -30471,7 +30640,7 @@ msgstr "e-post innboks"
#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:507
msgid "empty"
-msgstr ""
+msgstr "tom"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30524,7 +30693,7 @@ msgstr "gzip ikke funnet i PATH! Dette er nødvendig for å ta en sikkerhetskopi
#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
-msgstr ""
+msgstr "h"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "hub"
@@ -30533,7 +30702,7 @@ msgstr "hub"
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr ""
+msgstr "ikon"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30543,15 +30712,15 @@ msgstr "import"
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
-msgstr ""
+msgstr "janne@eksempel.no"
#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr ""
+msgstr "akkurat nå"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
-msgstr ""
+msgstr "etikett"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -30576,9 +30745,9 @@ msgstr "liste"
#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr ""
+msgstr "innlogget"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "login_required"
@@ -30593,11 +30762,11 @@ msgstr "lang"
#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr ""
+msgstr "m"
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr ""
+msgstr "slått sammen {0} til {1}"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
@@ -30620,7 +30789,7 @@ msgstr "modul"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr ""
+msgstr "modulnavn..."
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169
msgid "new"
@@ -30633,30 +30802,30 @@ msgstr "ny type dokument"
#. Label of the no_failed (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr ""
+msgstr "ingen mislykkede forsøk"
#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
-msgstr ""
+msgstr "nonce"
#. Label of the notified (Check) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
-msgstr ""
+msgstr "varslet"
#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr ""
+msgstr "nå"
#: frappe/public/js/frappe/form/grid_pagination.js:116
msgid "of"
-msgstr ""
+msgstr "av"
#. Label of the old_parent (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr ""
+msgstr "old_parent"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
@@ -30691,7 +30860,7 @@ msgstr "on_update_after_submit"
#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
-msgstr ""
+msgstr "eller"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -30723,7 +30892,7 @@ msgstr "skriv ut"
#. Label of the processlist (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
-msgstr ""
+msgstr "prosessliste"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -30753,7 +30922,7 @@ msgstr "rød"
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr ""
+msgstr "omnavnet fra {0} til {1}"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30764,7 +30933,7 @@ msgstr "rapport"
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr ""
+msgstr "respons"
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
@@ -30774,7 +30943,7 @@ msgstr "gjenopprettet {0} som {1}"
#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr ""
+msgstr "s"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
@@ -30808,15 +30977,15 @@ msgstr "kort"
#: frappe/public/js/frappe/widgets/number_card_widget.js:310
msgid "since last month"
-msgstr ""
+msgstr "siden forrige måned"
#: frappe/public/js/frappe/widgets/number_card_widget.js:309
msgid "since last week"
-msgstr ""
+msgstr "siden forrige uke"
#: frappe/public/js/frappe/widgets/number_card_widget.js:311
msgid "since last year"
-msgstr ""
+msgstr "siden i fjor"
#: frappe/public/js/frappe/widgets/number_card_widget.js:308
msgid "since yesterday"
@@ -30829,19 +30998,19 @@ msgstr "startet"
#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
-msgstr ""
+msgstr "starter installasjonen..."
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
-msgstr ""
+msgstr "strengverdi, dvs. gruppe"
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
-msgstr ""
+msgstr "strengverdi, dvs. medlem"
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
@@ -30857,19 +31026,19 @@ msgstr "registrer"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr ""
+msgstr "stikkord… f.eks. #prosjekt"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr ""
+msgstr "tekst i dokumenttype (DocType)"
#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
-msgstr ""
+msgstr "dette skjemaet"
#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
-msgstr ""
+msgstr "dette burde ikke ødelegge"
#: frappe/templates/emails/download_data.html:9
msgid "to your browser"
@@ -30883,7 +31052,7 @@ msgstr "Twitter(X)"
#: frappe/public/js/frappe/change_log.html:7
msgid "updated to {0}"
-msgstr ""
+msgstr "oppdatert til {0}"
#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
@@ -30896,33 +31065,33 @@ msgstr "verdier atskilt med komma"
#. Label of the version_table (HTML) field in DocType 'Audit Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
-msgstr ""
+msgstr "version_table"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr ""
+msgstr "via tildelingsregel"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264
msgid "via Auto Repeat"
-msgstr ""
+msgstr "via automatisk gjentakelse"
#: frappe/core/doctype/data_import/importer.py:271
#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr ""
+msgstr "via dataimport"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
msgstr "via Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
-msgstr ""
+msgstr "via varsel"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr ""
+msgstr "via {0}"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -30936,13 +31105,13 @@ msgstr "vskode"
#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
-msgstr ""
+msgstr "ønsker tilgang til følgende detaljer fra kontoen din"
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
-msgstr ""
+msgstr "Når elementet klikkes, vil fokus settes til popover-en hvis den finnes"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -30996,28 +31165,28 @@ msgstr "{0} ${type}"
#: frappe/public/js/frappe/data_import/data_exporter.js:80
#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
msgid "{0} ({1})"
-msgstr ""
+msgstr "{0} ({1})"
#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr ""
+msgstr "{0} ({1}) (1 rad påkrevet)"
#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
-msgstr ""
+msgstr "{0} ({1}) - {2}%"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
msgid "{0} = {1}"
-msgstr ""
+msgstr "{0} = {1}"
#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr ""
+msgstr "{0} Kalender"
#: frappe/public/js/frappe/views/reports/report_view.js:575
msgid "{0} Chart"
-msgstr ""
+msgstr "{0} Diagram"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356
@@ -31026,11 +31195,11 @@ msgstr ""
msgid "{0} Dashboard"
msgstr "{0} oversiktspanel"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr ""
+msgstr "{0} Felt"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
@@ -31038,11 +31207,11 @@ msgstr "{0} Google Kalender-hendelser synkronisert."
#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr ""
+msgstr "{0} Google-kontakter synkronisert."
#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
-msgstr ""
+msgstr "{0} Likt"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
@@ -31053,23 +31222,23 @@ msgstr "{0} Liste"
#: frappe/public/js/frappe/list/list_settings.js:33
msgid "{0} List View Settings"
-msgstr ""
+msgstr "{0} Innstillinger for listevisning"
#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
-msgstr ""
+msgstr "{0} M"
#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
-msgstr ""
+msgstr "{0}-kart"
#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr ""
+msgstr "{0} Navn"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
-msgstr ""
+msgstr "{0}Har ikke lov til å endre {1} etter registrering fra {2} til {3}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
@@ -31077,13 +31246,13 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} Rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
-msgstr ""
+msgstr "{0} Rapporter"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr ""
+msgstr "{0} Innstillinger"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
@@ -31094,7 +31263,7 @@ msgstr "{0} Tre"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr ""
+msgstr "{0} Nettsidevisninger"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
@@ -31107,11 +31276,11 @@ msgstr "{0} lagt til"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268
msgid "{0} added 1 row to {1}"
-msgstr ""
+msgstr "{0} la til 1 rad til {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246
msgid "{0} added {1} rows to {2}"
-msgstr ""
+msgstr "{0} la til {1} rader til {2}"
#: frappe/public/js/frappe/form/controls/data.js:215
msgid "{0} already exists. Select another name"
@@ -31119,21 +31288,21 @@ msgstr "{0} finnes allerede. Velg et annet navn"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr ""
+msgstr "{0} allerede avmeldt"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr ""
+msgstr "{0} allerede avmeldt for {1} {2}"
#: frappe/utils/data.py:1765
msgid "{0} and {1}"
-msgstr ""
+msgstr "{0} og {1}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr ""
+msgstr "{0} er for øyeblikket {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} er påkrevd"
@@ -31143,16 +31312,16 @@ msgstr "{0} tildelte deg en ny oppgave {1} {2}"
#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr ""
+msgstr "{0} tilordnet {1}: {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
-msgstr ""
+msgstr "{0} lagt ved {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
-msgstr ""
+msgstr "{0} kan ikke være mer enn {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
@@ -31169,165 +31338,165 @@ msgstr "{0} kan ikke korrigeres fordi det ikke er avbrutt. Vennligst avbryt doku
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
-msgstr ""
+msgstr "{0} kan ikke være skjult og påkrevet uten noen standardverdi"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
-msgstr ""
+msgstr "{0} endret verdien for {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
-msgstr ""
+msgstr "{0} endret verdien for {1} {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
-msgstr ""
+msgstr "{0} endret verdiene for {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
-msgstr ""
+msgstr "{0} endret verdiene for {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
-msgstr ""
+msgstr "{0} endret {1} til {2}"
#: frappe/core/doctype/doctype/doctype.py:1606
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
-msgstr ""
+msgstr "{0} inneholder et ugyldig «Hent fra»-uttrykk. «Hent fra» kan ikke være selvrefererende."
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr ""
+msgstr "{0} opprettet"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
-msgstr ""
+msgstr "{0} opprettet dette"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343
msgctxt "Form timeline"
msgid "{0} created this document {1}"
-msgstr ""
+msgstr "{0} opprettet dette dokumentet {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr ""
+msgstr "{0} d"
#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr ""
+msgstr "{0} dager siden"
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr ""
+msgstr "{0} finnes ikke i rad {1}"
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr ""
+msgstr "{0} feltet kan ikke angis som unikt i {1}, siden det finnes ikke-unike eksisterende verdier"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
-msgstr "Filterfelt kan ikke inneholde backticks (`)."
+msgstr "{0} felt kan ikke inneholde backticks (`): {1}"
#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
-msgstr ""
+msgstr "{0} -formatet kunne ikke bestemmes fra verdiene i denne kolonnen. Standardverdien er {1}."
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
-msgstr ""
+msgstr "{0} fra {1} til {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
-msgstr ""
+msgstr "{0} fra {1} til {2} i rad #{3}"
#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr ""
+msgstr "{0} h"
#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr ""
+msgstr "{0} har allerede tildelt standardverdi for {1}."
#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
-msgstr ""
+msgstr "{0} har forlatt samtalen på {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr ""
+msgstr "{0} timer siden."
#: frappe/website/doctype/web_form/templates/web_form.html:155
msgid "{0} if you are not redirected within {1} seconds"
-msgstr ""
+msgstr "{0} hvis du ikke blir omdirigert innen {1} sekunder"
#: frappe/website/doctype/website_settings/website_settings.py:102
#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr ""
+msgstr "{0} i raden {1} kan ikke ha både URL og underordnede elementer"
#: frappe/core/doctype/doctype/doctype.py:935
msgid "{0} is a mandatory field"
-msgstr ""
+msgstr "{0} er et påkrevet felt"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
-msgstr ""
+msgstr "{0} er ikke en gyldig zip-fil"
#: frappe/core/doctype/doctype/doctype.py:1619
msgid "{0} is an invalid Data field."
-msgstr ""
+msgstr "{0} er et ugyldig datafelt."
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr ""
+msgstr "{0} er en ugyldig e-postadresse i 'Mottakere'"
#: frappe/public/js/frappe/views/reports/report_view.js:1470
msgid "{0} is between {1} and {2}"
-msgstr ""
+msgstr "{0} er mellom {1} og {2}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr ""
+msgstr "{0} er for øyeblikket {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1439
msgid "{0} is equal to {1}"
-msgstr ""
+msgstr "{0} er lik {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1459
msgid "{0} is greater than or equal to {1}"
-msgstr ""
+msgstr "{0} er større enn eller lik {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1449
msgid "{0} is greater than {1}"
-msgstr ""
+msgstr "{0} er større enn {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is less than or equal to {1}"
-msgstr ""
+msgstr "{0} er mindre enn eller lik {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1454
msgid "{0} is less than {1}"
-msgstr ""
+msgstr "{0} er mindre enn {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is like {1}"
-msgstr ""
+msgstr "{0} er som {1}"
#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr ""
+msgstr "{0} er påkrevet"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
-msgstr ""
+msgstr "{0} er ikke en undertabell av {1}"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
-msgstr ""
+msgstr "{0} ikke er et felt av dokumenttype (DocType) {1}"
#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
@@ -31335,199 +31504,199 @@ msgstr "{0} er ikke et format for råutskrift."
#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
-msgstr ""
+msgstr "{0} er ikke en gyldig kalender. Omdirigerer til standardkalender."
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
-msgstr ""
+msgstr "{0} er ikke et gyldig Cron-uttrykk."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr ""
+msgstr "{0} er ikke en gyldig dokumenttype (DocType) for dynamisk lenke"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
-msgstr ""
+msgstr "{0} er ikke en gyldig e-postadresse"
#: frappe/geo/doctype/country/country.py:30
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "{0} er ikke en gyldig ISO 3166 ALPHA-2-kode."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
-msgstr ""
+msgstr "{0} er ikke et gyldig navn"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
-msgstr ""
+msgstr "{0} er ikke et gyldig telefonnummer"
#: frappe/model/workflow.py:245
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr ""
+msgstr "{0} er ikke en gyldig arbeidsflyttilstand. Oppdater arbeidsflyten din og prøv på nytt."
#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
-msgstr ""
+msgstr "{0} er ikke en gyldig overordnet dokumenttype (DocType) for {1}"
#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
-msgstr ""
+msgstr "{0} er ikke et gyldig overordnet felt for {1}"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr ""
+msgstr "{0} er ikke et gyldig rapportformat. Rapportformat må være ett av følgende: {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
-msgstr ""
+msgstr "{0} er ikke en zip-fil"
#: frappe/core/doctype/user_invitation/user_invitation.py:182
msgid "{0} is not an allowed role for {1}"
-msgstr ""
+msgstr "{0} er ikke en tillatt rolle for {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1444
msgid "{0} is not equal to {1}"
-msgstr ""
+msgstr "{0} er ikke lik {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1491
msgid "{0} is not like {1}"
-msgstr ""
+msgstr "{0} er ikke som {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1485
msgid "{0} is not one of {1}"
-msgstr ""
+msgstr "{0} er ikke en av {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1495
msgid "{0} is not set"
-msgstr ""
+msgstr "{0} er ikke satt"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
-msgstr "{0} er nå standard utskriftsformat for {1} doctype"
+msgstr "{0} er nå standard utskriftsformat for {1} dokumenttype (DocType)"
#: frappe/public/js/frappe/views/reports/report_view.js:1478
msgid "{0} is one of {1}"
-msgstr ""
+msgstr "{0} er en av {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} er påkrevd"
#: frappe/public/js/frappe/views/reports/report_view.js:1494
msgid "{0} is set"
-msgstr ""
+msgstr "{0} er satt"
#: frappe/public/js/frappe/views/reports/report_view.js:1473
msgid "{0} is within {1}"
-msgstr ""
+msgstr "{0} er innenfor {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} elementer valgt"
#: frappe/core/doctype/user/user.py:1393
msgid "{0} just impersonated as you. They gave this reason: {1}"
-msgstr ""
+msgstr "{0} utga seg nettopp for å være deg. De oppga denne grunnen: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
-msgstr ""
+msgstr "{0} redigert dette sist "
#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr ""
+msgstr "{0} logget inn"
#: frappe/core/doctype/activity_log/feed.py:19
msgid "{0} logged out: {1}"
-msgstr ""
+msgstr "{0} logget ut: {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:27
msgid "{0} m"
-msgstr ""
+msgstr "{0} m"
#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr ""
+msgstr "{0} nevnte deg i en kommentar i {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:50
msgid "{0} minutes ago"
-msgstr ""
+msgstr "{0} minutter siden"
#: frappe/public/js/frappe/utils/pretty_date.js:68
msgid "{0} months ago"
-msgstr ""
+msgstr "{0} måneder siden"
#: frappe/model/document.py:1808
msgid "{0} must be after {1}"
-msgstr ""
+msgstr "{0} må være etter {1}"
#: frappe/model/document.py:1564
msgid "{0} must be beginning with '{1}'"
-msgstr ""
+msgstr "{0} må begynne med '{1}'"
#: frappe/model/document.py:1566
msgid "{0} must be equal to '{1}'"
-msgstr ""
+msgstr "{0} må være lik '{1}'"
#: frappe/model/document.py:1562
msgid "{0} must be none of {1}"
-msgstr ""
+msgstr "{0} må ikke være noen av {1}"
#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
-msgstr ""
+msgstr "{0} må være en av {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
-msgstr ""
+msgstr "{0} må angis først"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
-msgstr ""
+msgstr "{0} må være unik"
#: frappe/model/document.py:1568
msgid "{0} must be {1} {2}"
-msgstr ""
+msgstr "{0} må være {1} {2}"
#: frappe/core/doctype/language/language.py:79
msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
-msgstr ""
+msgstr "{0} må begynne og slutte med en bokstav og kan bare inneholde bokstaver, bindestrek eller understreking."
#: frappe/workflow/doctype/workflow/workflow.py:91
msgid "{0} not a valid State"
-msgstr ""
+msgstr "{0} ikke en gyldig tilstand"
#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr ""
+msgstr "{0} kan ikke gis nytt navn"
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr ""
+msgstr "{0} ikke funnet"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
-msgid "{0} of {1}"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:1213
+msgid "{0} of {1}"
+msgstr "{0} av {1}"
+
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
-msgstr ""
+msgstr "{0} av {1} ({2} rader med underordnede)"
#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
-msgstr ""
+msgstr "Bare {0} ."
#: frappe/utils/data.py:1747
msgid "{0} or {1}"
-msgstr ""
+msgstr "{0} eller {1}"
#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
@@ -31539,7 +31708,7 @@ msgstr "{0} poster blir ikke automatisk slettet."
#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
-msgstr ""
+msgstr "{0} oppbevares i {1} dager."
#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
@@ -31547,42 +31716,42 @@ msgstr "{0} poster slettet"
#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr ""
+msgstr "{0} oppføringer vil bli eksportert"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313
msgid "{0} removed 1 row from {1}"
-msgstr ""
+msgstr "{0} fjernet 1 rad fra {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
-msgstr ""
+msgstr "{0} fjernet vedlegg {1}"
#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
-msgstr ""
+msgstr "{0} fjernet sin tildeling."
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291
msgid "{0} removed {1} rows from {2}"
-msgstr ""
+msgstr "{0} fjernet {1} rader fra {2}"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
-msgstr ""
+msgstr "{0}-rollen har ikke tillatelse til noen dokumenttype (DocType)"
#: frappe/model/document.py:1799
msgid "{0} row #{1}:"
-msgstr ""
+msgstr "{0} rad #{1}:"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299
msgctxt "User removed rows from child table"
msgid "{0} rows from {1}"
-msgstr ""
+msgstr "{0} rader fra {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254
msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
-msgstr ""
+msgstr "{0} rader til {1}"
#: frappe/desk/query_report.py:666
msgid "{0} saved successfully"
@@ -31590,19 +31759,19 @@ msgstr "{0} lagret var vellykket"
#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr ""
+msgstr "{0} tildelte seg selv denne oppgaven: {1}"
#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr ""
+msgstr "{0} delte et dokument {1} {2} med deg"
#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr ""
+msgstr "{0} delte dette dokumentet med alle"
#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr ""
+msgstr "{0} delte dette dokumentet med {1}"
#: frappe/core/doctype/doctype/doctype.py:317
msgid "{0} should be indexed because it's referred in dashboard connections"
@@ -31610,7 +31779,7 @@ msgstr "{0} bør indekseres fordi det refereres til det i oversiktspanel-tilkobl
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149
msgid "{0} should not be same as {1}"
-msgstr ""
+msgstr "{0} kan ikke være samme som {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
@@ -31624,25 +31793,25 @@ msgstr "{0} registrerte dette dokumentet {1}"
#: frappe/email/doctype/email_group/email_group.py:71
#: frappe/email/doctype/email_group/email_group.py:142
msgid "{0} subscribers added"
-msgstr ""
+msgstr "{0} abonnenter lagt til"
#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
-msgstr ""
+msgstr "{0} for å slutte å motta e-post av denne typen"
#: frappe/public/js/frappe/form/controls/date_range.js:48
#: frappe/public/js/frappe/form/controls/date_range.js:64
#: frappe/public/js/frappe/form/formatters.js:238
msgid "{0} to {1}"
-msgstr ""
+msgstr "{0} til {1}"
#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr ""
+msgstr "{0} sluttet å dele dette dokumentet med {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
-msgstr ""
+msgstr "{0} oppdatert"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
@@ -31650,23 +31819,23 @@ msgstr "{0} verdier valgt"
#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
-msgstr ""
+msgstr "{0} så dette"
#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr ""
+msgstr "{0} w"
#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
-msgstr ""
+msgstr "{0} uker siden"
#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr ""
+msgstr "{0} y"
#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr ""
+msgstr "{0} uker siden"
#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
@@ -31676,17 +31845,17 @@ msgstr "{0} {1} lagt til"
msgid "{0} {1} added to Dashboard {2}"
msgstr "Ny {0} {1} lagt til i oversiktspanelet {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr ""
+msgstr "{0} {1} finnes allerede"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
-msgstr ""
+msgstr "{0} {1} kan ikke være \"{2}\". Det bør være en av \"{3}\""
#: frappe/utils/nestedset.py:353
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr ""
+msgstr "{0} {1} kan ikke være en bladnode siden den har underordnede"
#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
@@ -31698,51 +31867,51 @@ msgstr "{0} {1} er lenket til følgende registrerte dokumenter: {2}"
#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
-msgstr ""
+msgstr "{0} {1} ikke funnet"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Registrert post kan ikke slettes. Du må {2} Avbryte {3} den først."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
-msgstr ""
+msgstr "{0}, Rad {1}"
#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} fullført | La denne fanen være åpen til den er fullført."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr ""
+msgstr "{0}: '{1}' ({3}) vil bli avkortet, da maks tillatte tegn er {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Kan ikke angi Korriger uten å avbryte"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Kan ikke angi Korreksjon hvis den ikke kan registreres"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Kan ikke angi Registrert hvis den ikke kan registreres"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Kan ikke angi Avbryt uten å registrere"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
-msgstr ""
+msgstr "{0}: Kan ikke angi import uten å opprette"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Kan ikke angi Registrer, Avbryt, Korriger uten å skrive"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
+msgstr "{0}: Kan ikke angi import ettersom {1} ikke kan importeres"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
@@ -31750,35 +31919,35 @@ msgstr "{0}: Kunne ikke legge ved nytt gjentakende dokument. For å aktivere ved
#: frappe/core/doctype/doctype/doctype.py:1427
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr ""
+msgstr "{0}: Felt '{1}' kan ikke angis som unikt, da det har ikke-unike verdier"
#: frappe/core/doctype/doctype/doctype.py:1335
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr ""
+msgstr "{0}: Felt {1} på rad {2} kan ikke skjules og er påkrevet uten standard"
#: frappe/core/doctype/doctype/doctype.py:1294
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr ""
+msgstr "{0}: Felt {1} av typen {2} kan ikke være påkrevet "
#: frappe/core/doctype/doctype/doctype.py:1282
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr ""
+msgstr "{0}: Feltnavn {1} vises flere ganger i radene {2}"
#: frappe/core/doctype/doctype/doctype.py:1414
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr ""
+msgstr "{0}: Fieldtype {1} for {2} kan ikke være unik"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
-msgstr ""
+msgstr "{0}: Ingen basisrettigheter er angitt"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr ""
+msgstr "{0}: Bare én regel tillatt med samme rolle, nivå og {1}"
#: frappe/core/doctype/doctype/doctype.py:1316
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr ""
+msgstr "{0}: Alternativer må være en gyldig dokumenttype (DocType) for feltet {1} i raden {2}"
#: frappe/core/doctype/doctype/doctype.py:1305
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
@@ -31786,15 +31955,15 @@ msgstr "{0}: Påkrevde alternativer for feltet Lenke eller Tabell {1} i rad {2}"
#: frappe/core/doctype/doctype/doctype.py:1323
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr ""
+msgstr "{0}: Alternativene {1} må være de samme som navnet på dokumenttype (DocType) {2} for feltet {3}"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Andre tillatelsesregler kan også gjelde"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr ""
+msgstr "{0}: Rettigheter på nivå 0 må angis før høyere nivåer angis"
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
@@ -31802,24 +31971,24 @@ msgstr "{0}: Du kan øke grensen for feltet om nødvendig via {1}"
#: frappe/core/doctype/doctype/doctype.py:1269
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
-msgstr ""
+msgstr "{0}: feltnavn kan ikke settes til reservert nøkkelord {1}"
#: frappe/contacts/doctype/address/address.js:35
#: frappe/contacts/doctype/contact/contact.js:88
msgid "{0}: {1}"
-msgstr ""
+msgstr "{0}: {1}"
#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr ""
+msgstr "{0}: {1} er satt til tilstand {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
-msgstr ""
+msgstr "{0}: {1} vs {2}"
#: frappe/core/doctype/doctype/doctype.py:1435
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr ""
+msgstr "{0}:Fieldtype {1} for {2} kan ikke indekseres"
#: frappe/public/js/frappe/form/quick_entry.js:195
msgid "{1} saved"
@@ -31827,11 +31996,11 @@ msgstr "{1} lagret"
#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
-msgstr ""
+msgstr "{count} celle kopiert"
#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
-msgstr ""
+msgstr "{count} celler kopiert"
#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
@@ -31843,24 +32012,24 @@ msgstr "{count} rader valgt"
#: frappe/core/doctype/doctype/doctype.py:1489
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr ""
+msgstr "{{{0}}} er ikke et gyldig feltnavnmønster. Det må være {{field_name}}."
#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr ""
+msgstr "{} Fullført"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
-msgstr ""
+msgstr "{} Ugyldig python-kode på linje {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
-msgstr ""
+msgstr "{} Muligens ugyldig python-kode.
{}"
#. Count format of shortcut in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "{} Published"
-msgstr ""
+msgstr "{} Publisert"
#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
@@ -31868,18 +32037,18 @@ msgstr "{} støtter ikke automatisk sletting av loggfiler."
#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
-msgstr ""
+msgstr "{}-feltet kan ikke være tomt."
#: frappe/email/doctype/email_account/email_account.py:223
#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
-msgstr ""
+msgstr "{} er deaktivert. Den kan bare aktiveres hvis {} er merket av."
#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
-msgstr ""
+msgstr "{} er ikke en gyldig datostreng."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} ikke funnet i PATH! Dette er påkrevd for å få tilgang til konsollen."
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index ad9cf98215..3ceaf014e3 100644
--- a/frappe/locale/nl.po
+++ b/frappe/locale/nl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'In Global Search' niet toegestaan voor type {0} in rij {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}"
@@ -86,11 +86,11 @@ msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}"
msgid "'Recipients' not specified"
msgstr "'Ontvangers' niet gespecificeerd"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 is het hoogst"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Waar & 0 = Onwaar"
@@ -140,11 +140,11 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Agenda-evenement gesynchroniseerd."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 rapport"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 dag geleden"
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr "1 uur"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 uur geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 minuut geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 maand geleden"
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "1 seconde geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 week geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 jaar geleden"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "2 uur geleden"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "2 maanden geleden"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "2 weken geleden"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "2 jaren geleden"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 minuten geleden"
@@ -231,7 +231,7 @@ msgstr "4 uren"
msgid "5 Records"
msgstr "5 records"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 dagen geleden"
@@ -267,6 +267,16 @@ msgstr "
{0} is geen geldige URL"
msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "
Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "
Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,11 +578,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -694,7 +709,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -713,7 +728,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -737,7 +752,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -823,7 +838,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Toegang niet toegestaan vanaf dit IP-adres"
@@ -939,7 +954,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Acties"
@@ -996,7 +1011,7 @@ msgstr "Activiteitenlogboek"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1007,7 +1022,7 @@ msgstr "Activiteitenlogboek"
msgid "Add"
msgstr "Toevoegen"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1039,7 +1054,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1052,8 +1067,8 @@ msgid "Add Child"
msgstr "Onderliggende toevoegen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1147,7 +1162,7 @@ msgstr "Abonnees toevoegen"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1322,6 +1337,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1330,6 +1346,7 @@ msgstr "Adres"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adres Lijn 1"
@@ -1337,6 +1354,7 @@ msgstr "Adres Lijn 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1498,7 +1516,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1525,11 +1543,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1976,6 +1994,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2052,6 +2076,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2234,7 +2263,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Toewijzingsregel toepassen"
@@ -2319,7 +2348,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2355,7 +2384,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2363,7 +2392,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2418,6 +2447,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2427,7 +2462,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2570,7 +2605,7 @@ msgstr "opdrachten"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2650,7 +2685,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2666,7 +2701,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2688,11 +2723,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3550,15 +3585,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3782,7 +3817,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3842,7 +3877,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3850,7 +3885,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3868,7 +3903,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3917,11 +3952,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3965,11 +4000,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4032,8 +4067,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4045,11 +4080,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4057,7 +4092,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4073,7 +4108,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4102,11 +4137,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4378,11 +4413,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4411,6 +4446,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4437,7 +4473,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4514,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4709,7 +4745,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4764,7 +4800,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4820,11 +4856,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4851,7 +4887,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5066,8 +5102,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5115,7 +5151,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5140,7 +5176,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5159,7 +5195,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5204,8 +5240,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5256,6 +5292,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5319,7 +5359,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5408,7 +5448,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5417,7 +5457,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5441,7 +5481,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5494,13 +5534,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5532,13 +5573,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5552,7 +5593,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5586,12 +5627,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5599,7 +5640,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5622,8 +5663,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5639,7 +5680,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5649,7 +5690,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5986,7 +6027,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6021,7 +6062,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6040,7 +6081,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6271,7 +6312,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6302,7 +6343,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6672,13 +6713,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6711,7 +6752,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6725,7 +6766,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6767,12 +6808,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6808,7 +6849,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6816,7 +6857,7 @@ msgstr ""
msgid "Deleted!"
msgstr ""
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7269,10 +7310,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7696,13 +7741,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7747,15 +7792,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7897,7 +7942,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7930,7 +7975,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8026,7 +8071,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8130,8 +8175,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8143,7 +8188,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8153,7 +8198,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8182,7 +8227,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8200,7 +8245,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8302,7 +8347,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8347,6 +8392,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8365,6 +8412,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8484,6 +8533,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8595,7 +8645,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8638,7 +8688,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8646,7 +8696,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9074,7 +9124,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9102,9 +9152,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9124,19 +9174,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9285,7 +9335,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9311,12 +9361,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9374,13 +9424,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9573,7 +9623,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9581,7 +9631,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9737,7 +9787,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9820,7 +9870,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9838,7 +9888,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9851,7 +9901,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9867,11 +9917,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9911,7 +9961,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9919,7 +9969,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9947,7 +9997,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10013,7 +10063,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10021,7 +10071,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10030,11 +10080,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10048,8 +10098,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10088,11 +10138,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10169,7 +10219,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10217,8 +10267,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10299,7 +10353,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10406,7 +10460,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10501,7 +10555,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10542,7 +10596,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10786,7 +10840,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10848,12 +10902,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10913,7 +10967,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10928,7 +10982,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11135,10 +11189,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11333,14 +11383,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11400,7 +11446,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11505,7 +11551,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11634,7 +11680,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11670,7 +11716,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11782,7 +11828,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11942,7 +11988,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12039,9 +12085,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12269,8 +12315,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12357,11 +12403,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12391,7 +12437,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12619,15 +12665,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12674,7 +12721,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12785,7 +12832,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12823,8 +12870,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12858,7 +12905,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12974,7 +13021,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12984,7 +13031,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13028,12 +13075,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13087,7 +13134,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13101,11 +13148,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13122,7 +13169,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13145,7 +13192,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13153,19 +13200,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13173,11 +13220,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13193,23 +13240,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13221,11 +13268,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13233,11 +13280,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13274,23 +13321,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13394,7 +13445,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13447,6 +13498,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13473,8 +13528,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13530,7 +13590,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13566,7 +13626,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13772,11 +13832,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14066,7 +14126,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14074,10 +14134,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14165,8 +14228,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14312,7 +14379,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14362,7 +14429,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14390,7 +14457,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14407,7 +14474,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14700,7 +14767,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14751,7 +14818,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14771,7 +14838,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14914,7 +14981,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14922,7 +14989,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14975,7 +15042,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14994,7 +15061,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15098,7 +15165,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15174,7 +15244,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15186,11 +15256,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15372,7 +15442,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15396,7 +15466,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15615,7 +15685,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15631,6 +15701,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15701,7 +15776,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15737,6 +15812,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15762,7 +15842,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15938,10 +16018,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -15971,7 +16053,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16007,7 +16089,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16057,7 +16139,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16075,7 +16157,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16115,7 +16197,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16217,12 +16299,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16237,6 +16319,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16245,7 +16331,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16258,6 +16344,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16266,7 +16358,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16327,7 +16419,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16362,7 +16454,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16458,7 +16550,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16610,7 +16702,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16715,7 +16807,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16759,7 +16851,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16767,7 +16859,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16843,7 +16935,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16867,7 +16959,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16911,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16923,7 +17015,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16959,11 +17051,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16972,7 +17064,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17036,7 +17128,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17062,9 +17154,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17083,7 +17175,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17134,7 +17226,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17166,12 +17258,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17217,7 +17309,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17289,15 +17381,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17411,7 +17503,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17683,7 +17775,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17772,11 +17864,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17872,7 +17964,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17921,7 +18013,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17967,6 +18059,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17975,6 +18068,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18004,7 +18098,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18020,7 +18114,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18036,7 +18130,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18118,7 +18212,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18151,10 +18245,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18366,7 +18456,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18470,8 +18560,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18494,7 +18584,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18531,7 +18621,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18543,7 +18633,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18694,7 +18784,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18754,16 +18844,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18825,15 +18915,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18846,11 +18939,11 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18932,11 +19025,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18948,7 +19041,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -18988,7 +19081,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19004,11 +19097,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19017,7 +19110,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19132,7 +19225,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19140,15 +19233,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19172,7 +19265,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19202,7 +19295,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19222,7 +19315,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19337,7 +19430,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19365,6 +19458,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19373,7 +19467,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19388,6 +19482,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19436,7 +19534,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19571,13 +19669,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19647,7 +19745,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19686,7 +19784,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19704,7 +19802,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19828,11 +19926,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19849,11 +19947,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr ""
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19897,7 +20005,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20070,7 +20178,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20277,7 +20385,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20403,11 +20511,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20788,8 +20896,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20820,13 +20928,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21139,8 +21247,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21211,11 +21319,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21249,21 +21357,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21283,7 +21391,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21319,7 +21427,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21338,7 +21446,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21390,6 +21501,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21445,7 +21561,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21453,11 +21569,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21492,7 +21608,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21632,7 +21748,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21744,7 +21860,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21754,7 +21870,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21899,7 +22015,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21907,12 +22023,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21947,11 +22063,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21970,7 +22086,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22178,8 +22297,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22202,11 +22321,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22578,7 +22697,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22642,7 +22761,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22663,7 +22782,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22722,7 +22841,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22842,14 +22961,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22879,13 +22998,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23103,7 +23222,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23207,7 +23326,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23273,7 +23392,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23282,14 +23401,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23315,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23331,7 +23450,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23385,7 +23504,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23404,7 +23523,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23423,18 +23542,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23544,7 +23666,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23685,6 +23807,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23813,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24020,22 +24148,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example:
status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example:
status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example:
status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24043,13 +24171,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24057,7 +24185,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24317,7 +24445,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24384,8 +24512,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24417,7 +24545,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24433,7 +24561,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24551,6 +24679,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24686,7 +24815,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24716,7 +24845,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24814,7 +24943,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24828,6 +24957,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24836,10 +24966,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24849,7 +24980,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24897,7 +25028,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24947,7 +25078,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25162,7 +25293,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25473,7 +25604,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25688,7 +25819,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25703,7 +25834,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25756,7 +25887,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25786,7 +25917,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25857,7 +25988,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25868,7 +25999,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25880,7 +26011,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25941,12 +26072,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25970,11 +26101,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25986,7 +26117,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26043,7 +26174,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26051,6 +26182,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26076,6 +26211,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26094,7 +26234,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26136,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26171,7 +26311,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26221,7 +26361,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26229,7 +26369,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26371,9 +26511,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26634,7 +26776,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26709,7 +26851,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26835,7 +26977,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26956,7 +27098,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26992,7 +27134,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27154,7 +27296,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27247,7 +27389,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27350,7 +27492,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27359,7 +27501,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27375,7 +27517,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27422,7 +27564,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27488,8 +27630,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27523,7 +27665,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27557,6 +27699,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27615,7 +27762,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27772,11 +27919,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -27998,12 +28141,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28147,7 +28290,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28275,8 +28418,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28308,7 +28451,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28324,11 +28467,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28353,7 +28496,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28445,7 +28588,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28457,7 +28600,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28467,7 +28610,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28583,6 +28726,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28677,7 +28821,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29067,7 +29211,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29228,7 +29372,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace
{0} does not exist"
msgstr ""
@@ -29321,7 +29465,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29350,7 +29494,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29412,7 +29556,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29448,6 +29592,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29486,12 +29634,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29499,7 +29647,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29572,11 +29720,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29626,11 +29774,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29648,7 +29796,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29691,15 +29839,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29711,11 +29859,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29735,7 +29883,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29763,7 +29911,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29780,11 +29928,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29808,7 +29956,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29899,6 +30047,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29944,7 +30096,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30006,11 +30158,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30318,7 +30470,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30347,7 +30499,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30685,7 +30837,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30795,7 +30947,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30836,7 +30988,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30846,7 +30998,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30902,7 +31054,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30919,7 +31071,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30996,7 +31148,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31041,7 +31193,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31090,7 +31242,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31110,12 +31262,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31123,11 +31275,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31147,7 +31299,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31171,7 +31323,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31181,8 +31333,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31195,7 +31347,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31252,11 +31404,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31281,11 +31433,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31335,7 +31487,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31409,7 +31561,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31445,11 +31597,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31469,11 +31621,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31481,35 +31633,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31537,11 +31689,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31561,7 +31713,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31582,7 +31734,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31618,11 +31770,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31648,7 +31800,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index a16f4a3d12..28dd398c1c 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-13 01:21\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgstr ""
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "!="
-msgstr ""
+msgstr "!="
#. Description of the 'Org History Heading' (Data) field in DocType 'About Us
#. Settings'
@@ -51,7 +51,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
msgid "#{0}"
-msgstr ""
+msgstr "#{0}"
#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36
msgid "${values.doctype_name} has been added to queue for optimization"
@@ -59,12 +59,12 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "© Frappe Technologies Pvt. Ltd. and contributors"
-msgstr ""
+msgstr "© Frappe Technologies Pvt. Ltd. i współtwórcy"
#. Label of the head_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "<head> HTML"
-msgstr ""
+msgstr "<head> HTML"
#: frappe/public/js/form_builder/store.js:206
msgid "'In Global Search' is not allowed for field {0} of type {1}"
@@ -78,7 +78,7 @@ msgstr "'In Global Search' niedozwolone dla typu {0} w wierszu {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -86,13 +86,13 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
-msgstr ""
+msgstr "'{0}' nie jest prawidłowym numerem IBAN"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
-msgstr ""
+msgstr "'{0}' nie jest prawidłowym adresem URL"
#: frappe/core/doctype/doctype/doctype.py:1349
msgid "'{0}' not allowed for type {1} in row {2}"
@@ -100,7 +100,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:302
msgid "(Mandatory)"
-msgstr ""
+msgstr "(Obowiązkowy)"
#: frappe/model/rename_doc.py:703
msgid "** Failed: {0} to {1}: {2}"
@@ -122,118 +122,119 @@ msgstr "0 - Projekt; 1 - Wysłane; 2 - Anulowane"
msgid "0 is highest"
msgstr "0 jest najwyższą wartością"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
-msgstr ""
+msgstr "1 = Prawda i 0 = Fałsz"
#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "1 Currency = [?] Fraction\n"
"For e.g. 1 USD = 100 Cent"
-msgstr ""
+msgstr "1 Waluta = [?] Ułamek\n"
+"Np. 1 USD = 100 Centów"
#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
-msgstr ""
+msgstr "1 dzień"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
-msgstr ""
+msgstr "1 raport"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
-msgstr ""
+msgstr "1 dzień temu"
#: frappe/public/js/frappe/form/reminders.js:17
msgid "1 hour"
-msgstr ""
+msgstr "1 godzina"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
-msgstr ""
+msgstr "Godzinę temu"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
-msgstr ""
+msgstr "Minutę temu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
-msgstr ""
+msgstr "Miesiąc temu"
#: frappe/public/js/print_format_builder/PrintFormat.vue:3
msgid "1 of 2"
-msgstr ""
+msgstr "1 z 2"
#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr ""
+msgstr "1 rekord zostanie wyeksportowany"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320
msgctxt "User removed row from child table"
msgid "1 row from {0}"
-msgstr ""
+msgstr "1 wiersz od {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275
msgctxt "User added row to child table"
msgid "1 row to {0}"
-msgstr ""
+msgstr "1 wiersz do {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
-msgstr ""
+msgstr "Sekundę temu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
-msgstr ""
+msgstr "Tydzień temu"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
-msgstr ""
+msgstr "Rok temu"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
-msgstr ""
+msgstr "2 godziny temu"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
-msgstr ""
+msgstr "2 miesiące temu"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
-msgstr ""
+msgstr "2 tygodnie temu"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
-msgstr ""
+msgstr "2 lata temu"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
-msgstr ""
+msgstr "3 minuty temu"
#: frappe/public/js/frappe/form/reminders.js:16
msgid "30 minutes"
-msgstr ""
+msgstr "30 minut"
#: frappe/public/js/frappe/form/reminders.js:18
msgid "4 hours"
-msgstr ""
+msgstr "4 godziny"
#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
-msgstr ""
+msgstr "5 rekordów"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
-msgstr ""
+msgstr "5 dni temu"
#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
@@ -243,13 +244,13 @@ msgstr ""
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<"
-msgstr ""
+msgstr "<"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<="
-msgstr ""
+msgstr "<="
#. Description of the 'Generate Keys' (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -267,6 +268,16 @@ msgstr ""
msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "
Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "
Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -526,7 +537,18 @@ msgid "
* * * * *\n"
"* - Any value\n"
"/ - Step values\n"
"
\n"
-msgstr ""
+msgstr "
* * * * *\n"
+"┬ ┬ ┬ ┬ ┬ ┬\n"
+"│ │ │ │ │\n"
+"│ │ │ │ └ dzień tygodnia (0 - 6) (0 to niedziela)\n"
+"│ │ │ └───── miesiąc (1 - 12)\n"
+"│ │ └────────── dzień miesiąca (1 - 31)\n"
+"│ └─────────────── godzina (0 - 23)\n"
+"└───────────────────── minuta (0 - 59)\n\n"
+"---\n\n"
+"* - Dowolna wartość\n"
+"/ - Wartości kroków\n"
+"
\n"
#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
@@ -548,51 +570,56 @@ msgstr ""
#. Header text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "
Hi,"
-msgstr ""
+msgstr "
Witaj,"
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "
Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
-msgstr ""
+msgstr "
Ostrzeżenie: To pole jest generowane przez system i może zostać nadpisane przez przyszłą aktualizację. Zamiast tego zmodyfikuj je za pomocą {0}."
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
-msgstr ""
+msgstr "="
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
-msgstr ""
+msgstr ">"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
-msgstr ""
+msgstr ">="
#: frappe/core/doctype/doctype/doctype.py:1035
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
-msgstr ""
+msgstr "Nazwa DocType musi zaczynać się literą i może składać się wyłącznie z liter, cyfr, spacji, podkreśleń i myślników"
#. Description of a DocType
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:175
-msgid "A field with the name {0} already exists in {1}"
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/custom/doctype/custom_field/custom_field.py:175
+msgid "A field with the name {0} already exists in {1}"
+msgstr "Pole o nazwie {0} już istnieje w {1}"
+
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
-msgstr ""
+msgstr "Plik o tej samej nazwie {} już istnieje"
#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
-msgstr "Wykaz środków, które App klient będzie miał dostęp do gdy użytkownik na to pozwala.
np projekt"
+msgstr ""
#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
@@ -609,7 +636,7 @@ msgstr "Symbol waluty. Np. $"
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
-msgstr ""
+msgstr "Szablon dla pola {0} w {1} już istnieje"
#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -620,57 +647,57 @@ msgstr ""
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
-msgstr ""
+msgstr "Słowo samo w sobie jest łatwe do odgadnięcia."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
-msgstr ""
+msgstr "A0"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
-msgstr ""
+msgstr "A1"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
-msgstr ""
+msgstr "A2"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
-msgstr ""
+msgstr "A3"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr ""
+msgstr "A4"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
-msgstr ""
+msgstr "A5"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
-msgstr ""
+msgstr "A6"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
-msgstr ""
+msgstr "A7"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
-msgstr ""
+msgstr "A8"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
-msgstr ""
+msgstr "A9"
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -680,7 +707,7 @@ msgstr "WSZYSTKO"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr ""
+msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -695,11 +722,11 @@ msgstr "Punkt końcowy API"
#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint Args"
-msgstr "Argumenty API punktu końcowego"
+msgstr "Argumenty punktu końcowego API"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:102
msgid "API Endpoint Args should be valid JSON"
-msgstr ""
+msgstr "Argumenty punktu końcowego API powinny być prawidłowymi danymi JSON"
#. Label of the api_key (Data) field in DocType 'User'
#. Label of the api_key (Data) field in DocType 'Email Account'
@@ -707,7 +734,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -724,11 +751,11 @@ msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "API Key cannot be regenerated"
-msgstr ""
+msgstr "Klucz API nie może być ponownie wygenerowany"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
-msgstr ""
+msgstr "Klucze API"
#. Label of the api_logging_section (Section Break) field in DocType 'System
#. Settings'
@@ -750,28 +777,28 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "Tajny API"
+msgstr "Tajny klucz API"
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "ASC"
-msgstr ""
+msgstr "ROSNĄCO"
#. Label of a standard help item
#. Type: Action
#: frappe/hooks.py
msgid "About"
-msgstr ""
+msgstr "O programie"
#: frappe/www/about.html:11 frappe/www/about.html:18
msgid "About Us"
-msgstr ""
+msgstr "O Nas"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -787,77 +814,77 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.js:27
msgid "About {0} minute remaining"
-msgstr ""
+msgstr "Pozostało około {0} minuty"
#: frappe/core/doctype/data_import/data_import.js:28
msgid "About {0} minutes remaining"
-msgstr ""
+msgstr "Pozostało około {0} minut"
#: frappe/core/doctype/data_import/data_import.js:25
msgid "About {0} seconds remaining"
-msgstr ""
+msgstr "Pozostało około {0} sekund"
#: frappe/templates/emails/user_invitation.html:16
msgid "Accept Invitation"
-msgstr ""
+msgstr "Akceptuj zaproszenie"
#. Option for the 'Status' (Select) field in DocType 'User Invitation'
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "Accepted"
-msgstr ""
+msgstr "Zaakceptowano"
#. Label of the accepted_at (Datetime) field in DocType 'User Invitation'
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "Accepted At"
-msgstr ""
+msgstr "Zaakceptowano o"
#. Label of the access_control_section (Section Break) field in DocType 'Web
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Access Control"
-msgstr "Ustawienia dostępu"
+msgstr "Kontrola dostępu"
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
#: frappe/core/workspace/users/users.json
msgid "Access Log"
-msgstr ""
+msgstr "Log dostępu"
#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
#. Label of the access_token (Password) field in DocType 'Token Cache'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Access Token"
-msgstr "Dostęp za pomocą Tokenu"
+msgstr "Token dostępu"
#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Access Token URL"
-msgstr "Uzyskaj dostęp do adresu URL tokenu"
+msgstr "Adres URL tokenu dostępowego"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
-msgstr ""
+msgstr "Dostęp niedozwolony z tego adresu IP"
#. Label of the account_section (Section Break) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Account"
-msgstr ""
+msgstr "Konto"
#. Label of the account_deletion_settings_section (Section Break) field in
#. DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
-msgstr ""
+msgstr "Ustawienia usuwania konta"
#. Name of a role
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Accounts Manager"
-msgstr ""
+msgstr "Menedżer kont"
#. Name of a role
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -865,11 +892,11 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Accounts User"
-msgstr ""
+msgstr "Użytkownik kont"
#: frappe/public/js/frappe/form/dashboard.js:510
msgid "Accurate count can not be fetched, click here to view all documents"
-msgstr ""
+msgstr "Nie można pobrać dokładnej liczby, kliknij tutaj, aby wyświetlić wszystkie dokumenty"
#. Label of the action (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -888,7 +915,7 @@ msgstr ""
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
msgid "Action"
-msgstr ""
+msgstr "Akcja"
#. Label of the action (Small Text) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
@@ -898,11 +925,11 @@ msgstr "Akcja / Trasa"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
-msgstr ""
+msgstr "Akcja ukończona"
#: frappe/model/document.py:1888
msgid "Action Failed"
-msgstr ""
+msgstr "Akcja nie powiodła się"
#. Label of the action_label (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -952,14 +979,14 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
-msgstr ""
+msgstr "Akcje"
#. Label of the activate (Check) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
-msgstr ""
+msgstr "Aktywuj"
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
@@ -971,12 +998,12 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/workflow/doctype/workflow/workflow_list.js:5
msgid "Active"
-msgstr ""
+msgstr "Aktywny"
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Active Directory"
-msgstr ""
+msgstr "Usługa Active Directory"
#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
#. Settings'
@@ -989,14 +1016,14 @@ msgstr "Domeny aktywne"
#: frappe/desk/doctype/system_health_report/system_health_report.json
#: frappe/www/third_party_apps.html:34
msgid "Active Sessions"
-msgstr ""
+msgstr "Aktywne sesje"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
#: frappe/public/js/frappe/form/dashboard.js:22
#: frappe/public/js/frappe/form/footer/form_timeline.js:60
msgid "Activity"
-msgstr ""
+msgstr "Aktywność"
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -1005,11 +1032,11 @@ msgstr ""
#: frappe/core/workspace/build/build.json
#: frappe/core/workspace/users/users.json
msgid "Activity Log"
-msgstr ""
+msgstr "Log aktywności"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1018,41 +1045,41 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
-msgstr ""
+msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
-msgstr ""
+msgstr "Dodaj / Usuń kolumny"
#: frappe/core/doctype/user_permission/user_permission_list.js:4
msgid "Add / Update"
-msgstr ""
+msgstr "Dodaj / Aktualizuj"
#: frappe/core/page/permission_manager/permission_manager.js:442
msgid "Add A New Rule"
-msgstr ""
+msgstr "Dodaj nową regułę"
#: frappe/public/js/frappe/views/communication.js:601
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
-msgstr ""
+msgstr "Dodać załącznik"
#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Background Image"
-msgstr ""
+msgstr "Dodaj obraz tła"
#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
-msgstr ""
+msgstr "Dodaj obramowanie na dole"
#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
-msgstr ""
+msgstr "Dodaj obramowanie na górze"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1065,21 +1092,21 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
-msgstr ""
+msgstr "Dodaj kolumnę"
#: frappe/core/doctype/communication/communication.js:127
msgid "Add Contact"
-msgstr ""
+msgstr "Dodaj kontakt"
#: frappe/desk/doctype/event/event.js:38
msgid "Add Contacts"
-msgstr ""
+msgstr "Dodaj kontakty"
#. Label of the add_container (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1094,7 +1121,7 @@ msgstr "Dodaj niestandardowe tagi"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
-msgstr ""
+msgstr "Dodaj filtry"
#. Label of the add_shade (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1104,70 +1131,70 @@ msgstr "Dodaj szare tło"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
-msgstr ""
+msgstr "Dodaj grupę"
#: frappe/core/doctype/recorder/recorder.js:30
msgid "Add Indexes"
-msgstr ""
+msgstr "Dodaj indeksy"
#: frappe/public/js/frappe/form/grid.js:66
msgid "Add Multiple"
-msgstr ""
+msgstr "Dodaj wiele"
#: frappe/core/page/permission_manager/permission_manager.js:445
msgid "Add New Permission Rule"
-msgstr ""
+msgstr "Dodaj nową regułę uprawnień"
#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
msgid "Add Participants"
-msgstr ""
+msgstr "Dodaj uczestników"
#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Add Query Parameters"
-msgstr ""
+msgstr "Dodaj parametry zapytania"
#: frappe/core/doctype/user/user.py:819
msgid "Add Roles"
-msgstr ""
+msgstr "Dodaj role"
#: frappe/public/js/frappe/form/grid.js:66
msgid "Add Row"
-msgstr ""
+msgstr "Dodaj wiersz"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
-msgstr ""
+msgstr "Dodaj podpis"
#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Bottom"
-msgstr ""
+msgstr "Dodaj przestrzeń na dole"
#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
-msgstr ""
+msgstr "Dodaj przestrzeń na górze"
#: frappe/email/doctype/email_group/email_group.js:38
#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
-msgstr ""
+msgstr "Dodaj subskrybentów"
#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
-msgstr ""
+msgstr "Dodaj tagi"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
-msgstr ""
+msgstr "Dodaj tagi"
#: frappe/public/js/frappe/views/communication.js:433
msgid "Add Template"
-msgstr ""
+msgstr "Dodaj szablon"
#. Label of the add_total_row (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -1186,90 +1213,90 @@ msgstr "Dodaj link do usuwania subskrypcji"
#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
-msgstr ""
+msgstr "Dodaj uprawnienia użytkownika"
#. Label of the add_video_conferencing (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Add Video Conferencing"
-msgstr ""
+msgstr "Dodaj wideokonferencję"
#: frappe/public/js/frappe/ui/filters/filter_list.js:299
msgid "Add a Filter"
-msgstr ""
+msgstr "Dodaj filtr"
#: frappe/core/page/permission_manager/permission_manager_help.html:9
msgid "Add a New Role"
-msgstr ""
+msgstr "Dodaj nową rolę"
#: frappe/public/js/frappe/form/form_tour.js:211
msgid "Add a Row"
-msgstr ""
+msgstr "Dodaj wiersz"
#: frappe/templates/includes/comments/comments.html:30
#: frappe/templates/includes/comments/comments.html:47
msgid "Add a comment"
-msgstr ""
+msgstr "Dodaj komentarz"
#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
#: frappe/public/js/form_builder/components/Tabs.vue:192
msgid "Add a new section"
-msgstr ""
+msgstr "Dodaj nową sekcję"
#: frappe/public/js/frappe/form/form.js:193
msgid "Add a row above the current row"
-msgstr ""
+msgstr "Dodaj wiersz powyżej bieżącego wiersza"
#: frappe/public/js/frappe/form/form.js:205
msgid "Add a row at the bottom"
-msgstr ""
+msgstr "Dodaj wiersz na dole"
#: frappe/public/js/frappe/form/form.js:201
msgid "Add a row at the top"
-msgstr ""
+msgstr "Dodaj wiersz na górze"
#: frappe/public/js/frappe/form/form.js:197
msgid "Add a row below the current row"
-msgstr ""
+msgstr "Dodaj wiersz poniżej bieżącego wiersza"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
msgid "Add a {0} Chart"
-msgstr ""
+msgstr "Dodaj wykres {0}"
#: frappe/public/js/form_builder/components/Section.vue:271
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
msgid "Add column"
-msgstr ""
+msgstr "Dodaj kolumnę"
#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
msgid "Add field"
-msgstr ""
+msgstr "Dodaj pole"
#: frappe/public/js/form_builder/components/Sidebar.vue:49
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
-msgstr ""
+msgstr "Dodaj nową kartę"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
msgid "Add page break"
-msgstr ""
+msgstr "Dodaj podział strony"
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
-msgstr ""
+msgstr "Dodaj skrypt dla tabeli podrzędnej"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
msgid "Add section above"
-msgstr ""
+msgstr "Dodaj sekcję powyżej"
#: frappe/public/js/form_builder/components/Section.vue:265
msgid "Add section below"
-msgstr ""
+msgstr "Dodaj sekcję poniżej"
#: frappe/public/js/form_builder/components/Sidebar.vue:52
#: frappe/public/js/form_builder/components/Tabs.vue:157
msgid "Add tab"
-msgstr ""
+msgstr "Dodaj kartę"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
#: frappe/public/js/frappe/views/reports/query_report.js:252
@@ -1282,31 +1309,31 @@ msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
msgid "Add to table"
-msgstr ""
+msgstr "Dodaj do tabeli"
#: frappe/public/js/frappe/form/footer/form_timeline.js:99
msgid "Add to this activity by mailing to {0}"
-msgstr ""
+msgstr "Dodaj do tej aktywności, wysyłając wiadomość e-mail na adres {0}"
#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
msgid "Add {0}"
-msgstr ""
+msgstr "Dodaj {0}"
#: frappe/public/js/frappe/list/list_view.js:289
msgctxt "Primary action in list view"
msgid "Add {0}"
-msgstr ""
+msgstr "Dodaj {0}"
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Added"
-msgstr ""
+msgstr "Dodano"
#. Description of the '<head> HTML' (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
-msgstr "Dodano HTML w sekcji <head> strony internetowej, używane głównie do weryfikacji stron internetowych i SEO"
+msgstr ""
#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
@@ -1315,7 +1342,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:180
#: frappe/public/js/frappe/form/link_selector.js:202
msgid "Added {0} ({1})"
-msgstr ""
+msgstr "Dodano {0} ({1})"
#. Label of the additional_permissions (Section Break) field in DocType 'Custom
#. DocPerm'
@@ -1335,29 +1362,32 @@ msgstr "Dodatkowe uprawnienia"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
-msgstr ""
+msgstr "Adres"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
-msgstr ""
+msgstr "Linia adresu 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
-msgstr ""
+msgstr "Linia adresu 2"
#. Name of a DocType
#: frappe/contacts/doctype/address_template/address_template.json
msgid "Address Template"
-msgstr ""
+msgstr "Szablon adresu"
#. Label of the address_title (Data) field in DocType 'Address'
#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
@@ -1368,7 +1398,7 @@ msgstr "Tytuł adresu"
#: frappe/contacts/doctype/address/address.py:72
msgid "Address Title is mandatory."
-msgstr ""
+msgstr "Tytuł adresu jest obowiązkowy."
#. Label of the address_type (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -1379,30 +1409,30 @@ msgstr "Typ adresu"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address and other legal information you may want to put in the footer."
-msgstr "Adres i pewne informacje prawne, które załączyć można w stopce."
+msgstr "Adres i inne informacje prawne, które można umieścić w stopce."
#: frappe/contacts/doctype/address/address.py:206
msgid "Addresses"
-msgstr ""
+msgstr "Adresy"
#. Name of a report
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
msgid "Addresses And Contacts"
-msgstr ""
+msgstr "Adresy i kontakty"
#. Description of a DocType
#: frappe/custom/doctype/client_script/client_script.json
msgid "Adds a custom client script to a DocType"
-msgstr ""
+msgstr "Dodaje niestandardowy skrypt klienta do DocType"
#. Description of a DocType
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Adds a custom field to a DocType"
-msgstr ""
+msgstr "Dodaje niestandardowe pole do DocType"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Administration"
-msgstr ""
+msgstr "Administracja"
#. Name of a role
#: frappe/contacts/doctype/salutation/salutation.json
@@ -1424,7 +1454,7 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Administrator"
-msgstr ""
+msgstr "Administrator"
#: frappe/core/doctype/user/user.py:1226
msgid "Administrator Logged In"
@@ -1454,7 +1484,7 @@ msgstr "Zaawansowana kontrola"
#: frappe/public/js/frappe/form/controls/link.js:339
#: frappe/public/js/frappe/form/controls/link.js:341
msgid "Advanced Search"
-msgstr ""
+msgstr "Wyszukiwanie zaawansowane"
#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1464,7 +1494,7 @@ msgstr "Zaawansowane ustawienia"
#: frappe/public/js/frappe/ui/filters/filter.js:64
#: frappe/public/js/frappe/ui/filters/filter.js:70
msgid "After"
-msgstr ""
+msgstr "Po"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -1479,22 +1509,22 @@ msgstr "Po usunięciu"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Discard"
-msgstr ""
+msgstr "Po odrzuceniu"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
-msgstr ""
+msgstr "Po wstawieniu"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Rename"
-msgstr ""
+msgstr "Po zmianie nazwy"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Save"
-msgstr "Po zapisaniu"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -1511,7 +1541,7 @@ msgstr ""
msgid "After Submit"
msgstr "Po przesłaniu"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1538,11 +1568,11 @@ msgstr "Alarm"
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1990,6 +2020,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2066,9 +2102,14 @@ msgstr "Zmiana niedozwolona"
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
-msgstr ""
+msgstr "Wystąpił błąd podczas ustawiania domyślnych ustawień sesji"
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -2145,7 +2186,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "App"
-msgstr ""
+msgstr "Aplikacja"
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -2168,7 +2209,7 @@ msgstr ""
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
-msgstr ""
+msgstr "Nazwa aplikacji"
#. Label of the app_name (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2248,14 +2289,14 @@ msgstr "Data zastosowania"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
-msgstr ""
+msgstr "Zastosuj filtry"
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
@@ -2309,7 +2350,7 @@ msgstr ""
#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619 frappe/www/me.html:80
msgid "Apps"
-msgstr ""
+msgstr "Aplikacje"
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
@@ -2333,7 +2374,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2344,7 +2385,7 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
-msgstr ""
+msgstr "Czy jesteś pewien, że chcesz usunąć ten załącznik?"
#: frappe/public/js/form_builder/components/Section.vue:197
msgctxt "Confirmation dialog message"
@@ -2369,7 +2410,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2377,7 +2418,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2395,7 +2436,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
-msgstr ""
+msgstr "Czy na pewno chcesz usunąć filtr {0}?"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
@@ -2432,6 +2473,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2441,7 +2488,7 @@ msgstr "Przypisz warunek"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2584,7 +2631,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2664,7 +2711,7 @@ msgstr "Dołączony do pola"
msgid "Attached To Name"
msgstr "Przydzielony do nazwy"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2680,7 +2727,7 @@ msgstr "Załącznik"
msgid "Attachment Limit (MB)"
msgstr "Limit załącznik (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2700,13 +2747,13 @@ msgstr "Usunięto Attachment"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
-msgstr ""
+msgstr "Załączniki"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2962,7 +3009,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/public/js/frappe/ui/theme_switcher.js:69
msgid "Automatic"
-msgstr ""
+msgstr "Automatyczny"
#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
@@ -2979,7 +3026,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_view.js:131
msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
-msgstr ""
+msgstr "Automatycznie zastosowano filtr dla najnowszych danych. Możesz wyłączyć to działanie w ustawieniach widoku listy."
#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3246,7 +3293,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Barcode"
-msgstr ""
+msgstr "Kod kreskowy"
#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -3290,7 +3337,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
-msgstr ""
+msgstr "Przed"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3345,7 +3392,7 @@ msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Beginner"
-msgstr ""
+msgstr "Początkujący"
#: frappe/public/js/frappe/form/link_selector.js:29
msgid "Beginning with"
@@ -3362,7 +3409,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:27
msgid "Between"
-msgstr ""
+msgstr "Pomiędzy"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -3511,7 +3558,7 @@ msgstr "Okruszki"
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:36
msgid "Browser"
-msgstr ""
+msgstr "Przeglądarka"
#. Label of the browser_version (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -3564,15 +3611,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3663,7 +3710,7 @@ msgstr "Pomiń ograniczony adres IP Sprawdź, czy uwierzytelnianie dwuskładniko
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Ominięcie dwóch czynników Auth dla użytkowników logujących się z ograniczonego adresu IP"
+msgstr ""
#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
#. DocType 'System Settings'
@@ -3796,11 +3843,11 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
-msgstr ""
+msgstr "Kampania"
#. Label of the campaign_description (Small Text) field in DocType 'UTM
#. Campaign'
@@ -3856,7 +3903,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3864,7 +3911,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3882,7 +3929,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3900,7 +3947,7 @@ msgstr ""
#: frappe/public/js/frappe/model/indicator.js:78
#: frappe/public/js/frappe/ui/filters/filter.js:540
msgid "Cancelled"
-msgstr ""
+msgstr "Anulowano"
#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
@@ -3931,11 +3978,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3979,11 +4026,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4046,8 +4093,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4059,11 +4106,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4071,7 +4118,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4087,7 +4134,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4116,11 +4163,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4165,7 +4212,7 @@ msgstr "Karty"
#: frappe/public/js/frappe/views/interaction.js:72
#: frappe/website/doctype/help_article/help_article.json
msgid "Category"
-msgstr ""
+msgstr "Kategoria"
#. Label of the category_description (Text) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
@@ -4326,7 +4373,7 @@ msgstr "Czat"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Czek"
+msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:99
msgid "Check Request URL"
@@ -4392,11 +4439,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4425,6 +4472,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Wybierz metodę uwierzytelniania, która będzie używana przez wszystkich użytkowników"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4451,14 +4499,14 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:287
msgid "Clear Cache and Reload"
-msgstr ""
+msgstr "Wyczyść pamięć podręczną i przeładuj"
#: frappe/core/doctype/error_log/error_log_list.js:12
msgid "Clear Error Logs"
@@ -4528,24 +4576,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4716,17 +4764,17 @@ msgstr ""
#: frappe/public/js/frappe/ui/sidebar.html:11
#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Collapse"
-msgstr ""
+msgstr "Zwiń"
#: frappe/public/js/frappe/form/controls/code.js:184
msgctxt "Shrink code field."
msgid "Collapse"
-msgstr ""
+msgstr "Zwiń"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
-msgstr ""
+msgstr "Zwiń wszystko"
#. Label of the collapsible (Check) field in DocType 'DocField'
#. Label of the collapsible (Check) field in DocType 'Custom Field'
@@ -4743,7 +4791,7 @@ msgstr "Składany"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "Składany Zależy od"
+msgstr ""
#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -4778,14 +4826,14 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
#: frappe/website/doctype/social_link_settings/social_link_settings.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Color"
-msgstr ""
+msgstr "Kolor"
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
@@ -4834,11 +4882,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4858,14 +4906,14 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr ""
+msgstr "Kolumny"
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
msgstr "Kolumny / Pola"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5080,8 +5128,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5129,7 +5177,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5154,7 +5202,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5173,7 +5221,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5218,8 +5266,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5270,6 +5318,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5333,7 +5385,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5404,7 +5456,7 @@ msgstr ""
#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
-msgstr ""
+msgstr "Skopiowano do schowka."
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93
msgid "Copy Link"
@@ -5422,7 +5474,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5431,9 +5483,9 @@ msgstr ""
msgid "Copyright"
msgstr "Prawa autorskie"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
-msgstr ""
+msgstr "Nie można dostosować podstawowych typów DocTyp."
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
@@ -5455,7 +5507,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5508,13 +5560,14 @@ msgstr "Licznik"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
-msgstr ""
+msgstr "Kraj"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5546,13 +5599,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5566,7 +5619,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5600,12 +5653,12 @@ msgstr "Utwórz dziennik"
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5613,7 +5666,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5636,8 +5689,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5653,7 +5706,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5663,7 +5716,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5756,7 +5809,7 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Currency"
-msgstr ""
+msgstr "Waluta"
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
@@ -5822,7 +5875,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/public/js/frappe/form/reminders.js:20
msgid "Custom"
-msgstr ""
+msgstr "Niestandardowy"
#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -6000,7 +6053,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6033,12 +6086,12 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
-msgstr ""
+msgstr "Dostosuj"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
-msgstr ""
+msgstr "Dostosuj"
#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
@@ -6054,18 +6107,18 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
-msgstr ""
+msgstr "Dostosuj formularz"
#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
-msgstr ""
+msgstr "Dostosuj formularz - {0}"
#. Name of a DocType
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr ""
+msgstr "Dostosuj pole formularza"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -6095,7 +6148,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "DESC"
-msgstr ""
+msgstr "MALEJĄCO"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -6165,7 +6218,7 @@ msgstr "Ciemny kolor"
#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
-msgstr ""
+msgstr "Ciemny motyw"
#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -6258,7 +6311,7 @@ msgstr "Pulpity nawigacyjne"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr ""
+msgstr "Dane"
#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
@@ -6285,7 +6338,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6316,7 +6369,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6348,7 +6401,7 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
-msgstr ""
+msgstr "Data"
#. Label of the date_format (Select) field in DocType 'Language'
#. Label of the date_format (Select) field in DocType 'System Settings'
@@ -6493,7 +6546,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Default App"
-msgstr ""
+msgstr "Domyślna aplikacja"
#. Label of the default_email_template (Link) field in DocType 'DocType'
#. Label of the default_email_template (Link) field in DocType 'Customize Form'
@@ -6589,12 +6642,12 @@ msgstr ""
#. Label of the default_role (Link) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
-msgstr ""
+msgstr "Domyślna rola użytkownika"
#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
-msgstr ""
+msgstr "Domyślny typ użytkownika"
#. Label of the default (Text) field in DocType 'Custom Field'
#. Label of the default_value (Data) field in DocType 'Property Setter'
@@ -6686,13 +6739,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6700,7 +6753,7 @@ msgstr ""
#: frappe/website/doctype/web_form/templates/web_form.html:52
msgctxt "Button in web form"
msgid "Delete"
-msgstr ""
+msgstr "Usuń"
#: frappe/www/me.html:65
msgid "Delete Account"
@@ -6725,7 +6778,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6739,7 +6792,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6781,12 +6834,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6822,7 +6875,7 @@ msgstr ""
msgid "Deleted Name"
msgstr "Nazwa usunięte"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6830,7 +6883,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Usunięte!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -6891,7 +6944,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Dependencies & Licenses"
-msgstr ""
+msgstr "Zależności i licencje"
#. Label of the depends_on (Code) field in DocType 'Custom Field'
#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
@@ -7283,10 +7336,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7375,7 +7432,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:164
#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
msgid "DocType"
-msgstr ""
+msgstr "DocType"
#: frappe/core/doctype/doctype/doctype.py:1578
msgid "DocType
{0} provided for the field
{1} must have atleast one Link field"
@@ -7710,13 +7767,13 @@ msgstr "Tytuł dokumentu"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7761,15 +7818,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7911,7 +7968,7 @@ msgstr "Pączek"
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7944,7 +8001,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -7978,7 +8035,7 @@ msgstr "Wn"
#: frappe/public/js/frappe/model/indicator.js:73
#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
-msgstr ""
+msgstr "Wersja robocza"
#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
@@ -8040,7 +8097,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8144,8 +8201,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8157,7 +8214,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8167,7 +8224,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8196,7 +8253,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8214,7 +8271,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8316,7 +8373,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8361,6 +8418,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8379,9 +8438,11 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#. Label of a Link in the Tools Workspace
#. Label of the email_account (Link) field in DocType 'Communication'
@@ -8399,7 +8460,7 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
-msgstr ""
+msgstr "Konto e-mail"
#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
@@ -8450,7 +8511,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
-msgstr ""
+msgstr "Domena poczty e-mail"
#. Name of a DocType
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
@@ -8498,6 +8559,7 @@ msgid "Email IDs"
msgstr "E-mail identyfikatory"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8609,7 +8671,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8652,7 +8714,7 @@ msgstr "Wiadomości e-mail będą wysyłane z następnymi możliwymi działaniam
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8660,7 +8722,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9037,7 +9099,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr ""
+msgstr "Równa się"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -9088,7 +9150,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9116,9 +9178,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9138,19 +9200,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9205,7 +9267,7 @@ msgstr "Typ wydarzenia"
#: frappe/public/js/frappe/ui/notifications/notifications.js:56
msgid "Events"
-msgstr ""
+msgstr "Wydarzenia"
#: frappe/desk/doctype/event/event.py:278
msgid "Events in Today's Calendar"
@@ -9299,7 +9361,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9325,12 +9387,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9388,13 +9450,13 @@ msgstr "Czas wygaśnięcia strony z obrazem QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9587,7 +9649,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9595,7 +9657,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9751,11 +9813,11 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
-msgstr ""
+msgstr "Pole"
#: frappe/core/doctype/doctype/doctype.py:418
msgid "Field \"route\" is mandatory for Web Views"
@@ -9834,7 +9896,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9852,10 +9914,10 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
-msgstr ""
+msgstr "Nazwa pola"
#: frappe/core/doctype/doctype/doctype.py:271
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
@@ -9865,7 +9927,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9881,11 +9943,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9918,14 +9980,14 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Fields"
-msgstr ""
+msgstr "Pola"
#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
msgstr "Pola Multicheck"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9933,7 +9995,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9961,7 +10023,7 @@ msgstr "Typ pola"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -9972,7 +10034,7 @@ msgstr ""
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "File"
-msgstr ""
+msgstr "Plik"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498
msgid "File \"{0}\" was skipped because of invalid file type"
@@ -10027,7 +10089,7 @@ msgstr "URL Pliku"
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10035,7 +10097,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10044,11 +10106,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10057,19 +10119,19 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Files"
-msgstr ""
+msgstr "Pliki"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:197
msgid "Filter"
-msgstr ""
+msgstr "Filtr"
#: frappe/public/js/frappe/list/list_sidebar.html:36
msgid "Filter By"
@@ -10102,11 +10164,11 @@ msgstr ""
msgid "Filter Values"
msgstr "Filtruj wartości"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10183,7 +10245,7 @@ msgstr "Sekcja filtrów"
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10231,8 +10293,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10313,7 +10379,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10420,7 +10486,7 @@ msgstr ""
msgid "Footer HTML"
msgstr "Stopka HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10515,7 +10581,7 @@ msgstr ""
msgid "For Value"
msgstr "Dla wartości"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10556,7 +10622,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10590,7 +10656,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Wymuś użytkownikowi zresetowanie hasła"
+msgstr "Wymuś zresetowanie hasła przez użytkownika"
#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
#. 'System Settings'
@@ -10600,7 +10666,7 @@ msgstr ""
#: frappe/www/login.html:37
msgid "Forgot Password?"
-msgstr ""
+msgstr "Zapomniałeś hasła?"
#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
@@ -10614,7 +10680,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:96
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
-msgstr ""
+msgstr "Formularz"
#. Label of the form_builder (HTML) field in DocType 'DocType'
#. Label of the form_builder (HTML) field in DocType 'Customize Form'
@@ -10705,19 +10771,19 @@ msgstr "Frappe"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Frappe Blog"
-msgstr ""
+msgstr "Blog Frappe"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Frappe Forum"
-msgstr ""
+msgstr "Forum Frappe"
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Frappe Framework"
-msgstr ""
+msgstr "Frappe Framework"
#: frappe/public/js/frappe/ui/theme_switcher.js:59
msgid "Frappe Light"
-msgstr ""
+msgstr "Jasny Frappe"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -10737,7 +10803,7 @@ msgstr ""
#. Type: Route
#: frappe/hooks.py
msgid "Frappe Support"
-msgstr ""
+msgstr "Wsparcie od Frappe"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Frappe page builder using components"
@@ -10800,7 +10866,7 @@ msgstr ""
msgid "From Date Field"
msgstr "Od pola daty"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10862,12 +10928,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10927,7 +10993,7 @@ msgstr ""
msgid "Generate Keys"
msgstr "Generuj klucze"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10942,7 +11008,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11050,7 +11116,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:122
msgid "Global Shortcuts"
-msgstr ""
+msgstr "Skróty globalne"
#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
@@ -11149,10 +11215,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11325,7 +11387,7 @@ msgstr ""
#: frappe/core/doctype/doctype_link/doctype_link.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Group"
-msgstr ""
+msgstr "Grupa"
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -11347,14 +11409,10 @@ msgstr "Grupuj według typu"
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11414,13 +11472,13 @@ msgstr "GG: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11519,7 +11577,7 @@ msgstr ""
msgid "Header HTML"
msgstr "Nagłówek HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11592,7 +11650,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/navbar.html:87
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
-msgstr ""
+msgstr "Pomoc"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -11648,7 +11706,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11684,7 +11742,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11796,9 +11854,9 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr "Ukryj standardowego menu"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
-msgstr ""
+msgstr "Ukryj tagi"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
@@ -11866,7 +11924,7 @@ msgstr ""
#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
#: frappe/www/message.html:29
msgid "Home"
-msgstr ""
+msgstr "Strona główna"
#. Label of the home_page (Data) field in DocType 'Role'
#. Label of the home_page (Data) field in DocType 'Website Settings'
@@ -11878,7 +11936,7 @@ msgstr "Strona główna"
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Ustawienia domowe"
+msgstr ""
#: frappe/core/doctype/file/test_file.py:321
#: frappe/core/doctype/file/test_file.py:323
@@ -11956,7 +12014,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12053,9 +12111,9 @@ msgstr "Jeśli zastosowano ścisłe uprawnienia użytkownika i zaznaczono uprawn
msgid "If Checked workflow status will not override status in list view"
msgstr "Jeśli Zaznaczone stan przepływu pracy nie zastąpi statusu w widoku listy"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12272,7 +12330,7 @@ msgstr "Ignoruj filtr XSS"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr "Ignoruj załączników ponad tym rozmiarze"
+msgstr ""
#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
@@ -12283,8 +12341,8 @@ msgstr "Ignorowane aplikacje"
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12371,11 +12429,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12405,7 +12463,7 @@ msgstr "Bezwarunkowy"
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12414,7 +12472,7 @@ msgstr ""
#. Label of a shortcut in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Import Data"
-msgstr ""
+msgstr "Import danych"
#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
@@ -12633,15 +12691,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12688,7 +12747,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12799,7 +12858,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12835,10 +12894,10 @@ msgstr "Wstaw Styl"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Instagram"
-msgstr ""
+msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Zainstaluj {0} z Marketplace"
@@ -12857,7 +12916,7 @@ msgstr ""
#: frappe/core/doctype/installed_applications/installed_applications.js:18
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Installed Apps"
-msgstr ""
+msgstr "Zainstalowane aplikacje"
#. Label of the instructions (HTML) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -12872,7 +12931,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12917,7 +12976,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Integrations"
-msgstr ""
+msgstr "Integracje"
#. Description of the 'Delivery Status' (Select) field in DocType
#. 'Communication'
@@ -12988,7 +13047,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12998,7 +13057,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13042,12 +13101,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13101,7 +13160,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13115,11 +13174,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13136,7 +13195,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13159,7 +13218,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13167,19 +13226,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13187,11 +13246,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13207,23 +13266,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13235,11 +13294,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13247,11 +13306,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13288,23 +13347,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13319,7 +13382,7 @@ msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
msgid "Invalid username or password"
-msgstr ""
+msgstr "Nieprawidłowa nazwa użytkownika lub hasło"
#: frappe/model/naming.py:176
msgid "Invalid value specified for UUID: {}"
@@ -13396,7 +13459,7 @@ msgstr ""
#. Label of the is_attachments_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr "Czy Załączniki Folder"
+msgstr ""
#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
@@ -13408,7 +13471,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13461,6 +13524,10 @@ msgstr "Czy Folder"
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13487,8 +13554,13 @@ msgstr "Jest stanem opcjonalnym"
msgid "Is Primary"
msgstr "Jest podstawowa"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Jest podstawowym kontaktem"
@@ -13544,7 +13616,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13580,7 +13652,7 @@ msgstr "Standardowy"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13786,11 +13858,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -13830,7 +13902,7 @@ msgstr "Klucz"
#. Type: Action
#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
msgid "Keyboard Shortcuts"
-msgstr ""
+msgstr "Skróty klawiszowe"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -14058,7 +14130,7 @@ msgstr ""
#: frappe/website/doctype/top_bar_item/top_bar_item.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Label"
-msgstr ""
+msgstr "Etykieta"
#. Label of the label_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
@@ -14080,7 +14152,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14088,13 +14160,16 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
-msgstr ""
+msgstr "Język"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
@@ -14179,8 +14254,12 @@ msgstr "W zeszłym miesiącu"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14326,7 +14405,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14376,7 +14455,7 @@ msgstr "List"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14404,7 +14483,7 @@ msgstr "Nazwa nagłówka"
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14421,7 +14500,7 @@ msgstr "Nagłówek w HTMLu"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14463,7 +14542,7 @@ msgstr "Jasny kolor"
#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
-msgstr ""
+msgstr "Jasny motyw"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -14658,7 +14737,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "LinkedIn"
-msgstr ""
+msgstr "LinkedIn"
#. Label of the links (Table) field in DocType 'Address'
#. Label of the links (Table) field in DocType 'Contact'
@@ -14712,9 +14791,9 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "List Settings"
-msgstr ""
+msgstr "Ustawienia listy"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14765,7 +14844,7 @@ msgid "Load Balancing"
msgstr "Równoważenie obciążenia"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14785,7 +14864,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14866,7 +14945,7 @@ msgstr ""
#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.py:182
msgid "Log out"
-msgstr ""
+msgstr "Wyloguj"
#: frappe/handler.py:119
msgid "Logged Out"
@@ -14914,7 +14993,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Login Page"
-msgstr ""
+msgstr "Strona logowania"
#: frappe/www/login.py:156
msgid "Login To {0}"
@@ -14928,7 +15007,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14936,7 +15015,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14959,7 +15038,7 @@ msgstr ""
#: frappe/www/login.html:64
msgid "Login to {0}"
-msgstr ""
+msgstr "Logowanie do {0}"
#: frappe/templates/includes/login/login.js:319
msgid "Login token required"
@@ -14967,7 +15046,7 @@ msgstr ""
#: frappe/www/login.html:126 frappe/www/login.html:210
msgid "Login with Email Link"
-msgstr ""
+msgstr "Logowanie przez link"
#: frappe/www/login.html:116
msgid "Login with Frappe Cloud"
@@ -14989,7 +15068,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -15008,7 +15087,7 @@ msgstr ""
msgid "Logout"
msgstr "Wyloguj"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15027,7 +15106,7 @@ msgstr "Wyloguj się ze wszystkich urządzeń po zmianie hasła"
#. Label of a Card Break in the Users Workspace
#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Logs"
-msgstr ""
+msgstr "Logi"
#. Name of a DocType
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
@@ -15050,15 +15129,15 @@ msgstr "Długi tekst"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
-msgstr ""
+msgstr "Wygląda na to, że nie zmieniłeś wartości"
#: frappe/www/third_party_apps.html:59
msgid "Looks like you haven’t added any third party apps."
-msgstr ""
+msgstr "Wygląda na to, że nie dodałeś żadnych aplikacji zewnętrznych."
#: frappe/public/js/frappe/ui/notifications/notifications.js:315
msgid "Looks like you haven’t received any notifications."
-msgstr ""
+msgstr "Wygląda na to, że nie otrzymałeś żadnych powiadomień."
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
@@ -15112,7 +15191,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Make „Nazwa” można przeszukiwać w Global Search"
@@ -15171,7 +15253,7 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Mandatory"
-msgstr ""
+msgstr "Obowiązkowy"
#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
@@ -15188,7 +15270,7 @@ msgstr "Obowiązkowe zależy od"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15200,11 +15282,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15272,7 +15354,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:45
msgid "Mark all as read"
-msgstr ""
+msgstr "Oznacz wszystko jako przeczytane"
#: frappe/core/doctype/communication/communication.js:78
#: frappe/core/doctype/communication/communication_list.js:19
@@ -15333,7 +15415,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Max Załączników"
+msgstr "Maksymalna liczba załączników"
#. Label of the max_file_size (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15386,13 +15468,13 @@ msgstr ""
msgid "Maximum"
msgstr "Maksymalny"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
-msgstr ""
+msgstr "Osiągnięto maksymalny limit załączników {0}."
#: frappe/model/rename_doc.py:689
msgid "Maximum {0} rows allowed"
@@ -15410,7 +15492,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15497,12 +15579,12 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
-msgstr ""
+msgstr "Wiadomość"
#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr ""
+msgstr "Wiadomość"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -15629,7 +15711,7 @@ msgstr "Metoda"
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15645,12 +15727,17 @@ msgstr ""
msgid "Middle Name"
msgstr "Drugie imię"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
-msgstr ""
+msgstr "Kamień milowy"
#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
@@ -15715,7 +15802,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15751,6 +15838,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15776,7 +15868,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15952,10 +16044,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Więcej informacji"
@@ -15985,7 +16079,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16021,7 +16115,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16071,7 +16165,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16089,11 +16183,11 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
-msgstr ""
+msgstr "Moje konto"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57
msgid "My Device"
@@ -16129,11 +16223,11 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
-msgstr ""
+msgstr "Nazwa"
#: frappe/integrations/doctype/webhook/webhook.js:29
msgid "Name (Doc Name)"
@@ -16231,15 +16325,15 @@ msgstr "Szablon paska nawigacyjnego"
msgid "Navbar Template Values"
msgstr "Wartości szablonu paska nawigacyjnego"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
-msgstr ""
+msgstr "Przejdź w dół listy"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
-msgstr ""
+msgstr "Przejdź w górę listy"
#: frappe/public/js/frappe/ui/page.js:175
msgid "Navigate to main content"
@@ -16251,6 +16345,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16259,7 +16357,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16272,6 +16370,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16280,7 +16384,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16289,7 +16393,7 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:15
msgid "New Activity"
-msgstr ""
+msgstr "Nowa aktywność"
#: frappe/public/js/frappe/form/templates/address_list.html:3
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5
@@ -16341,7 +16445,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16376,7 +16480,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16472,7 +16576,7 @@ msgstr "Wstawiam nową wartość"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16515,12 +16619,12 @@ msgstr ""
#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258
#: frappe/website/web_template/slideshow/slideshow.html:44
msgid "Next"
-msgstr ""
+msgstr "Następny"
#: frappe/public/js/frappe/ui/slides.js:359
msgctxt "Go to next slide"
msgid "Next"
-msgstr ""
+msgstr "Następny"
#: frappe/public/js/frappe/ui/filters/filter.js:684
msgid "Next 14 Days"
@@ -16624,20 +16728,20 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
-msgstr ""
+msgstr "Nie"
#: frappe/public/js/frappe/ui/filters/filter.js:546
msgctxt "Checkbox is not checked"
msgid "No"
-msgstr ""
+msgstr "Nie"
#: frappe/public/js/frappe/ui/messages.js:37
msgctxt "Dismiss confirmation dialog"
msgid "No"
-msgstr ""
+msgstr "Nie"
#: frappe/www/third_party_apps.html:56
msgid "No Active Sessions"
@@ -16727,9 +16831,9 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:315
msgid "No New notifications"
-msgstr ""
+msgstr "Brak nowych powiadomień"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16773,7 +16877,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16781,13 +16885,13 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
-msgstr ""
+msgstr "Brak tagów"
#: frappe/public/js/frappe/ui/notifications/notifications.js:442
msgid "No Upcoming Events"
-msgstr ""
+msgstr "Brak nadchodzących wydarzeń"
#: frappe/public/js/frappe/form/templates/address_list.html:43
msgid "No address added yet."
@@ -16857,7 +16961,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16881,7 +16985,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16925,7 +17029,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16937,7 +17041,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16973,11 +17077,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16986,7 +17090,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17050,7 +17154,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17076,9 +17180,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17097,12 +17201,12 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
msgid "Not Saved"
-msgstr ""
+msgstr "Nie zapisano"
#: frappe/core/doctype/error_log/error_log_list.js:7
msgid "Not Seen"
@@ -17148,7 +17252,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17170,7 +17274,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
msgid "Not found"
-msgstr ""
+msgstr "Nie znaleziono"
#: frappe/core/doctype/page/page.py:62
msgid "Not in Developer Mode"
@@ -17180,12 +17284,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17229,9 +17333,9 @@ msgstr "Uwaga: Aby uzyskać najlepsze wyniki, obrazy muszą być tego samego roz
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr "Uwaga: Wielokrotne sesje będą dozwolone w przypadku urządzeń mobilnych"
+msgstr "Uwaga: W przypadku urządzeń mobilnych będą dozwolone sesje wielokrotne"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17245,7 +17349,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "Nothing New"
-msgstr ""
+msgstr "Nic nowego"
#: frappe/public/js/frappe/form/undo_manager.js:43
msgid "Nothing left to redo"
@@ -17274,7 +17378,7 @@ msgstr ""
#: frappe/core/doctype/communication/mixins.py:142
#: frappe/email/doctype/notification/notification.json
msgid "Notification"
-msgstr ""
+msgstr "Powiadomienie"
#. Name of a DocType
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -17292,7 +17396,7 @@ msgstr ""
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/public/js/frappe/ui/notifications/notifications.js:37
msgid "Notification Settings"
-msgstr ""
+msgstr "Ustawienia powiadomień"
#. Name of a DocType
#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
@@ -17303,15 +17407,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17320,7 +17424,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:50
#: frappe/public/js/frappe/ui/notifications/notifications.js:187
msgid "Notifications"
-msgstr ""
+msgstr "Powiadomienia"
#: frappe/public/js/frappe/ui/notifications/notifications.js:299
msgid "Notifications Disabled"
@@ -17425,7 +17529,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17697,7 +17801,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17786,11 +17890,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17828,7 +17932,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
-msgstr ""
+msgstr "Otwórz Awesomebar"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
@@ -17848,7 +17952,7 @@ msgstr "Otwórz dokumenty"
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
-msgstr ""
+msgstr "Otwórz pomoc"
#. Label of the open_reference_document (Button) field in DocType 'Notification
#. Log'
@@ -17858,11 +17962,11 @@ msgstr "Otwórz dokument referencyjny"
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
-msgstr ""
+msgstr "Otwórz ustawienia"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
-msgstr ""
+msgstr "Aplikacje Open Source dla Sieci"
#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
@@ -17886,10 +17990,10 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
-msgstr ""
+msgstr "Otwórz element listy"
#: frappe/core/doctype/error_log/error_log.js:15
msgid "Open reference document"
@@ -17923,7 +18027,7 @@ msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
-msgstr ""
+msgstr "OpenLDAP"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -17933,9 +18037,9 @@ msgstr "Otwarty"
#. Label of the operation (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Operation"
-msgstr ""
+msgstr "Operacja"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17981,6 +18085,7 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17989,9 +18094,10 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
-msgstr ""
+msgstr "Opcje"
#: frappe/core/doctype/doctype/doctype.py:1367
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
@@ -18018,7 +18124,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18034,7 +18140,7 @@ msgstr ""
msgid "Order"
msgstr "Zamówienie"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18050,7 +18156,7 @@ msgstr "Historia Organizacji"
msgid "Org History Heading"
msgstr "Nagłówek Historii Organizacji"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18132,7 +18238,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18165,10 +18271,6 @@ msgstr ""
msgid "PDF Settings"
msgstr "Ustawienia PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18318,7 +18420,7 @@ msgstr "Ustawienia strony"
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
-msgstr ""
+msgstr "Skróty na stronie"
#: frappe/public/js/frappe/list/bulk_operations.js:66
msgid "Page Size"
@@ -18380,7 +18482,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18484,8 +18586,8 @@ msgstr "Nieaktywny"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18493,7 +18595,7 @@ msgstr "Nieaktywny"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/www/login.html:22
msgid "Password"
-msgstr ""
+msgstr "Hasło"
#: frappe/core/doctype/user/user.py:1094
msgid "Password Email Sent"
@@ -18508,7 +18610,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr "Limit generowania linków do resetowania hasła"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18545,7 +18647,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18557,7 +18659,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18593,7 +18695,7 @@ msgstr ""
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:35
msgid "Path"
-msgstr ""
+msgstr "Ścieżka"
#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -18613,7 +18715,7 @@ msgstr "Ścieżka do prywatnego pliku kluczy"
#: frappe/website/path_resolver.py:208
msgid "Path {0} it not a valid path"
-msgstr ""
+msgstr "Ścieżka {0} nie jest poprawną ścieżką"
#. Label of the payload_count (Int) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -18708,7 +18810,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18768,16 +18870,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
-msgstr ""
+msgstr "Uprawnienia"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18839,32 +18941,35 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Phone"
-msgstr ""
+msgstr "Telefon"
#. Label of the phone_no (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18878,7 +18983,7 @@ msgstr "Ciasto"
#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Pincode"
-msgstr ""
+msgstr "Kod PIN"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -18946,11 +19051,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18962,7 +19067,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -19002,7 +19107,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19018,11 +19123,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19031,7 +19136,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19146,7 +19251,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19154,15 +19259,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19186,7 +19291,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19216,7 +19321,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19236,7 +19341,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19349,9 +19454,9 @@ msgstr ""
#: frappe/website/doctype/portal_settings/portal_settings.json
#: frappe/website/workspace/website/website.json
msgid "Portal Settings"
-msgstr ""
+msgstr "Ustawienia portalu"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19379,6 +19484,7 @@ msgstr "Pocztowy"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19387,7 +19493,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19402,6 +19508,10 @@ msgstr ""
msgid "Precision"
msgstr "Precyzja liczb"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19450,7 +19560,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19464,7 +19574,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:139
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
-msgstr ""
+msgstr "Naciśnij klawisz Alt, aby uruchomić dodatkowe skróty w menu i pasku bocznym"
#: frappe/public/js/frappe/list/list_filter.js:141
msgid "Press Enter to save"
@@ -19585,13 +19695,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19661,7 +19771,7 @@ msgstr "Format Drukuj Pomoc"
msgid "Print Format Type"
msgstr "Drukuj Typ Formatu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19700,7 +19810,7 @@ msgstr "Wydrukuj \"Ukryte\" jeżeli nie została podana wartość"
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19718,7 +19828,7 @@ msgstr "Serwer druku"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19791,7 +19901,7 @@ msgstr ""
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Printing"
-msgstr ""
+msgstr "Drukowanie"
#: frappe/utils/print_format.py:291
msgid "Printing failed"
@@ -19842,11 +19952,11 @@ msgstr "Protip: Dodaj
Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19863,11 +19973,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Pomyślnie zaktualizowano profil."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19911,7 +20031,7 @@ msgstr "Typ Właściwości"
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20084,7 +20204,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20291,7 +20411,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20417,11 +20537,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20802,8 +20922,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20834,16 +20954,16 @@ msgstr ""
msgid "Refresh Token"
msgstr "Odśwież token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr ""
+msgstr "Odświeżanie..."
#: frappe/core/doctype/user/user.py:1036
msgid "Registered but disabled"
@@ -20896,19 +21016,19 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
-msgstr ""
+msgstr "Odśwież"
#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Reload File"
-msgstr ""
+msgstr "Wczytaj plik ponownie"
#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
-msgstr ""
+msgstr "Odśwież listę"
#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
-msgstr ""
+msgstr "Odśwież raport"
#. Label of the remember_last_selected_value (Check) field in DocType
#. 'DocField'
@@ -21153,8 +21273,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21225,11 +21345,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21263,21 +21383,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,9 +21415,9 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1359
msgid "Report was not saved (there were errors)"
-msgstr ""
+msgstr "Raport nie został zapisany (wystąpiły błędy)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21333,7 +21453,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21352,7 +21472,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Żądaj danych"
@@ -21404,6 +21527,11 @@ msgstr ""
msgid "Request URL"
msgstr "Żądaj adresu URL"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21459,7 +21587,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21467,11 +21595,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21506,7 +21634,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21646,7 +21774,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr "Rewers Ikona kolor"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21698,7 +21826,7 @@ msgstr ""
#. Label of the robots_txt (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Robots.txt"
-msgstr "robots.txt"
+msgstr "Robots.txt"
#. Label of the role (Link) field in DocType 'Custom DocPerm'
#. Label of the roles (Table) field in DocType 'Custom Role'
@@ -21731,7 +21859,7 @@ msgstr "robots.txt"
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
-msgstr ""
+msgstr "Rola"
#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
@@ -21758,7 +21886,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21768,7 +21896,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21896,7 +22024,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Route"
-msgstr ""
+msgstr "Trasa"
#. Name of a DocType
#: frappe/desk/doctype/route_history/route_history.json
@@ -21913,7 +22041,7 @@ msgstr "Przekierowania trasy"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21921,12 +22049,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21961,11 +22089,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21984,7 +22112,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22192,8 +22323,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22201,7 +22332,7 @@ msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
msgid "Save"
-msgstr ""
+msgstr "Zapisz"
#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
@@ -22216,11 +22347,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22249,12 +22380,12 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr ""
+msgstr "Zapisywanie"
#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
-msgstr ""
+msgstr "Zapisywanie"
#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
@@ -22520,7 +22651,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
msgid "Search or type a command ({0})"
-msgstr ""
+msgstr "Wyszukaj polecenie ({0})"
#: frappe/public/js/form_builder/components/SearchBox.vue:8
msgid "Search properties..."
@@ -22586,13 +22717,13 @@ msgstr ""
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr "Ustawienia Zabezpieczeń"
+msgstr "Ustawienia zabezpieczeń"
#: frappe/public/js/frappe/ui/notifications/notifications.js:309
msgid "See all Activity"
-msgstr ""
+msgstr "Zobacz całą aktywność"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22656,7 +22787,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22665,7 +22796,7 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
-msgstr ""
+msgstr "Wybierz załączniki"
#: frappe/custom/doctype/client_script/client_script.js:27
#: frappe/custom/doctype/client_script/client_script.js:30
@@ -22677,7 +22808,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22736,7 +22867,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22856,14 +22987,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22893,16 +23024,16 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
-msgstr ""
+msgstr "Wybierz element listy"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
-msgstr ""
+msgstr "Wybierz wiele elementów listy"
#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
@@ -22977,7 +23108,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Wyślij załączniki e-maila jako PDF (zalecane)"
+msgstr ""
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
@@ -23117,7 +23248,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23221,7 +23352,7 @@ msgstr ""
msgid "Server Action"
msgstr "Działanie serwera"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23281,13 +23412,13 @@ msgstr ""
#: frappe/core/doctype/session_default_settings/session_default_settings.json
#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
-msgstr ""
+msgstr "Domyślne ustawienia sesji"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
-msgstr ""
+msgstr "Zapisano domyślne ustawienia sesji"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23296,14 +23427,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23329,12 +23460,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Ustaw opcje domyślne dla wszystkich wykresów w tym panelu (np. „Colors”: [„# d1d8dd”, „# ff5858”])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23345,7 +23476,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23399,7 +23530,7 @@ msgstr ""
msgid "Set Role For"
msgstr "Ustaw rola"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23418,7 +23549,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23437,18 +23568,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Ustaw niestandardowy dokładność polu Float lub walut"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23523,7 +23657,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json frappe/www/me.html:20
msgid "Settings"
-msgstr ""
+msgstr "Ustawienia"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -23558,7 +23692,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23699,6 +23833,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23732,7 +23872,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr ""
+msgstr "Pokaż skróty klawiszowe"
#. Label of the show_labels (Check) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
@@ -23827,9 +23967,9 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
-msgstr ""
+msgstr "Pokaż tagi"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -23882,7 +24022,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:69
msgid "Show all activity"
-msgstr ""
+msgstr "Pokaż całą aktywność"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -23892,7 +24032,7 @@ msgstr "Pokaż jako cc"
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show attachments"
-msgstr ""
+msgstr "Pokaż załączniki"
#. Label of the show_footer_on_login (Check) field in DocType 'Website
#. Settings'
@@ -23930,7 +24070,7 @@ msgstr ""
#. Label of the show_list (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show list"
-msgstr ""
+msgstr "Pokaż listę"
#: frappe/public/js/frappe/form/layout.js:272
#: frappe/public/js/frappe/form/layout.js:290
@@ -23951,7 +24091,7 @@ msgstr "Pokaż różnicę procentową według tego przedziału czasu"
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show sidebar"
-msgstr ""
+msgstr "Pokaż pasek boczny"
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -24034,36 +24174,36 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Proste wyrażenie w Pythonie, przykład: status w („Zamknięte”, „Anulowane”)"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Proste wyrażenie w języku Python, przykład: Status w („Nieprawidłowy”)"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Simple Python Expression, Przykład: status == 'Open' i wpisz == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Liczba jednoczesnych sesji"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24071,7 +24211,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24127,7 +24267,7 @@ msgstr ""
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr ""
+msgstr "Skype"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -24331,16 +24471,16 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
msgid "Source"
-msgstr ""
+msgstr "Źródło"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Source Code"
-msgstr ""
+msgstr "Kod źródłowy"
#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
@@ -24351,7 +24491,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr ""
+msgstr "Tekst źródłowy"
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
@@ -24398,8 +24538,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24431,7 +24571,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24447,7 +24587,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24565,6 +24705,7 @@ msgstr "Zaczyna się"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24668,7 +24809,7 @@ msgstr "Statystyki Interwał czasowy"
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr ""
+msgstr "Status"
#: frappe/www/update-password.html:188
msgid "Status Updated"
@@ -24700,7 +24841,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24730,7 +24871,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24753,7 +24894,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
-msgstr ""
+msgstr "Usuń znaczniki EXIF z przesłanych obrazów"
#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
@@ -24817,7 +24958,7 @@ msgstr "Subdomena"
#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr ""
+msgstr "Temat"
#. Label of the subject_field (Data) field in DocType 'DocType'
#. Label of the subject_field (Data) field in DocType 'Customize Form'
@@ -24828,7 +24969,7 @@ msgstr ""
msgid "Subject Field"
msgstr "Pole tematu"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24842,6 +24983,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24850,10 +24992,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24863,7 +25006,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24911,7 +25054,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24961,7 +25104,7 @@ msgstr "Podtytuł"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -24991,7 +25134,7 @@ msgstr ""
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "Sukces URL"
+msgstr ""
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -25102,7 +25245,7 @@ msgstr ""
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr ""
+msgstr "Zmień motyw"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
@@ -25176,7 +25319,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25199,7 +25342,7 @@ msgstr ""
#. Type: Route
#: frappe/hooks.py
msgid "System Health"
-msgstr ""
+msgstr "Stan systemu"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -25384,7 +25527,7 @@ msgstr ""
#: frappe/workflow/doctype/workflow_state/workflow_state.json
#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json
msgid "System Manager"
-msgstr ""
+msgstr "Menedżer systemu"
#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
@@ -25449,12 +25592,12 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Przerwa na stół"
+msgstr ""
#: frappe/core/doctype/version/version_view.html:73
msgid "Table Field"
@@ -25487,7 +25630,7 @@ msgstr "Tabela MultiSelect"
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25520,7 +25663,7 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:133
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
msgid "Tags"
-msgstr ""
+msgstr "Tagi"
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
@@ -25531,7 +25674,7 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr ""
+msgstr "Cel"
#. Label of the task (Select) field in DocType 'Workflow Transition Task'
#: frappe/desk/doctype/todo/todo_calendar.js:19
@@ -25556,7 +25699,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Dział członków zespołu"
+msgstr ""
#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
#. Settings'
@@ -25579,7 +25722,7 @@ msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr ""
+msgstr "Szablon"
#: frappe/core/doctype/data_import/importer.py:483
#: frappe/core/doctype/data_import/importer.py:610
@@ -25702,7 +25845,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25717,7 +25860,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25770,7 +25913,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25800,7 +25943,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25871,7 +26014,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25882,7 +26025,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25894,7 +26037,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25930,7 +26073,7 @@ msgstr "Motyw"
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
-msgstr ""
+msgstr "Zmieniono motyw"
#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
#. Theme'
@@ -25949,18 +26092,18 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:442
msgid "There are no upcoming events for you."
-msgstr ""
+msgstr "Nie ma żadnych nadchodzących wydarzeń dla Ciebie."
#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25982,13 +26125,13 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "There is nothing new to show you right now."
-msgstr ""
+msgstr "Obecnie nie ma nic nowego, aby Ci pokazać."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26000,13 +26143,13 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr ""
+msgstr "Wystąpiły błędy"
#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
@@ -26057,7 +26200,7 @@ msgstr "Uwierzytelnianie przy pomocy trzeciej strony"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26065,6 +26208,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26090,6 +26237,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26108,7 +26260,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26150,7 +26302,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26183,9 +26335,9 @@ msgstr ""
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr "Występuje ponad slideshow"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26235,7 +26387,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26243,7 +26395,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26385,13 +26537,15 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
-msgstr ""
+msgstr "Strefa czasowa"
#. Label of the time_zones (Text) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
@@ -26429,7 +26583,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
-msgstr ""
+msgstr "Ponadczasowa noc"
#. Label of the timeline (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -26540,7 +26694,7 @@ msgstr ""
#: frappe/website/doctype/website_sidebar/website_sidebar.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Title"
-msgstr ""
+msgstr "Tytuł"
#. Label of the title_field (Data) field in DocType 'DocType'
#. Label of the title_field (Data) field in DocType 'Customize Form'
@@ -26648,7 +26802,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26711,7 +26865,7 @@ msgstr ""
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Full Width"
-msgstr ""
+msgstr "Przełącz na pełną szerokość"
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
@@ -26721,18 +26875,18 @@ msgstr ""
#: frappe/public/js/frappe/ui/page.js:203
#: frappe/public/js/frappe/views/reports/report_view.js:1576
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Przełącz boczny pasek"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Przełącz boczny pasek"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Theme"
-msgstr ""
+msgstr "Zmień motyw"
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -26793,7 +26947,7 @@ msgstr ""
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "Narzędzia"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -26813,7 +26967,7 @@ msgstr ""
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Elementy Top Bar"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26849,7 +27003,7 @@ msgstr "Temat"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26970,7 +27124,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27006,7 +27160,7 @@ msgstr "Przejścia"
msgid "Translatable"
msgstr "Przetłumaczalny"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27076,7 +27230,7 @@ msgstr "Sposób wyzwalania"
#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr ""
+msgstr "Uruchom akcję podstawową"
#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
@@ -27168,13 +27322,13 @@ msgstr "Metoda uwierzytelniania dwóch czynników"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
-msgstr ""
+msgstr "Typ"
#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
@@ -27261,7 +27415,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr "Adres URL dokumentacji lub pomocy"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27364,7 +27518,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27373,7 +27527,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Stan niepodpisania"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27389,7 +27543,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27426,7 +27580,7 @@ msgstr ""
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
-msgstr ""
+msgstr "Nieznany"
#: frappe/public/js/frappe/model/model.js:209
msgid "Unknown Column: {0}"
@@ -27436,7 +27590,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27502,8 +27656,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27537,7 +27691,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27571,6 +27725,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27629,7 +27788,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27786,11 +27945,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -27875,7 +28030,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
@@ -27884,17 +28039,17 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
-msgstr ""
+msgstr "Raport aktywności użytkownika"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
-msgstr ""
+msgstr "Raport aktywności użytkownika bez sortowania"
#. Label of the user_agent (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr "Agent użytkownika"
+msgstr ""
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -28002,7 +28157,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr "Nazwa Użytkownika"
+msgstr "Nazwa użytkownika"
#. Name of a DocType
#: frappe/core/doctype/user_permission/user_permission.json
@@ -28012,15 +28167,15 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
-msgstr ""
+msgstr "Uprawnienia użytkownika"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
-msgstr ""
+msgstr "Uprawnienia użytkownika"
#: frappe/core/page/permission_manager/permission_manager_help.html:32
msgid "User Permissions are used to limit users to specific records."
@@ -28051,7 +28206,7 @@ msgstr ""
#. Type: Action
#: frappe/hooks.py
msgid "User Settings"
-msgstr ""
+msgstr "Ustawienia użytkownika"
#. Name of a DocType
#: frappe/core/doctype/user_social_login/user_social_login.json
@@ -28110,7 +28265,7 @@ msgstr ""
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "Użytkownik musi zawsze zaznaczyć"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
@@ -28161,7 +28316,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28195,7 +28350,7 @@ msgstr ""
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr ""
+msgstr "Użytkownicy"
#. Description of the 'Protect Attached Files' (Check) field in DocType
#. 'DocType'
@@ -28208,11 +28363,11 @@ msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr ""
+msgstr "Użytkownicy z rolą {0}:"
#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
-msgstr ""
+msgstr "Używa motywu systemowego do przełączania między trybem jasnym i ciemnym"
#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
@@ -28289,8 +28444,8 @@ msgstr "Ważność"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28300,7 +28455,7 @@ msgstr "Ważność"
#: frappe/website/doctype/web_form/web_form.js:197
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr ""
+msgstr "Wartość"
#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -28322,7 +28477,7 @@ msgstr "Wartość Zmieniona"
msgid "Value To Be Set"
msgstr "Wartość, którą należy ustawić"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28338,11 +28493,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28367,7 +28522,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Wartość do zweryfikowania"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28429,12 +28584,12 @@ msgstr ""
#: frappe/templates/includes/login/login.js:171
msgid "Verifying..."
-msgstr ""
+msgstr "Weryfikowanie..."
#. Name of a DocType
#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr ""
+msgstr "Wersja"
#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
@@ -28459,7 +28614,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28471,7 +28626,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28481,7 +28636,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28597,6 +28752,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28620,7 +28776,7 @@ msgstr ""
#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr ""
+msgstr "Czy ten artykuł był pomocny?"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
msgid "Watch Tutorial"
@@ -28691,7 +28847,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -28797,7 +28953,7 @@ msgstr "Adres URL webhooka"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr ""
+msgstr "Strona internetowa"
#. Name of a report
#: frappe/website/report/website_analytics/website_analytics.json
@@ -28859,7 +29015,7 @@ msgstr ""
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr "Ustawienia witryny"
+msgstr ""
#. Label of the website_sidebar (Link) field in DocType 'Web Form'
#. Label of the website_sidebar (Link) field in DocType 'Web Page'
@@ -29006,7 +29162,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/notifications/notifications.js:62
msgid "What's New"
-msgstr ""
+msgstr "Co nowego?"
#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType
#. 'System Settings'
@@ -29081,7 +29237,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29242,7 +29398,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29266,7 +29422,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
-msgstr ""
+msgstr "Menedżer obszaru roboczego"
#. Name of a DocType
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
@@ -29284,13 +29440,13 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
#: frappe/hooks.py
msgid "Workspace Settings"
-msgstr ""
+msgstr "Ustawienia obszaru roboczego"
#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Setup Completed"
-msgstr ""
+msgstr "Zakończono konfigurację obszaru roboczego"
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29301,7 +29457,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Visibility"
-msgstr ""
+msgstr "Widoczność obszaru roboczego"
#: frappe/public/js/frappe/views/workspace/workspace.js:538
msgid "Workspace {0} created"
@@ -29335,7 +29491,7 @@ msgstr ""
msgid "Write"
msgstr "Zapisz"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29364,7 +29520,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29426,24 +29582,24 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr ""
+msgstr "Tak"
#: frappe/public/js/frappe/ui/messages.js:32
msgctxt "Approve confirmation dialog"
msgid "Yes"
-msgstr ""
+msgstr "Tak"
#: frappe/public/js/frappe/ui/filters/filter.js:545
msgctxt "Checkbox is checked"
msgid "Yes"
-msgstr ""
+msgstr "Tak"
#: frappe/public/js/frappe/ui/filters/filter.js:727
msgid "Yesterday"
-msgstr ""
+msgstr "Wczoraj"
#: frappe/public/js/frappe/utils/user.js:33
msgctxt "Name of the current user. For example: You edited this 5 hours ago."
@@ -29462,6 +29618,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29500,12 +29660,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29513,7 +29673,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29586,11 +29746,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29640,11 +29800,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29662,7 +29822,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29705,15 +29865,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29725,11 +29885,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29749,7 +29909,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29777,7 +29937,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29794,11 +29954,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29822,7 +29982,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29913,6 +30073,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29927,7 +30091,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "YouTube"
-msgstr "Youtube"
+msgstr "YouTube"
#: frappe/core/doctype/prepared_report/prepared_report.js:57
msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
@@ -29958,7 +30122,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30020,11 +30184,11 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30332,7 +30496,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30350,7 +30514,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr ""
+msgstr "linkedin"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -30361,7 +30525,7 @@ msgstr "lista"
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30603,7 +30767,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/number_card_widget.js:308
msgid "since yesterday"
-msgstr ""
+msgstr "od wczoraj"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -30699,7 +30863,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30754,7 +30918,7 @@ msgstr "żółty"
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr ""
+msgstr "wczoraj"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
@@ -30809,7 +30973,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30850,7 +31014,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30860,7 +31024,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30914,9 +31078,9 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr ""
+msgstr "{0} są obecnie {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30933,7 +31097,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31010,7 +31174,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31055,7 +31219,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31074,7 +31238,7 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr ""
+msgstr "{0} jest obecnie {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1439
msgid "{0} is equal to {1}"
@@ -31104,7 +31268,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31124,12 +31288,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31137,11 +31301,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31161,7 +31325,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31185,7 +31349,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31195,8 +31359,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31209,9 +31373,9 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
-msgstr ""
+msgstr "Wybrano {0} elementy(ów)"
#: frappe/core/doctype/user/user.py:1393
msgid "{0} just impersonated as you. They gave this reason: {1}"
@@ -31266,11 +31430,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31295,11 +31459,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31349,7 +31513,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31423,7 +31587,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31459,11 +31623,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31483,11 +31647,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31495,35 +31659,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31551,11 +31715,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31575,7 +31739,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31596,7 +31760,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31632,11 +31796,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31662,7 +31826,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index 14cca6d1d0..48a3c3b2e4 100644
--- a/frappe/locale/pt.po
+++ b/frappe/locale/pt.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -38,7 +38,7 @@ msgstr "\"Principal\" diz respeito à tabela principal na qual deve ser acrescen
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr ""
+msgstr "\"Membros da Equipa\" ou \"Administração\""
#: frappe/public/js/frappe/form/form.js:1090
msgid "\"amended_from\" field must be present to do an amendment."
@@ -78,25 +78,25 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164
msgid "'Recipients' not specified"
-msgstr ""
+msgstr "'Destinatários' não especificados"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
-msgstr ""
+msgstr "'{0}' não é um IBAN válido"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
-msgstr ""
+msgstr "'{0}' não é um URL válido"
#: frappe/core/doctype/doctype/doctype.py:1349
msgid "'{0}' not allowed for type {1} in row {2}"
-msgstr ""
+msgstr "'{0}' não permitido para o tipo {1} na linha {2}"
#: frappe/public/js/frappe/data_import/data_exporter.js:302
msgid "(Mandatory)"
@@ -109,7 +109,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:133
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
msgid "+ Add / Remove Fields"
-msgstr ""
+msgstr "+ Adicionar / Remover Campos"
#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
#. State'
@@ -122,7 +122,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -134,17 +134,17 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
-msgstr ""
+msgstr "1 Dia"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
-msgstr ""
+msgstr "1 evento do Google Calendar sincronizado."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
-msgstr ""
+msgstr "1 Relatório"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "há 1 dia"
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr "1 hora"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "há 1 hora atrás"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "há 1 minuto atrás"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 mês atrás"
@@ -173,7 +173,7 @@ msgstr "1 de 2"
#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr ""
+msgstr "será exportado 1 registo"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320
msgctxt "User removed row from child table"
@@ -185,59 +185,59 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
-msgstr ""
+msgstr "há 1 segundo"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
-msgstr ""
+msgstr "há 1 semana"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 ano atrás"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "há 2 horas"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "há 2 meses"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "há 2 semanas"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
-msgstr ""
+msgstr "há 2 anos"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
-msgstr ""
+msgstr "há 3 minutos"
#: frappe/public/js/frappe/form/reminders.js:16
msgid "30 minutes"
-msgstr ""
+msgstr "30 minutos"
#: frappe/public/js/frappe/form/reminders.js:18
msgid "4 hours"
-msgstr ""
+msgstr "4 horas"
#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
msgstr "5 registos"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "há 5 dias"
#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
-msgstr ""
+msgstr "; não é permitido na condição"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
@@ -256,17 +256,29 @@ msgstr "<="
msgid "\n"
" Click here to learn about token-based authentication\n"
""
-msgstr ""
+msgstr "\n"
+" Clique aqui para saber mais sobre a autenticação baseada em token\n"
+""
#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
-msgstr ""
+msgstr "{0} não é um URL válido"
#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,11 +580,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -694,7 +711,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -713,7 +730,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -737,7 +754,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -823,7 +840,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -939,7 +956,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Ações"
@@ -996,7 +1013,7 @@ msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1005,9 +1022,9 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
-msgstr ""
+msgstr "Adicionar"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1039,7 +1056,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1052,8 +1069,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1147,7 +1164,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1322,6 +1339,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1330,6 +1348,7 @@ msgstr "Endereço"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr ""
@@ -1337,6 +1356,7 @@ msgstr ""
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1498,7 +1518,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1525,11 +1545,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1976,6 +1996,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2052,6 +2078,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2234,7 +2265,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2319,7 +2350,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2355,7 +2386,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2363,7 +2394,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2418,6 +2449,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2427,7 +2464,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2452,7 +2489,7 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
msgid "Assign to me"
-msgstr ""
+msgstr "Atribuir a mim"
#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
@@ -2502,7 +2539,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr ""
+msgstr "Atribuição"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -2570,7 +2607,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2650,7 +2687,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2666,7 +2703,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2688,11 +2725,11 @@ msgstr ""
msgid "Attachments"
msgstr "Anexos"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3550,15 +3587,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3782,7 +3819,7 @@ msgid "Camera"
msgstr "Câmera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3842,7 +3879,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3850,7 +3887,7 @@ msgstr ""
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Cancelar"
@@ -3868,7 +3905,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3917,11 +3954,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3965,11 +4002,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4032,8 +4069,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4045,11 +4082,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4057,7 +4094,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4073,7 +4110,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4102,11 +4139,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4379,11 +4416,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4412,6 +4449,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4438,7 +4476,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4515,24 +4553,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4710,7 +4748,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4765,7 +4803,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4821,11 +4859,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4852,7 +4890,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5067,8 +5105,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5116,7 +5154,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5141,7 +5179,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Confirmar"
@@ -5160,7 +5198,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5205,8 +5243,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5257,6 +5295,10 @@ msgstr ""
msgid "Contact"
msgstr "Contacto"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5320,7 +5362,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5409,7 +5451,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5418,7 +5460,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5442,7 +5484,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5495,13 +5537,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5533,13 +5576,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Criar"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5553,7 +5596,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5587,12 +5630,12 @@ msgstr ""
msgid "Create New"
msgstr "Criar Novo"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Criar Novo"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5600,7 +5643,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5623,8 +5666,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5640,7 +5683,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5650,7 +5693,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5987,7 +6030,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6022,7 +6065,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6041,7 +6084,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6272,7 +6315,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6303,7 +6346,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6673,13 +6716,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Eliminar"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Eliminar"
@@ -6712,7 +6755,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6726,7 +6769,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6768,12 +6811,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6809,7 +6852,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6817,7 +6860,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Eliminado!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7270,10 +7313,14 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7697,13 +7744,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7748,15 +7795,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7898,7 +7945,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7931,7 +7978,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8027,7 +8074,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8131,8 +8178,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8144,7 +8191,7 @@ msgstr ""
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Editar"
@@ -8154,7 +8201,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Editar"
@@ -8183,7 +8230,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8201,7 +8248,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8303,7 +8350,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8348,6 +8395,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8366,6 +8415,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8485,6 +8536,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8596,7 +8648,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8639,7 +8691,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8647,7 +8699,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9075,7 +9127,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9103,9 +9155,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9125,19 +9177,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9286,7 +9338,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9312,12 +9364,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9375,13 +9427,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportar"
@@ -9574,7 +9626,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9582,7 +9634,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9738,7 +9790,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9821,7 +9873,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9839,7 +9891,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9852,7 +9904,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9868,11 +9920,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9912,7 +9964,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9920,7 +9972,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9948,7 +10000,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10014,7 +10066,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10022,7 +10074,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10031,11 +10083,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10049,8 +10101,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10089,11 +10141,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10170,7 +10222,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10218,8 +10270,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10300,7 +10356,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10407,7 +10463,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10502,7 +10558,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10543,7 +10599,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10787,7 +10843,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10849,12 +10905,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10914,7 +10970,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10929,7 +10985,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11136,10 +11192,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11334,14 +11386,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11401,7 +11449,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11506,7 +11554,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11635,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11671,7 +11719,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11783,7 +11831,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11943,7 +11991,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12040,9 +12088,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12270,8 +12318,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12358,11 +12406,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12392,7 +12440,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12620,15 +12668,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12675,7 +12724,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12786,7 +12835,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12824,8 +12873,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12859,7 +12908,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12975,7 +13024,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12985,7 +13034,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13029,12 +13078,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13088,7 +13137,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13102,11 +13151,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13123,7 +13172,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13146,7 +13195,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13154,19 +13203,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13174,11 +13223,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13194,23 +13243,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13222,11 +13271,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13234,11 +13283,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13275,23 +13324,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13395,7 +13448,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13448,6 +13501,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "É grupo"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13474,8 +13531,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13531,7 +13593,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13567,7 +13629,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13773,11 +13835,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14067,7 +14129,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14075,10 +14137,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14166,8 +14231,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14313,7 +14382,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14363,7 +14432,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14391,7 +14460,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14408,7 +14477,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14701,7 +14770,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14752,7 +14821,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Carregue mais"
@@ -14772,7 +14841,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14915,7 +14984,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14923,7 +14992,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14976,7 +15045,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14995,7 +15064,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15099,7 +15168,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15175,7 +15247,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15187,11 +15259,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15373,7 +15445,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15397,7 +15469,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15616,7 +15688,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15632,6 +15704,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15702,7 +15779,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15738,6 +15815,11 @@ msgstr ""
msgid "Mobile No"
msgstr "Nr. de Telemóvel"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15763,7 +15845,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15939,10 +16021,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -15972,7 +16056,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16008,7 +16092,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16058,7 +16142,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16076,7 +16160,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16116,7 +16200,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16218,12 +16302,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16238,6 +16322,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16246,7 +16334,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16259,6 +16347,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16267,7 +16361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16328,7 +16422,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16363,7 +16457,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16459,7 +16553,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16611,7 +16705,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16716,7 +16810,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16760,7 +16854,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16768,7 +16862,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16844,7 +16938,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16868,7 +16962,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16912,7 +17006,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16924,7 +17018,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16960,11 +17054,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16973,7 +17067,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17037,7 +17131,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17063,9 +17157,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17084,7 +17178,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17135,7 +17229,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17167,12 +17261,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17218,7 +17312,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17290,15 +17384,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17412,7 +17506,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17684,7 +17778,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17773,11 +17867,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17873,7 +17967,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17922,7 +18016,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17968,6 +18062,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17976,6 +18071,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18005,7 +18101,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18021,7 +18117,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18037,7 +18133,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18119,7 +18215,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18152,10 +18248,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18367,7 +18459,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18471,8 +18563,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18495,7 +18587,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18532,7 +18624,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18544,7 +18636,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18695,7 +18787,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18755,16 +18847,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18826,15 +18918,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18847,11 +18942,11 @@ msgstr "Telefone"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18933,11 +19028,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18949,7 +19044,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -18989,7 +19084,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19005,11 +19100,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19018,7 +19113,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19133,7 +19228,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19141,15 +19236,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19173,7 +19268,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19203,7 +19298,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19223,7 +19318,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19338,7 +19433,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19366,6 +19461,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19374,7 +19470,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19389,6 +19485,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19437,7 +19537,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19572,13 +19672,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19648,7 +19748,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19687,7 +19787,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19705,7 +19805,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19829,11 +19929,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19850,11 +19950,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Perfil atualizado com sucesso."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19898,7 +20008,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20071,7 +20181,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr ""
@@ -20278,7 +20388,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20404,11 +20514,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20789,8 +20899,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20821,13 +20931,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21140,8 +21250,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21212,11 +21322,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21250,21 +21360,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21284,7 +21394,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21320,7 +21430,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21339,7 +21449,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21391,6 +21504,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21446,7 +21564,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21454,11 +21572,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21493,7 +21611,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21633,7 +21751,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21745,7 +21863,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21755,7 +21873,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21900,7 +22018,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21908,12 +22026,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21948,11 +22066,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21971,7 +22089,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22179,8 +22300,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22203,11 +22324,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22579,7 +22700,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22643,7 +22764,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22664,7 +22785,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22723,7 +22844,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22843,14 +22964,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22880,13 +23001,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23104,7 +23225,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23208,7 +23329,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23274,7 +23395,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23283,14 +23404,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23316,12 +23437,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23332,7 +23453,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23386,7 +23507,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23405,7 +23526,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23424,18 +23545,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23545,7 +23669,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23686,6 +23810,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23814,7 +23944,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24021,22 +24151,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24044,13 +24174,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24058,7 +24188,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24318,7 +24448,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24385,8 +24515,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24418,7 +24548,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24434,7 +24564,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24552,6 +24682,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24687,7 +24818,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24717,7 +24848,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24815,7 +24946,7 @@ msgstr "Assunto"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24829,6 +24960,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24837,10 +24969,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24850,7 +24983,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24898,7 +25031,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24948,7 +25081,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25163,7 +25296,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25474,7 +25607,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25689,7 +25822,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25704,7 +25837,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25757,7 +25890,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25787,7 +25920,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25858,7 +25991,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25869,7 +26002,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25881,7 +26014,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25942,12 +26075,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25971,11 +26104,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25987,7 +26120,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26044,7 +26177,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26052,6 +26185,10 @@ msgstr ""
msgid "This Month"
msgstr "Este mês"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Este trimestre"
@@ -26077,6 +26214,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26095,7 +26237,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26137,7 +26279,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26172,7 +26314,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26222,7 +26364,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26230,7 +26372,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26372,9 +26514,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26635,7 +26779,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26710,7 +26854,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26836,7 +26980,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26957,7 +27101,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26993,7 +27137,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27155,7 +27299,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27248,7 +27392,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27351,7 +27495,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27360,7 +27504,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27376,7 +27520,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27423,7 +27567,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27489,8 +27633,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27524,7 +27668,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Atualizar"
@@ -27558,6 +27702,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27616,7 +27765,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27773,11 +27922,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -27999,12 +28144,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28148,7 +28293,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28276,8 +28421,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28309,7 +28454,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28325,11 +28470,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28354,7 +28499,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28446,7 +28591,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28458,7 +28603,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28468,7 +28613,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28584,6 +28729,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28678,7 +28824,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29068,7 +29214,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29229,7 +29375,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29322,7 +29468,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29351,7 +29497,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29413,7 +29559,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Sim"
@@ -29449,6 +29595,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29487,12 +29637,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29500,7 +29650,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29573,11 +29723,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29627,11 +29777,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29649,7 +29799,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29692,15 +29842,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29712,11 +29862,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29736,7 +29886,7 @@ msgstr ""
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29764,7 +29914,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29781,11 +29931,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29809,7 +29959,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29900,6 +30050,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29945,7 +30099,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30007,11 +30161,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30319,7 +30473,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30348,7 +30502,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30686,7 +30840,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30796,7 +30950,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30837,7 +30991,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30847,7 +31001,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30903,7 +31057,7 @@ msgstr "{0} e {1}"
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30920,7 +31074,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30997,7 +31151,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31042,7 +31196,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr "{0} é um campo obrigatório"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31091,7 +31245,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31111,12 +31265,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31124,11 +31278,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} não é um número de telefone válido"
@@ -31148,7 +31302,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} não é um formato de relatório válido. O formato do relatório deve ser um dos seguintes {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31172,7 +31326,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31182,8 +31336,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} é obrigatório"
@@ -31196,7 +31350,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} itens selecionados"
@@ -31253,11 +31407,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr "{0} deve ser um dos {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} deve ser definido primeiro"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} deve ser único"
@@ -31282,11 +31436,11 @@ msgid "{0} not found"
msgstr "{0} não foi encontrado"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} de {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31336,7 +31490,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31410,7 +31564,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31446,11 +31600,11 @@ msgstr "{0} {1} adicionado"
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} já existe"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31470,11 +31624,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr "{0} {1} não foi encontrado"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: O registo submetido não pode ser eliminado. Tem de {2} Cancelar {3} primeiro."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31482,35 +31636,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Não é possível Corrigir sem Cancelar"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Não é possível Cancelar sem Submeter"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31538,11 +31692,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31562,7 +31716,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31583,7 +31737,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31619,11 +31773,11 @@ msgstr ""
msgid "{} Complete"
msgstr "{} Concluído"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31649,7 +31803,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index acabdb570f..92acb4f896 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -86,11 +86,11 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -140,11 +140,11 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr ""
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr ""
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr ""
@@ -231,7 +231,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -267,6 +267,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,11 +578,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -694,7 +709,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -713,7 +728,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -737,7 +752,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -823,7 +838,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -939,7 +954,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Ações"
@@ -996,7 +1011,7 @@ msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1007,7 +1022,7 @@ msgstr ""
msgid "Add"
msgstr "Adicionar"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1039,7 +1054,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1052,8 +1067,8 @@ msgid "Add Child"
msgstr "Adicionar Sub-item"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1147,7 +1162,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1322,6 +1337,7 @@ msgstr "Permissões Adicionais"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1330,6 +1346,7 @@ msgstr "Endereço"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr ""
@@ -1337,6 +1354,7 @@ msgstr ""
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1498,7 +1516,7 @@ msgstr ""
msgid "After Submit"
msgstr "Após o envio"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1525,11 +1543,11 @@ msgstr "Alerta"
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1976,6 +1994,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2052,6 +2076,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2234,7 +2263,7 @@ msgstr "Aplicado em"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2319,7 +2348,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2355,7 +2384,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2363,7 +2392,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2418,6 +2447,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2427,7 +2462,7 @@ msgstr "Atribuir condição"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2570,7 +2605,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2650,7 +2685,7 @@ msgstr "Relacionado ao campo"
msgid "Attached To Name"
msgstr "Anexado Para Nome"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2666,7 +2701,7 @@ msgstr "Anexo"
msgid "Attachment Limit (MB)"
msgstr "Limite de Anexo (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2688,11 +2723,11 @@ msgstr "Anexo Removido"
msgid "Attachments"
msgstr "Anexos"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3550,15 +3585,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3782,7 +3817,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3842,7 +3877,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3850,7 +3885,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3868,7 +3903,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3917,11 +3952,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3965,11 +4000,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4032,8 +4067,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4045,11 +4080,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4057,7 +4092,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4073,7 +4108,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4102,11 +4137,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4378,11 +4413,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4411,6 +4446,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Escolha o método de autenticação a ser usado por todos os usuários"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Cidade"
@@ -4437,7 +4473,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4514,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4709,7 +4745,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Recolher Todos"
@@ -4764,7 +4800,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4820,11 +4856,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4851,7 +4887,7 @@ msgstr "Colunas"
msgid "Columns / Fields"
msgstr "Colunas / Campos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5066,8 +5102,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5115,7 +5151,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5140,7 +5176,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5159,7 +5195,7 @@ msgstr ""
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5204,8 +5240,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5256,6 +5292,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5319,7 +5359,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5408,7 +5448,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5417,7 +5457,7 @@ msgstr ""
msgid "Copyright"
msgstr "Direitos autorais"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5441,7 +5481,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5494,13 +5534,14 @@ msgstr "Contador"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5532,13 +5573,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Criar"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5552,7 +5593,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5586,12 +5627,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5599,7 +5640,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5622,8 +5663,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5639,7 +5680,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5649,7 +5690,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5986,7 +6027,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6021,7 +6062,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6040,7 +6081,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6271,7 +6312,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6302,7 +6343,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6672,13 +6713,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Excluir"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Excluir"
@@ -6711,7 +6752,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6725,7 +6766,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6767,12 +6808,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6808,7 +6849,7 @@ msgstr ""
msgid "Deleted Name"
msgstr "Nome Excluído"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6816,7 +6857,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Excluído!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7269,10 +7310,14 @@ msgstr "Não criar novo usuário"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7696,13 +7741,13 @@ msgstr "Título do documento"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7747,15 +7792,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7897,7 +7942,7 @@ msgstr "Rosquinha"
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7930,7 +7975,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8026,7 +8071,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8130,8 +8175,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8143,7 +8188,7 @@ msgstr ""
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Editar"
@@ -8153,7 +8198,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Editar"
@@ -8182,7 +8227,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8200,7 +8245,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8302,7 +8347,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8347,6 +8392,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8365,6 +8412,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8484,6 +8533,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8595,7 +8645,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8638,7 +8688,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8646,7 +8696,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9074,7 +9124,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9102,9 +9152,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9124,19 +9174,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9285,7 +9335,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9311,12 +9361,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir Todos"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9374,13 +9424,13 @@ msgstr "Tempo de expiração da página de imagem de código QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9573,7 +9623,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9581,7 +9631,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9737,7 +9787,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9820,7 +9870,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9838,7 +9888,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9851,7 +9901,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9867,11 +9917,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9911,7 +9961,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9919,7 +9969,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9947,7 +9997,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10013,7 +10063,7 @@ msgstr "URL do arquivo"
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10021,7 +10071,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10030,11 +10080,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10048,8 +10098,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10088,11 +10138,11 @@ msgstr ""
msgid "Filter Values"
msgstr "Valores de filtro"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10169,7 +10219,7 @@ msgstr "Seção de Filtros"
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10217,8 +10267,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10299,7 +10353,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10406,7 +10460,7 @@ msgstr ""
msgid "Footer HTML"
msgstr "HTML de rodapé"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10501,7 +10555,7 @@ msgstr ""
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10542,7 +10596,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10786,7 +10840,7 @@ msgstr "Data De"
msgid "From Date Field"
msgstr "Do campo de data"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10848,12 +10902,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10913,7 +10967,7 @@ msgstr ""
msgid "Generate Keys"
msgstr "Gerar Chaves"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10928,7 +10982,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11135,10 +11189,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11333,14 +11383,10 @@ msgstr "Agrupar por tipo"
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Grupo de Nós"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11400,7 +11446,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11505,7 +11551,7 @@ msgstr "Cabeçalho"
msgid "Header HTML"
msgstr "HTML de cabeçalho"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11634,7 +11680,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11670,7 +11716,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11782,7 +11828,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11942,7 +11988,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12039,9 +12085,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12269,8 +12315,8 @@ msgstr "Aplicativos ignorados"
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12357,11 +12403,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12391,7 +12437,7 @@ msgstr "Implícito"
msgid "Import"
msgstr "Importar"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importar"
@@ -12619,15 +12665,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12674,7 +12721,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12785,7 +12832,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12823,8 +12870,8 @@ msgstr "Inserir Estilo"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12858,7 +12905,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12974,7 +13021,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12984,7 +13031,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13028,12 +13075,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13087,7 +13134,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13101,11 +13148,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13122,7 +13169,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13145,7 +13192,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13153,19 +13200,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13173,11 +13220,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13193,23 +13240,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13221,11 +13268,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13233,11 +13280,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13274,23 +13321,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13394,7 +13445,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13447,6 +13498,10 @@ msgstr "É Pasta"
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "É Grupo"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13473,8 +13528,13 @@ msgstr "É estado opcional"
msgid "Is Primary"
msgstr "É primário"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "É o contato principal"
@@ -13530,7 +13590,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13566,7 +13626,7 @@ msgstr "É Padrão"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13772,11 +13832,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14066,7 +14126,7 @@ msgstr ""
msgid "Landing Page"
msgstr "Página de chegada"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14074,10 +14134,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14165,8 +14228,12 @@ msgstr "Mês passado"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14312,7 +14379,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14362,7 +14429,7 @@ msgstr "Carta"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14390,7 +14457,7 @@ msgstr "Nome do timbrado"
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14407,7 +14474,7 @@ msgstr "Cabeça Carta em HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14700,7 +14767,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14751,7 +14818,7 @@ msgid "Load Balancing"
msgstr "Balanceamento de carga"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14771,7 +14838,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14914,7 +14981,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14922,7 +14989,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14975,7 +15042,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14994,7 +15061,7 @@ msgstr ""
msgid "Logout"
msgstr "Sair"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15098,7 +15165,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15174,7 +15244,7 @@ msgstr "Obrigatório Depende"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15186,11 +15256,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15372,7 +15442,7 @@ msgstr ""
msgid "Maximum"
msgstr "Máximo"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15396,7 +15466,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15615,7 +15685,7 @@ msgstr "Método"
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15631,6 +15701,11 @@ msgstr ""
msgid "Middle Name"
msgstr "Nome do Meio"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15701,7 +15776,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15737,6 +15812,11 @@ msgstr "Móvel"
msgid "Mobile No"
msgstr "Telefone Celular"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Número de Celular"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15762,7 +15842,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15938,10 +16018,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Mais Informações"
@@ -15971,7 +16053,7 @@ msgstr ""
msgid "Move"
msgstr "Mover"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16007,7 +16089,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16057,7 +16139,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16075,7 +16157,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16115,7 +16197,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16217,12 +16299,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16237,6 +16319,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16245,7 +16331,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16258,6 +16344,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16266,7 +16358,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16327,7 +16419,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16362,7 +16454,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16458,7 +16550,7 @@ msgstr "Novo valor a ser definido"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16610,7 +16702,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16715,7 +16807,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16759,7 +16851,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16767,7 +16859,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16843,7 +16935,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16867,7 +16959,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16911,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16923,7 +17015,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16959,11 +17051,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16972,7 +17064,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17036,7 +17128,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17062,9 +17154,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17083,7 +17175,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17134,7 +17226,7 @@ msgstr "Inativo"
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17166,12 +17258,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Não Permitido"
@@ -17217,7 +17309,7 @@ msgstr "Nota: Para obter melhores resultados, as imagens devem ter o mesmo taman
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Observação: Serão permitidas múltiplas sessões no caso de dispositivo móvel"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17289,15 +17381,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17411,7 +17503,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17683,7 +17775,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17772,11 +17864,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17872,7 +17964,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17921,7 +18013,7 @@ msgstr "Inaugurado"
msgid "Operation"
msgstr "Operação"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17967,6 +18059,7 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17975,6 +18068,7 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18004,7 +18098,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18020,7 +18114,7 @@ msgstr ""
msgid "Order"
msgstr "Pedido"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18036,7 +18130,7 @@ msgstr "História da Organização"
msgid "Org History Heading"
msgstr "Cabeçalho da História da Organização"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18118,7 +18212,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18151,10 +18245,6 @@ msgstr ""
msgid "PDF Settings"
msgstr "Configurações do PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18366,7 +18456,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18470,8 +18560,8 @@ msgstr "Passivo"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18494,7 +18584,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr "Limite de geração de link de redefinição de senha"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18531,7 +18621,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18543,7 +18633,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18694,7 +18784,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18754,16 +18844,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18825,15 +18915,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18846,11 +18939,11 @@ msgstr "Telefone"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18932,11 +19025,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18948,7 +19041,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -18988,7 +19081,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19004,11 +19097,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19017,7 +19110,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19132,7 +19225,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19140,15 +19233,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19172,7 +19265,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19202,7 +19295,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19222,7 +19315,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19337,7 +19430,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19365,6 +19458,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19373,7 +19467,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19388,6 +19482,10 @@ msgstr ""
msgid "Precision"
msgstr "Precisão"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19436,7 +19534,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19571,13 +19669,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Impressão"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Impressão"
@@ -19647,7 +19745,7 @@ msgstr "Ajuda sobre Formatos de Impressão"
msgid "Print Format Type"
msgstr "Tipo do Formato de Impressão"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19686,7 +19784,7 @@ msgstr "Ocultar Impressão se não Preenchido"
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19704,7 +19802,7 @@ msgstr "Servidor de impressão"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19828,11 +19926,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19849,11 +19947,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Perfil atualizado com sucesso."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projeto"
@@ -19897,7 +20005,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20070,7 +20178,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "Falha na bandeja QZ:"
@@ -20277,7 +20385,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20403,11 +20511,11 @@ msgstr ""
msgid "Reason"
msgstr "Motivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20788,8 +20896,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20820,13 +20928,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21139,8 +21247,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21211,11 +21319,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21249,21 +21357,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21283,7 +21391,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21319,7 +21427,7 @@ msgstr "Relatórios"
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21338,7 +21446,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Solicitar Dados"
@@ -21390,6 +21501,11 @@ msgstr ""
msgid "Request URL"
msgstr "URL do pedido"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21445,7 +21561,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21453,11 +21569,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21492,7 +21608,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21632,7 +21748,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr "Inverta Ícone Cor"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21744,7 +21860,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21754,7 +21870,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21899,7 +22015,7 @@ msgstr "Redirecionamentos de rota"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21907,12 +22023,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21947,11 +22063,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21970,7 +22086,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22178,8 +22297,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22202,11 +22321,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22578,7 +22697,7 @@ msgstr "Configurações de Segurança"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22642,7 +22761,7 @@ msgstr "Selecionar"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22663,7 +22782,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22722,7 +22841,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22842,14 +22961,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22879,13 +22998,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23103,7 +23222,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23207,7 +23326,7 @@ msgstr ""
msgid "Server Action"
msgstr "Ação do Servidor"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23273,7 +23392,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23282,14 +23401,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23315,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23331,7 +23450,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23385,7 +23504,7 @@ msgstr ""
msgid "Set Role For"
msgstr "Definir papel para"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23404,7 +23523,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23423,18 +23542,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23544,7 +23666,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23685,6 +23807,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23813,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24020,22 +24148,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24043,13 +24171,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr "Sessões simultâneas"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24057,7 +24185,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Tamanho"
@@ -24317,7 +24445,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24384,8 +24512,8 @@ msgstr ""
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24417,7 +24545,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24433,7 +24561,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24551,6 +24679,7 @@ msgstr "Inicia em"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24686,7 +24815,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24716,7 +24845,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24814,7 +24943,7 @@ msgstr "Assunto"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24828,6 +24957,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24836,10 +24966,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Enviar"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Enviar"
@@ -24849,7 +24980,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Enviar"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Enviar"
@@ -24897,7 +25028,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24947,7 +25078,7 @@ msgstr "Subtítulo"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25162,7 +25293,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25473,7 +25604,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25688,7 +25819,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25703,7 +25834,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25756,7 +25887,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25786,7 +25917,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25857,7 +25988,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25868,7 +25999,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25880,7 +26011,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25941,12 +26072,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25970,11 +26101,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25986,7 +26117,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26043,7 +26174,7 @@ msgstr "Autenticação de Terceiros"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26051,6 +26182,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26076,6 +26211,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26094,7 +26234,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26136,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26171,7 +26311,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26221,7 +26361,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26229,7 +26369,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26371,9 +26511,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26634,7 +26776,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26709,7 +26851,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26835,7 +26977,7 @@ msgstr "Tópico"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26956,7 +27098,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26992,7 +27134,7 @@ msgstr "Transições"
msgid "Translatable"
msgstr "Traduzível"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr ""
@@ -27154,7 +27296,7 @@ msgstr "Método de autenticação de dois fatores"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27247,7 +27389,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr "URL para documentação ou ajuda"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27350,7 +27492,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27359,7 +27501,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Desatribuir condição"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27375,7 +27517,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27422,7 +27564,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27488,8 +27630,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27523,7 +27665,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Atualizar"
@@ -27557,6 +27699,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27615,7 +27762,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27772,11 +27919,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -27998,12 +28141,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28147,7 +28290,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr "Usuário {0} está desativado"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28275,8 +28418,8 @@ msgstr "Validade"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28308,7 +28451,7 @@ msgstr "Valor Alterado"
msgid "Value To Be Set"
msgstr "Valor a ser definido"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28324,11 +28467,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28353,7 +28496,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Valor para Validar"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28445,7 +28588,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28457,7 +28600,7 @@ msgstr ""
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28467,7 +28610,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28583,6 +28726,7 @@ msgid "Warehouse"
msgstr "Armazém"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Aviso"
@@ -28677,7 +28821,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29067,7 +29211,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29228,7 +29372,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29321,7 +29465,7 @@ msgstr "Empacotando"
msgid "Write"
msgstr "Escrever"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29350,7 +29494,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29412,7 +29556,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29448,6 +29592,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29486,12 +29634,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29499,7 +29647,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29572,11 +29720,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29626,11 +29774,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29648,7 +29796,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29691,15 +29839,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29711,11 +29859,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29735,7 +29883,7 @@ msgstr "Você tem uma nova mensagem de:"
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29763,7 +29911,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29780,11 +29928,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29808,7 +29956,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29899,6 +30047,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29944,7 +30096,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30006,11 +30158,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30318,7 +30470,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30347,7 +30499,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30685,7 +30837,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30795,7 +30947,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30836,7 +30988,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30846,7 +30998,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30902,7 +31054,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30919,7 +31071,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30996,7 +31148,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31041,7 +31193,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31090,7 +31242,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31110,12 +31262,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31123,11 +31275,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31147,7 +31299,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31171,7 +31323,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31181,8 +31333,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} é necessário"
@@ -31195,7 +31347,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31252,11 +31404,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31281,11 +31433,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31335,7 +31487,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31409,7 +31561,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31445,11 +31597,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31469,11 +31621,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31481,35 +31633,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31537,11 +31689,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31561,7 +31713,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31582,7 +31734,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31618,11 +31770,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31648,7 +31800,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index 17f2fee10f..ff74f68be0 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr ""
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr ""
@@ -86,11 +86,11 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -122,7 +122,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr ""
@@ -140,11 +140,11 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr ""
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr ""
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr ""
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr ""
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr ""
@@ -231,7 +231,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr ""
@@ -267,6 +267,16 @@ msgstr ""
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr ""
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -568,11 +578,16 @@ msgstr ""
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr ""
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr ""
@@ -694,7 +709,7 @@ msgstr ""
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -713,7 +728,7 @@ msgstr ""
msgid "API Key cannot be regenerated"
msgstr ""
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr ""
@@ -737,7 +752,7 @@ msgstr ""
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -823,7 +838,7 @@ msgstr ""
msgid "Access Token URL"
msgstr ""
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr ""
@@ -939,7 +954,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr ""
@@ -996,7 +1011,7 @@ msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1007,7 +1022,7 @@ msgstr ""
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr ""
@@ -1039,7 +1054,7 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
@@ -1052,8 +1067,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1147,7 +1162,7 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
@@ -1322,6 +1337,7 @@ msgstr ""
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1330,6 +1346,7 @@ msgstr ""
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr ""
@@ -1337,6 +1354,7 @@ msgstr ""
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr ""
@@ -1498,7 +1516,7 @@ msgstr ""
msgid "After Submit"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr ""
@@ -1525,11 +1543,11 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr ""
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr ""
@@ -1976,6 +1994,12 @@ msgstr ""
msgid "Alternative Email ID"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2052,6 +2076,11 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2234,7 +2263,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2319,7 +2348,7 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2355,7 +2384,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2363,7 +2392,7 @@ msgstr ""
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr ""
@@ -2418,6 +2447,12 @@ msgstr ""
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2427,7 +2462,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2570,7 +2605,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2650,7 +2685,7 @@ msgstr ""
msgid "Attached To Name"
msgstr ""
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr ""
@@ -2666,7 +2701,7 @@ msgstr ""
msgid "Attachment Limit (MB)"
msgstr ""
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
@@ -2688,11 +2723,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -3550,15 +3585,15 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr ""
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr ""
@@ -3782,7 +3817,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3842,7 +3877,7 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -3850,7 +3885,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3868,7 +3903,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3917,11 +3952,11 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr ""
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr ""
@@ -3965,11 +4000,11 @@ msgstr ""
msgid "Cannot create private workspace of other users"
msgstr ""
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4032,8 +4067,8 @@ msgstr ""
msgid "Cannot edit filters for standard charts"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr ""
@@ -4045,11 +4080,11 @@ msgstr ""
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr ""
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr ""
@@ -4057,7 +4092,7 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr ""
@@ -4073,7 +4108,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr ""
@@ -4102,11 +4137,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr ""
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4379,11 +4414,11 @@ msgstr ""
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4412,6 +4447,7 @@ msgid "Choose authentication method to be used by all users"
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr ""
@@ -4438,7 +4474,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4515,24 +4551,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr ""
@@ -4710,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4765,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4821,11 +4857,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr ""
@@ -4852,7 +4888,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr ""
@@ -5067,8 +5103,8 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5116,7 +5152,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr ""
@@ -5141,7 +5177,7 @@ msgstr ""
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr ""
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5160,7 +5196,7 @@ msgstr "Подтвердите доступ"
msgid "Confirm Deletion of Account"
msgstr ""
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr ""
@@ -5205,8 +5241,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5257,6 +5293,10 @@ msgstr ""
msgid "Contact"
msgstr ""
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5320,7 +5360,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5409,7 +5449,7 @@ msgstr ""
msgid "Copy to Clipboard"
msgstr ""
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr ""
@@ -5418,7 +5458,7 @@ msgstr ""
msgid "Copyright"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr ""
@@ -5442,7 +5482,7 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr ""
@@ -5495,13 +5535,14 @@ msgstr ""
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr ""
@@ -5533,13 +5574,13 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr ""
@@ -5553,7 +5594,7 @@ msgid "Create Card"
msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr ""
@@ -5587,12 +5628,12 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr ""
@@ -5600,7 +5641,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr ""
@@ -5623,8 +5664,8 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5640,7 +5681,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr ""
@@ -5650,7 +5691,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr ""
@@ -5987,7 +6028,7 @@ msgstr ""
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr ""
@@ -6022,7 +6063,7 @@ msgstr ""
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6041,7 +6082,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr ""
@@ -6272,7 +6313,7 @@ msgstr ""
msgid "Data Import Template"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr ""
@@ -6303,7 +6344,7 @@ msgstr ""
msgid "Database Storage Usage By Tables"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr ""
@@ -6673,13 +6714,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6712,7 +6753,7 @@ msgstr ""
msgid "Delete Data"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr ""
@@ -6726,7 +6767,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr ""
@@ -6768,12 +6809,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -6809,7 +6850,7 @@ msgstr ""
msgid "Deleted Name"
msgstr ""
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr ""
@@ -6817,7 +6858,7 @@ msgstr ""
msgid "Deleted!"
msgstr "Удалено!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr ""
@@ -7270,10 +7311,14 @@ msgstr "Не создавать нового пользователя"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr ""
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7697,13 +7742,13 @@ msgstr ""
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr ""
@@ -7748,15 +7793,15 @@ msgstr ""
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr ""
@@ -7898,7 +7943,7 @@ msgstr ""
msgid "Double click to edit label"
msgstr ""
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -7931,7 +7976,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr ""
@@ -8027,7 +8072,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8131,8 +8176,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8144,7 +8189,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8154,7 +8199,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8183,7 +8228,7 @@ msgstr ""
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8201,7 +8246,7 @@ msgstr ""
msgid "Edit Footer"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr ""
@@ -8303,7 +8348,7 @@ msgstr ""
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr ""
@@ -8348,6 +8393,8 @@ msgstr ""
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8366,6 +8413,8 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr ""
@@ -8485,6 +8534,7 @@ msgid "Email IDs"
msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr ""
@@ -8596,7 +8646,7 @@ msgstr ""
msgid "Email has been moved to trash"
msgstr ""
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr ""
@@ -8639,7 +8689,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr ""
@@ -8647,7 +8697,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9075,7 +9125,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr ""
@@ -9103,9 +9153,9 @@ msgstr ""
msgid "Error in Header/Footer Script"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr ""
@@ -9125,19 +9175,19 @@ msgstr ""
msgid "Error while connecting to email account {0}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9286,7 +9336,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9312,12 +9362,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
@@ -9375,13 +9425,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9574,7 +9624,7 @@ msgstr ""
msgid "Failed to connect to server"
msgstr ""
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr ""
@@ -9582,7 +9632,7 @@ msgstr ""
msgid "Failed to decrypt key {0}"
msgstr ""
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr ""
@@ -9738,7 +9788,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9821,7 +9871,7 @@ msgstr ""
msgid "Field {0} not found."
msgstr ""
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr ""
@@ -9839,7 +9889,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -9852,7 +9902,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9868,11 +9918,11 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -9912,7 +9962,7 @@ msgstr ""
msgid "Fields Multicheck"
msgstr ""
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
@@ -9920,7 +9970,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -9948,7 +9998,7 @@ msgstr ""
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr ""
@@ -10014,7 +10064,7 @@ msgstr ""
msgid "File backup is ready"
msgstr ""
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr ""
@@ -10022,7 +10072,7 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
@@ -10031,11 +10081,11 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr ""
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr ""
@@ -10049,8 +10099,8 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10089,11 +10139,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr ""
@@ -10170,7 +10220,7 @@ msgstr ""
msgid "Filters applied for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10218,8 +10268,12 @@ msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr ""
@@ -10300,7 +10354,7 @@ msgstr ""
msgid "Folder name should not include '/' (slash)"
msgstr ""
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr ""
@@ -10407,7 +10461,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10502,7 +10556,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10543,7 +10597,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10787,7 +10841,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr ""
@@ -10849,12 +10903,12 @@ msgstr ""
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
msgstr ""
#: frappe/core/doctype/communication/communication.js:291
@@ -10914,7 +10968,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr ""
@@ -10929,7 +10983,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr ""
@@ -11136,10 +11190,6 @@ msgstr ""
msgid "Google Calendar"
msgstr ""
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr ""
@@ -11334,14 +11384,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr ""
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11401,7 +11447,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11506,7 +11552,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11635,7 +11681,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr ""
@@ -11671,7 +11717,7 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr ""
@@ -11783,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr ""
@@ -11943,7 +11989,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12040,9 +12086,9 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
@@ -12270,8 +12316,8 @@ msgstr ""
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr ""
@@ -12358,11 +12404,11 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr ""
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr ""
@@ -12392,7 +12438,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12620,15 +12666,16 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr ""
@@ -12675,7 +12722,7 @@ msgstr ""
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr ""
@@ -12786,7 +12833,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr ""
@@ -12824,8 +12871,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr ""
@@ -12859,7 +12906,7 @@ msgstr ""
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12975,7 +13022,7 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -12985,7 +13032,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
@@ -13029,12 +13076,12 @@ msgstr ""
msgid "Invalid Fieldname"
msgstr ""
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr ""
@@ -13088,7 +13135,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr ""
@@ -13102,11 +13149,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13123,7 +13170,7 @@ msgstr ""
msgid "Invalid Transition"
msgstr ""
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13146,7 +13193,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13154,19 +13201,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr ""
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13174,11 +13221,11 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
@@ -13194,23 +13241,23 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr ""
@@ -13222,11 +13269,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13234,11 +13281,11 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr ""
@@ -13275,23 +13322,27 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr ""
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr ""
@@ -13395,7 +13446,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr ""
@@ -13448,6 +13499,10 @@ msgstr ""
msgid "Is Global"
msgstr ""
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr ""
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13474,8 +13529,13 @@ msgstr ""
msgid "Is Primary"
msgstr ""
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr ""
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr ""
@@ -13531,7 +13591,7 @@ msgstr ""
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr ""
@@ -13567,7 +13627,7 @@ msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr ""
@@ -13773,11 +13833,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14067,7 +14127,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr ""
@@ -14075,10 +14135,13 @@ msgstr ""
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14166,8 +14229,12 @@ msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr ""
@@ -14313,7 +14380,7 @@ msgstr ""
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr ""
@@ -14363,7 +14430,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14391,7 +14458,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14408,7 +14475,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr ""
@@ -14701,7 +14768,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14752,7 +14819,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr ""
@@ -14772,7 +14839,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr ""
@@ -14915,7 +14982,7 @@ msgstr ""
msgid "Login and view in Browser"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
@@ -14923,7 +14990,7 @@ msgstr ""
msgid "Login link sent to your email"
msgstr ""
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr ""
@@ -14976,7 +15043,7 @@ msgstr ""
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr ""
@@ -14995,7 +15062,7 @@ msgstr ""
msgid "Logout"
msgstr ""
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr ""
@@ -15099,7 +15166,10 @@ msgid "Major"
msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr ""
@@ -15175,7 +15245,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr ""
@@ -15187,11 +15257,11 @@ msgstr ""
msgid "Mandatory field: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr ""
@@ -15373,7 +15443,7 @@ msgstr ""
msgid "Maximum"
msgstr ""
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
@@ -15397,7 +15467,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15616,7 +15686,7 @@ msgstr ""
msgid "Method Not Allowed"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr ""
@@ -15632,6 +15702,11 @@ msgstr ""
msgid "Middle Name"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr ""
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15702,7 +15777,7 @@ msgstr ""
msgid "Missing Field"
msgstr ""
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr ""
@@ -15738,6 +15813,11 @@ msgstr ""
msgid "Mobile No"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr ""
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15763,7 +15843,7 @@ msgstr ""
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -15939,10 +16019,12 @@ msgstr ""
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr ""
@@ -15972,7 +16054,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr ""
@@ -16008,7 +16090,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr ""
@@ -16058,7 +16140,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr ""
@@ -16076,7 +16158,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16116,7 +16198,7 @@ msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16218,12 +16300,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16238,6 +16320,10 @@ msgstr ""
msgid "Navigation Settings"
msgstr ""
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr ""
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
@@ -16246,7 +16332,7 @@ msgstr ""
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16259,6 +16345,12 @@ msgstr ""
msgid "Network Printer Settings"
msgstr ""
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr ""
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16267,7 +16359,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16328,7 +16420,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr ""
@@ -16363,7 +16455,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16459,7 +16551,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr ""
@@ -16611,7 +16703,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16716,7 +16808,7 @@ msgstr ""
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr ""
@@ -16760,7 +16852,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr ""
@@ -16768,7 +16860,7 @@ msgstr ""
msgid "No Suggestions"
msgstr ""
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr ""
@@ -16844,7 +16936,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16868,7 +16960,7 @@ msgstr ""
msgid "No matching records. Search something new"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr ""
@@ -16912,7 +17004,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr ""
@@ -16924,7 +17016,7 @@ msgstr ""
msgid "No records deleted"
msgstr ""
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr ""
@@ -16960,11 +17052,11 @@ msgstr ""
msgid "No {0} Found"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -16973,7 +17065,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17037,7 +17129,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17063,9 +17155,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17084,7 +17176,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17135,7 +17227,7 @@ msgstr ""
msgid "Not allowed for {0}: {1}"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr ""
@@ -17167,12 +17259,12 @@ msgstr ""
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17218,7 +17310,7 @@ msgstr ""
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr ""
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr ""
@@ -17290,15 +17382,15 @@ msgstr ""
msgid "Notification sent to"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr ""
@@ -17412,7 +17504,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17684,7 +17776,7 @@ msgstr ""
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
@@ -17773,11 +17865,11 @@ msgstr ""
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17873,7 +17965,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17922,7 +18014,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr ""
@@ -17968,6 +18060,7 @@ msgstr ""
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -17976,6 +18069,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr ""
@@ -18005,7 +18099,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr ""
@@ -18021,7 +18115,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr ""
@@ -18037,7 +18131,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
@@ -18119,7 +18213,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr ""
@@ -18152,10 +18246,6 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr ""
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr ""
@@ -18367,7 +18457,7 @@ msgstr ""
msgid "Parent Document Type"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr ""
@@ -18471,8 +18561,8 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18495,7 +18585,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr ""
@@ -18532,7 +18622,7 @@ msgstr ""
msgid "Password set"
msgstr ""
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr ""
@@ -18544,7 +18634,7 @@ msgstr ""
msgid "Passwords do not match"
msgstr ""
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr ""
@@ -18695,7 +18785,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr ""
@@ -18755,16 +18845,16 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr ""
@@ -18826,15 +18916,18 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -18847,11 +18940,11 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -18933,11 +19026,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -18949,7 +19042,7 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
@@ -18989,7 +19082,7 @@ msgstr ""
msgid "Please contact your system manager to install correct version."
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr ""
@@ -19005,11 +19098,11 @@ msgstr ""
msgid "Please do not change the template headings."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19018,7 +19111,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr ""
@@ -19133,7 +19226,7 @@ msgstr ""
msgid "Please save to edit the template."
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr ""
@@ -19141,15 +19234,15 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19173,7 +19266,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19203,7 +19296,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr ""
@@ -19223,7 +19316,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19338,7 +19431,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr ""
@@ -19366,6 +19459,7 @@ msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr ""
@@ -19374,7 +19468,7 @@ msgstr ""
msgid "Posting Timestamp"
msgstr ""
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr ""
@@ -19389,6 +19483,10 @@ msgstr ""
msgid "Precision"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19437,7 +19535,7 @@ msgstr "Подготовленный отчет Аналитика"
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr ""
@@ -19572,13 +19670,13 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19648,7 +19746,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr ""
@@ -19687,7 +19785,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr ""
@@ -19705,7 +19803,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19829,11 +19927,11 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr ""
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr ""
@@ -19850,11 +19948,21 @@ msgstr ""
msgid "Profile"
msgstr ""
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr ""
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Профиль успешно обновлен."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
@@ -19898,7 +20006,7 @@ msgstr ""
msgid "Protect Attached Files"
msgstr ""
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr ""
@@ -20071,7 +20179,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Лоток не работает:"
@@ -20278,7 +20386,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr ""
@@ -20404,11 +20512,11 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr ""
@@ -20789,8 +20897,8 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -20821,13 +20929,13 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr ""
@@ -21140,8 +21248,8 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21212,11 +21320,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr ""
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
@@ -21250,21 +21358,21 @@ msgstr ""
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr ""
@@ -21284,7 +21392,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21320,7 +21428,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr ""
@@ -21339,7 +21447,10 @@ msgid "Request Body"
msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr ""
@@ -21391,6 +21502,11 @@ msgstr ""
msgid "Request URL"
msgstr ""
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr ""
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21446,7 +21562,7 @@ msgstr ""
msgid "Reset Fields"
msgstr ""
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr ""
@@ -21454,11 +21570,11 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr ""
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21493,7 +21609,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr ""
@@ -21633,7 +21749,7 @@ msgstr ""
msgid "Reverse Icon Color"
msgstr ""
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr ""
@@ -21745,7 +21861,7 @@ msgstr ""
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr ""
@@ -21755,7 +21871,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21900,7 +22016,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -21908,12 +22024,12 @@ msgstr ""
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr ""
@@ -21948,11 +22064,11 @@ msgstr ""
msgid "Row {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr ""
@@ -21971,7 +22087,10 @@ msgid "Rows Removed"
msgstr ""
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr ""
@@ -22179,8 +22298,8 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22203,11 +22322,11 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr ""
@@ -22579,7 +22698,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr ""
@@ -22643,7 +22762,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr ""
@@ -22664,7 +22783,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr ""
@@ -22723,7 +22842,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -22843,14 +22962,14 @@ msgid "Select a field to edit its properties."
msgstr ""
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
+msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -22880,13 +22999,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23104,7 +23223,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23208,7 +23327,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23274,7 +23393,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr ""
@@ -23283,14 +23402,14 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr ""
@@ -23316,12 +23435,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23332,7 +23451,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr ""
@@ -23386,7 +23505,7 @@ msgstr ""
msgid "Set Role For"
msgstr ""
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr ""
@@ -23405,7 +23524,7 @@ msgstr ""
msgid "Set all public"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr ""
@@ -23424,18 +23543,21 @@ msgstr ""
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr ""
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr ""
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23545,7 +23667,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr ""
@@ -23686,6 +23808,12 @@ msgstr ""
msgid "Show Error"
msgstr ""
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr ""
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -23814,7 +23942,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr ""
@@ -24021,22 +24149,22 @@ msgstr ""
msgid "Signups have been disabled for this website."
msgstr ""
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
@@ -24044,13 +24172,13 @@ msgstr ""
msgid "Simultaneous Sessions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr ""
@@ -24058,7 +24186,7 @@ msgstr ""
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr ""
@@ -24318,7 +24446,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24385,8 +24513,8 @@ msgstr "Укажите домены или источники, которым р
msgid "Splash Image"
msgstr ""
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr ""
@@ -24418,7 +24546,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24434,7 +24562,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24552,6 +24680,7 @@ msgstr ""
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24687,7 +24816,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr ""
@@ -24717,7 +24846,7 @@ msgstr ""
msgid "Store Attached PDF Document"
msgstr ""
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr ""
@@ -24815,7 +24944,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -24829,6 +24958,7 @@ msgstr ""
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -24837,10 +24967,11 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24850,7 +24981,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr ""
@@ -24898,7 +25029,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -24948,7 +25079,7 @@ msgstr ""
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25163,7 +25294,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr ""
@@ -25474,7 +25605,7 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr ""
@@ -25689,7 +25820,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25704,7 +25835,7 @@ msgstr ""
msgid "The Condition '{0}' is invalid"
msgstr ""
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr ""
@@ -25757,7 +25888,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -25787,7 +25918,7 @@ msgstr ""
msgid "The field {0} is mandatory"
msgstr ""
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
@@ -25858,7 +25989,7 @@ msgid "The project number obtained from Google Cloud Console under
Click here to download:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
#: frappe/core/doctype/user/user.py:1000
@@ -25869,7 +26000,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25881,7 +26012,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25942,12 +26073,12 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
@@ -25971,11 +26102,11 @@ msgstr ""
msgid "There is nothing new to show you right now."
msgstr ""
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -25987,7 +26118,7 @@ msgstr ""
msgid "There was an error building this page"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr ""
@@ -26044,7 +26175,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr ""
@@ -26052,6 +26183,10 @@ msgstr ""
msgid "This Month"
msgstr ""
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr ""
@@ -26077,6 +26212,11 @@ msgstr ""
msgid "This cannot be undone"
msgstr ""
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr ""
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26095,7 +26235,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -26137,7 +26277,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"eval:doc.age>18"
msgstr ""
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr ""
@@ -26172,7 +26312,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26222,7 +26362,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26230,7 +26370,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr ""
@@ -26372,9 +26512,11 @@ msgstr ""
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26635,7 +26777,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26710,7 +26852,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26836,7 +26978,7 @@ msgstr ""
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr ""
@@ -26957,7 +27099,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26993,7 +27135,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Перевести данные"
@@ -27155,7 +27297,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27248,7 +27390,7 @@ msgstr ""
msgid "URL for documentation or help"
msgstr ""
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr ""
@@ -27351,7 +27493,7 @@ msgstr ""
msgid "Unable to update event"
msgstr ""
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr ""
@@ -27360,7 +27502,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
@@ -27376,7 +27518,7 @@ msgstr ""
msgid "Undo last action"
msgstr ""
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr ""
@@ -27423,7 +27565,7 @@ msgstr ""
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr ""
@@ -27489,8 +27631,8 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr ""
@@ -27524,7 +27666,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr ""
@@ -27558,6 +27700,11 @@ msgstr ""
msgid "Update Password"
msgstr ""
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr ""
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27616,7 +27763,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr ""
@@ -27773,11 +27920,7 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr ""
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -27999,12 +28142,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28148,7 +28291,7 @@ msgstr ""
msgid "User {0} is disabled"
msgstr ""
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr ""
@@ -28276,8 +28419,8 @@ msgstr ""
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28309,7 +28452,7 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
@@ -28325,11 +28468,11 @@ msgstr ""
msgid "Value for a check field can be either 0 or 1"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28354,7 +28497,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr ""
@@ -28446,7 +28589,7 @@ msgstr ""
msgid "View Audit Trail"
msgstr ""
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr ""
@@ -28458,7 +28601,7 @@ msgstr "Просмотр файла"
msgid "View Full Log"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr ""
@@ -28468,7 +28611,7 @@ msgstr ""
msgid "View Log"
msgstr ""
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr ""
@@ -28584,6 +28727,7 @@ msgid "Warehouse"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -28678,7 +28822,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr ""
@@ -29068,7 +29212,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Будет запускать запланированные задания только раз в день для неактивных сайтов. Установите значение 0, чтобы избежать автоматического отключения планировщика."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr ""
@@ -29229,7 +29373,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29322,7 +29466,7 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr ""
@@ -29351,7 +29495,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr ""
@@ -29413,7 +29557,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29449,6 +29593,10 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr ""
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr ""
@@ -29487,12 +29635,12 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr ""
@@ -29500,7 +29648,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29573,11 +29721,11 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr ""
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr ""
@@ -29627,11 +29775,11 @@ msgstr ""
msgid "You can use wildcard %"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr ""
@@ -29649,7 +29797,7 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -29692,15 +29840,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29712,11 +29860,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr ""
@@ -29736,7 +29884,7 @@ msgstr "У вас новое сообщение от:"
msgid "You have been successfully logged out"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
@@ -29764,7 +29912,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr ""
@@ -29781,11 +29929,11 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr ""
@@ -29809,7 +29957,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29900,6 +30048,10 @@ msgstr ""
msgid "You viewed this"
msgstr ""
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr ""
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr ""
@@ -29945,7 +30097,7 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr ""
@@ -30007,11 +30159,11 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
msgstr ""
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30319,7 +30471,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr ""
@@ -30348,7 +30500,7 @@ msgstr ""
msgid "logged in"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr ""
@@ -30686,7 +30838,7 @@ msgstr ""
msgid "via Google Meet"
msgstr ""
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr ""
@@ -30796,7 +30948,7 @@ msgstr ""
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -30837,7 +30989,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30847,7 +30999,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr ""
@@ -30903,7 +31055,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr ""
@@ -30920,7 +31072,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr ""
@@ -30997,7 +31149,7 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
@@ -31042,7 +31194,7 @@ msgstr ""
msgid "{0} is a mandatory field"
msgstr ""
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr ""
@@ -31091,7 +31243,7 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr ""
@@ -31111,12 +31263,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31124,11 +31276,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31148,7 +31300,7 @@ msgstr ""
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr ""
@@ -31172,7 +31324,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -31182,8 +31334,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -31196,7 +31348,7 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr ""
@@ -31253,11 +31405,11 @@ msgstr ""
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr ""
@@ -31282,11 +31434,11 @@ msgid "{0} not found"
msgstr ""
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31336,7 +31488,7 @@ msgstr ""
msgid "{0} removed {1} rows from {2}"
msgstr ""
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr ""
@@ -31410,7 +31562,7 @@ msgstr ""
msgid "{0} un-shared this document with {1}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr ""
@@ -31446,11 +31598,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31470,11 +31622,11 @@ msgstr ""
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr ""
@@ -31482,35 +31634,35 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} complete | Пожалуйста, оставьте эту вкладку открытой до завершения."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr ""
@@ -31538,11 +31690,11 @@ msgstr ""
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
@@ -31562,7 +31714,7 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
@@ -31583,7 +31735,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr ""
@@ -31619,11 +31771,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31649,7 +31801,7 @@ msgstr ""
msgid "{} is not a valid date string."
msgstr ""
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index 799ba05d14..4c9b847c32 100644
--- a/frappe/locale/sr.po
+++ b/frappe/locale/sr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-09 17:28\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-07 23:26\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'У глобалној претрази' није дозвољено з
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'У приказу листе' није дозвољено за поље {0} врсте {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'У приказу листе' није дозвољено за врсту {0} у реду {1}"
@@ -86,11 +86,11 @@ msgstr "'У приказу листе' није дозвољено за врст
msgid "'Recipients' not specified"
msgstr "'Примаоци' нису наведени"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' није важећи IBAN"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' није важећи URL"
@@ -122,7 +122,7 @@ msgstr "0 - Нацрт; 1 - Поднето; 2 - Отказано"
msgid "0 is highest"
msgstr "0 је највише"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = тачно и 0 = нетачно"
@@ -141,11 +141,11 @@ msgstr "1 дан"
msgid "1 Google Calendar Event synced."
msgstr "1 догађај из Google Calendar-а је синхронизован."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 извештај"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "пре 1 дан"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 сат"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "пре 1 сата"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "пре 1 минут"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "пре 1 месец"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr "1 ред у {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "пре 1 секунде"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "пре 1 недељу"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "пре 1 годину"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "пре 2 сата"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "пре 2 месеца"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "пре 2 недеље"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "пре 2 године"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "пре 3 минута"
@@ -232,7 +232,7 @@ msgstr "4 сата"
msgid "5 Records"
msgstr "5 записа"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "пре 5 дана"
@@ -268,6 +268,16 @@ msgstr "{0} није важећи URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr " Молимо Вас да не ажурирате јер то може пореметити Ваш образац. Користите поље прилагоди приказ обрасца или прилагођена поља да бисте поставили својства!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr "Затражите фајл који садржи Ваше личне податке сачуване у нашем систему. Фајл ће бити у JSON формату и биће Вам послат путем имејла. Уколико желите да се Ваши лични подаци избришу из нашег система, молимо Вас да поднесете захтев за брисање података.
"
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr "Пошаљите захтев за брисање Вашег налога и личних података који су сачувани у нашем систему. Добићете имејл за потврду Вашег захтева. Након потврде сви Ваши лични подаци биће обрисани. Уколико само желите да проверите које личне податке имамо сачуване, можете затражити своје податке.
"
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -753,11 +763,16 @@ msgstr "Назив DocType-а треба да почне са словом и м
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "Једна инстанца Frappe Framework може функционисати и као OAuth клијент, ресурс или ауторизациони сервер. Овај DocType садржи подешавања везана за сва три."
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "Линк за преузимање Ваших података биће послат на имејл адресу повезану са Вашим налогом."
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Поље са називом {0} већ постоји у {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Фајл са истим називом {} већ постоји"
@@ -880,7 +895,7 @@ msgstr "API Endpoint Args морају бити валидан JSON"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -899,7 +914,7 @@ msgstr "API кључ и тајна за интеракцију са релаy с
msgid "API Key cannot be regenerated"
msgstr "API кључ се не може поново генерисати"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API кључеви"
@@ -923,7 +938,7 @@ msgstr "Евиденција API захтева"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1009,7 +1024,7 @@ msgstr "Приступни токен"
msgid "Access Token URL"
msgstr "URL приступног токена"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Приступ није дозвољен са ове IP адресе"
@@ -1125,7 +1140,7 @@ msgstr "Радње {0} није успела на {1} {2}. Прегледајт
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Радње"
@@ -1182,7 +1197,7 @@ msgstr "Дневник активности"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1193,7 +1208,7 @@ msgstr "Дневник активности"
msgid "Add"
msgstr "Додај"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Додај / Уклони колоне"
@@ -1225,7 +1240,7 @@ msgstr "Додај ивицу на дну"
msgid "Add Border at Top"
msgstr "Додај ивицу на врху"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Додај картицу на контролну таблу"
@@ -1238,8 +1253,8 @@ msgid "Add Child"
msgstr "Додај зависни елемент"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1333,7 +1348,7 @@ msgstr "Додај претплатнике"
msgid "Add Tags"
msgstr "Додај ознаке"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Додај ознаке"
@@ -1508,6 +1523,7 @@ msgstr "Додатне дозволе"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1516,6 +1532,7 @@ msgstr "Адреса"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Адреса, ред 1"
@@ -1523,6 +1540,7 @@ msgstr "Адреса, ред 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Адреса, ред 2"
@@ -1684,7 +1702,7 @@ msgstr "Након подношења"
msgid "After Submit"
msgstr "Након подношења"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Агрегатно поље је потребно за креирање бројчане картице"
@@ -1711,11 +1729,11 @@ msgstr "Упозорење"
msgid "Alerts and Notifications"
msgstr "Упозорења и обавештења"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Псеудоним не може бити SQL резервисана реч: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Псеудоним мора бити текст"
@@ -2163,6 +2181,12 @@ msgstr "Такође додавање поља од зависности ста
msgid "Alternative Email ID"
msgstr "Алтернативни имејл ИД"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "Увек"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2239,6 +2263,11 @@ msgstr "Измена није дозвољена"
msgid "Amendment naming rules updated."
msgstr "Правила именовања измена ажурирана."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "Имејл за потврду Вашег захтева је послат на Вашу имејл адресу. Молимо Вас да потврдите захтев како бисте завршили процес."
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије"
@@ -2421,7 +2450,7 @@ msgstr "Примењено на"
msgid "Apply"
msgstr "Примени"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Примени правило доделе"
@@ -2506,7 +2535,7 @@ msgstr "Архивиране колоне"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Да ли сте сигурни да желите да откажете позивницу?"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "Да ли сте сигурни да желите да очистите додељене задатке?"
@@ -2542,7 +2571,7 @@ msgstr "Да ли сте сигурни да желите да обришете
msgid "Are you sure you want to discard the changes?"
msgstr "Да ли сте сигурни да желите да одбаците промене?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Да ли сте сигурни да желите да генеришете нови извештај?"
@@ -2550,7 +2579,7 @@ msgstr "Да ли сте сигурни да желите да генерише
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Да ли сте сигурни да желите да спојите {0} са {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Да ли сте сигурни да желите да наставите?"
@@ -2605,6 +2634,12 @@ msgstr "Пошто је дељење докумената онемогућено
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "Према Вашем захтеву, Ваш налог и подаци на {0} повезани са имејл адресом {1} су трајно обрисани"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "Питај"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2614,7 +2649,7 @@ msgstr "Додели услов"
msgid "Assign To"
msgstr "Додели"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Додели"
@@ -2757,7 +2792,7 @@ msgstr "Додељени задаци"
msgid "Asynchronous"
msgstr "Асинхроно"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Барем једна колона је обавезна за приказ у табели."
@@ -2837,7 +2872,7 @@ msgstr "Приложено уз поље"
msgid "Attached To Name"
msgstr "Приложено уз назив"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Приложено уз назив мора бити текст или број"
@@ -2853,7 +2888,7 @@ msgstr "Прилог"
msgid "Attachment Limit (MB)"
msgstr "Ограничење прилога (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Ограничење прилога достигнуто"
@@ -2875,11 +2910,11 @@ msgstr "Прилог уклоњен"
msgid "Attachments"
msgstr "Прилози"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Покушава се повезивање са QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Покушава се покретање QZ Tray..."
@@ -3738,15 +3773,15 @@ msgstr "Масовно брисање"
msgid "Bulk Edit"
msgstr "Масовно уређивање"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Масовно уређивање {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Масовна операција није успела"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Масовна операција је успешно завршена"
@@ -3970,7 +4005,7 @@ msgid "Camera"
msgstr "Камера"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4030,7 +4065,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0}
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4038,7 +4073,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0}
msgid "Cancel"
msgstr "Откажи"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Откажи"
@@ -4056,7 +4091,7 @@ msgstr "Откажи све"
msgid "Cancel All Documents"
msgstr "Откажи све документе"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Откажи {0} документа?"
@@ -4105,11 +4140,11 @@ msgstr "Није могуће преузети вредности"
msgid "Cannot Remove"
msgstr "Није могуће уклонити"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Није могуће ажурирати након подношења"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "Није могуће приступити путањи фајла {0}"
@@ -4153,11 +4188,11 @@ msgstr "Није могуће креирати {0} против зависног
msgid "Cannot create private workspace of other users"
msgstr "Није могуће креирати приватни радни простор за остале кориснике"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Није могуће обрисати почетне и приложене датотеке"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}"
@@ -4220,8 +4255,8 @@ msgstr "Није могуће уредити отказан документ"
msgid "Cannot edit filters for standard charts"
msgstr "Није могуће уредити филтере за стандардне графиконе"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Није могуће уредити филтере за стандардне бројчане картице"
@@ -4233,11 +4268,11 @@ msgstr "Није могуће уредити стандардна поља"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "Није могуће дозволити {0} за доцтyпе који се не може поднети"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "Није могуће пронаћи фајл {} на диску"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "Није могуће преузети садржај фајла из датотеке"
@@ -4245,7 +4280,7 @@ msgstr "Није могуће преузети садржај фајла из д
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Није могуће мапирати више штампача на један формат за штампу."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "Није могуће увозити табелу са више од 5000 редова."
@@ -4261,7 +4296,7 @@ msgstr "Није могуће мапирање јер следећи услов
msgid "Cannot match column {0} with any field"
msgstr "Није могуће упарити колону {0} ни са једним пољем"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Није могуће померити ред"
@@ -4290,11 +4325,11 @@ msgstr "Није могуће поднети {0}."
msgid "Cannot update {0}"
msgstr "Није могуће ажурирати {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "Није могуће користити подупит овде."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "Није могуће користити {0} у команди сортирај/групиши по"
@@ -4567,11 +4602,11 @@ msgstr "Зависна табела {0} за поље {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Зависне табеле се приказују као табеле у другим DocType-овима"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Зависна поља упита за '{0}' морају бити врсте листа или tuple."
@@ -4600,6 +4635,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Изабери метод аутентификације који ће користити сви корисници"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Град"
@@ -4626,7 +4662,7 @@ msgstr "Очисти и додај шаблон"
msgid "Clear All"
msgstr "Очисти све"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Очисти додељене задатке"
@@ -4703,24 +4739,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Кликните на {0} да генеришете токен за освежавање."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Кликните на табелу да бисте је уредили"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Кликните да поставите динамичке филтере"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Кликните да поставите филтере"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Кликните да сортирате по {0}"
@@ -4898,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Сажми"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Сажми све"
@@ -4953,7 +4989,7 @@ msgstr "Склопиво зависи од (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5009,11 +5045,11 @@ msgstr "Назив колоне"
msgid "Column Name cannot be empty"
msgstr "Назив колоне не може бити празан"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Ширина колоне"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Ширина колоне не може бити нула."
@@ -5040,7 +5076,7 @@ msgstr "Колоне"
msgid "Columns / Fields"
msgstr "Колоне / Поља"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Колоне засноване на"
@@ -5255,8 +5291,8 @@ msgstr "Компримовати"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5304,7 +5340,7 @@ msgstr "Конфигурација"
msgid "Configure Chart"
msgstr "Конфигуришите дијаграм"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Конфигуришите колоне"
@@ -5331,7 +5367,7 @@ msgstr "Конфигуришите како ће се називати изме
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Конфигуришите различите аспекте како функционише именовање докумената, као што су серије именовања, тренутни бројач."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Потврди"
@@ -5350,7 +5386,7 @@ msgstr "Потврди приступ"
msgid "Confirm Deletion of Account"
msgstr "Потврди уклањање налога"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Потврди нову лозинку"
@@ -5395,8 +5431,8 @@ msgstr "Повезане апликације"
msgid "Connected User"
msgstr "Повезани корисник"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Повезано са QZ Tray!"
@@ -5447,6 +5483,10 @@ msgstr "Ограничења"
msgid "Contact"
msgstr "Контакт"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "Контакт / имејл није пронађен. Учесник није додат за -
{0}"
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5510,7 +5550,7 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5599,7 +5639,7 @@ msgstr "Копирај грешку у међуспремник"
msgid "Copy to Clipboard"
msgstr "Копирај у међуспремник"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "Копирајте токен у међуспремник"
@@ -5608,7 +5648,7 @@ msgstr "Копирајте токен у међуспремник"
msgid "Copyright"
msgstr "Ауторска права"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Основни DocType-ови не могу бити прилагођени."
@@ -5632,7 +5672,7 @@ msgstr "Није било могуће пронаћи {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Није било могуће мапирати колону {0} на поље {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "Није могуће обрадити поље: {0}"
@@ -5685,13 +5725,14 @@ msgstr "Бројач"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Држава"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Шифра државе је неопходна"
@@ -5723,13 +5764,13 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Креирај"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Креирај и настави"
@@ -5743,7 +5784,7 @@ msgid "Create Card"
msgstr "Креирај картицу"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Креирај графикон"
@@ -5777,12 +5818,12 @@ msgstr "Креирај евиденцију"
msgid "Create New"
msgstr "Креирај нови"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Креирај нови"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Креирај нови DocType"
@@ -5790,7 +5831,7 @@ msgstr "Креирај нови DocType"
msgid "Create New Kanban Board"
msgstr "Креирај нову Канбан таблу"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Креирај кориснички имејл"
@@ -5813,8 +5854,8 @@ msgstr "Креирај нови запис"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Креирај нови {0}"
@@ -5830,7 +5871,7 @@ msgstr "Креирај или уреди формат штампе"
msgid "Create or Edit Workflow"
msgstr "Креирај или уреди радни ток"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Креирај свој први {0}"
@@ -5840,7 +5881,7 @@ msgstr "Креирајте Ваш радни ток визуално корис
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Креирано"
@@ -6177,7 +6218,7 @@ msgstr "Прилагођена get_list метода за {0} мора врат
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Прилагођени?"
@@ -6212,7 +6253,7 @@ msgstr "Прилагођавање за {0} су извезена:
{1}
msgid "Customize"
msgstr "Прилагоди"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Прилагоди"
@@ -6231,7 +6272,7 @@ msgstr "Прилагоди контролну таблу"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Прилагоди образац"
@@ -6462,7 +6503,7 @@ msgstr "Евиденција увоза података"
msgid "Data Import Template"
msgstr "Шаблон за увоз податка"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Подаци су преобимни"
@@ -6493,7 +6534,7 @@ msgstr "Искоришћеност величине реда базе подат
msgid "Database Storage Usage By Tables"
msgstr "Искоришћеност простора базе података по табелама"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Ограничење величине реда табеле базе података"
@@ -6863,13 +6904,13 @@ msgstr "Кашњење"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Обриши"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Обриши"
@@ -6902,7 +6943,7 @@ msgstr "Обриши колону"
msgid "Delete Data"
msgstr "Обриши податке"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Обриши Канбан таблу"
@@ -6916,7 +6957,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Обриши картицу"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Обриши и генериши нови"
@@ -6958,12 +6999,12 @@ msgstr "Обриши картицу"
msgid "Delete this record to allow sending to this email address"
msgstr "Обриши овај запис да би омогућио слање на ову имејл адресу"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Трајно обриши {0} ставку?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Трајно обриши {0} ставке?"
@@ -6999,7 +7040,7 @@ msgstr "Обрисани документи"
msgid "Deleted Name"
msgstr "Обрисани назив"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Сви документи су успешно обрисани"
@@ -7007,7 +7048,7 @@ msgstr "Сви документи су успешно обрисани"
msgid "Deleted!"
msgstr "Обрисано!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Брисање {0}"
@@ -7460,10 +7501,14 @@ msgstr "Немој креирати новог корисника"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Немој креирати новог корисника уколико корисник са тим имејлом не постоји у систему"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Немој уређивати заглавља која су унапред постављена у шаблону"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "Не упозоравај ме више на {0}"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Да ли још увек желите да наставите?"
@@ -7890,13 +7935,13 @@ msgstr "Наслов документа"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Врста документа"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "Врста и функција документа су неопходне да би се креирала бројчана картица"
@@ -7941,15 +7986,15 @@ msgstr "Документ је откључан"
msgid "Document follow is not enabled for this user."
msgstr "Праћење документа није омогућено за овог корисника."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Документ је отказан"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Документ је поднет"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Документ у стању нацрта"
@@ -8091,7 +8136,7 @@ msgstr "Кружни"
msgid "Double click to edit label"
msgstr "Кликни два пута да уредиш ознаку"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8124,7 +8169,7 @@ msgstr "Преузми линк"
msgid "Download PDF"
msgstr "Преузми PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Преузми извештај"
@@ -8220,7 +8265,7 @@ msgstr "Дупликат уноса"
msgid "Duplicate Filter Name"
msgstr "Дупликат назив филтера"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Дупликат назива"
@@ -8324,8 +8369,8 @@ msgstr "ИЗЛАЗ"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8337,7 +8382,7 @@ msgstr "ИЗЛАЗ"
msgid "Edit"
msgstr "Уреди"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Уреди"
@@ -8347,7 +8392,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Уреди"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Уреди"
@@ -8376,7 +8421,7 @@ msgstr "Уреди прилагођени HTML"
msgid "Edit DocType"
msgstr "Уреди DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Уреди DocType"
@@ -8394,7 +8439,7 @@ msgstr "Уреди филтере"
msgid "Edit Footer"
msgstr "Уреди подножје"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Уреди формат"
@@ -8496,7 +8541,7 @@ msgstr "Уреди {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Табела која се може уређивати"
@@ -8541,6 +8586,8 @@ msgstr "Избор елемента"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8559,6 +8606,8 @@ msgstr "Избор елемента"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "Имејл"
@@ -8678,6 +8727,7 @@ msgid "Email IDs"
msgstr "Имејл ИД"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Имејл ИД"
@@ -8789,7 +8839,7 @@ msgstr "Имејл је означен као спам"
msgid "Email has been moved to trash"
msgstr "Имејл је премештен у отпад"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "Имејл је обавезан за креирање корисничког имејла"
@@ -8832,7 +8882,7 @@ msgstr "Имејлови ће бити послати са следећим мо
msgid "Embed code copied"
msgstr "Код за уградњу је копиран"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Празан псеудоним није дозвољен"
@@ -8840,7 +8890,7 @@ msgstr "Празан псеудоним није дозвољен"
msgid "Empty column"
msgstr "Празна колона"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Аргументи као празан текст нису дозвољени"
@@ -9269,7 +9319,7 @@ msgstr "Евиденције грешака"
msgid "Error Message"
msgstr "Порука о грешци"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Грешка при повезивању са QZ Tray апликацијом...
Потребно је да имате инсталирану и покренуту QZ Tray апликацију, да бисте могли да користите функцију необрађене штампе.
Кликните овде да бисте преузели и инсталирали QZ Tray.
Кликните овде да бисте научили више о необрађеној штампи.."
@@ -9297,9 +9347,9 @@ msgstr "Грешка у клијентској скрипти."
msgid "Error in Header/Footer Script"
msgstr "Грешка у скрипти заглавља/подножја"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Грешка у обавештењу"
@@ -9319,19 +9369,19 @@ msgstr "Грешка приликом обраде угњеждених филт
msgid "Error while connecting to email account {0}"
msgstr "Грешка при повезивању са имејл налогом {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Грешка при обради обавештења {0}. Молимо Вас да исправите Ваш шаблон."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Грешка: Подаци недостају у табели {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Грешка: Вредност недостаје за {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Грешка: {0} Ред #{1}: Вредност недостаје за: {2}"
@@ -9480,7 +9530,7 @@ msgstr "Извршавање кода"
msgid "Executing..."
msgstr "Извршавање..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Време извршавања: {0} секунди"
@@ -9506,12 +9556,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Прошири"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Прошири све"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Очекиван је оператор 'and' или 'or', пронађено: {0}"
@@ -9569,13 +9619,13 @@ msgstr "Време истека страница са QR кодом"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Извоз"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Извоз"
@@ -9768,7 +9818,7 @@ msgstr "Неуспешно израчунавање тела захтева: {}"
msgid "Failed to connect to server"
msgstr "Неуспешно повезивање са сервером"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Неуспешно декодирање токена, молимо Вас да пружите валидан басе64-енкодирани токен."
@@ -9776,7 +9826,7 @@ msgstr "Неуспешно декодирање токена, молимо Ва
msgid "Failed to decrypt key {0}"
msgstr "Неуспешно дешифровање кључа {0}"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Неуспешно брисање {0} докумената: {1}"
@@ -9932,7 +9982,7 @@ msgstr "Преузми подразумеване документе за гло
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10015,7 +10065,7 @@ msgstr "Поље {0} се односи на непостојећи доцтyпе
msgid "Field {0} not found."
msgstr "Поље {0} није пронађено."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "Поље {0} у документу {1} није ни поље за мобилни број, ни линк за купца или корисника"
@@ -10033,7 +10083,7 @@ msgstr "Поље {0} у документу {1} није ни поље за мо
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Назив поља"
@@ -10046,7 +10096,7 @@ msgstr "Назив поља '{0}' је у конфликту са {1} назив
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Назив поља је ограничен на 64 карактера ({0})"
@@ -10062,11 +10112,11 @@ msgstr "Назив поља које ће бити DocType за ово линк
msgid "Fieldname {0} appears multiple times"
msgstr "Назив поља {0} се појављује више пута"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Назив поље {0} је у конфликту са мета објектом"
@@ -10106,7 +10156,7 @@ msgstr "Поља"
msgid "Fields Multicheck"
msgstr "Поља за више означавања"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Поља `file_name` или `file_url` морају бити постављена за фајл"
@@ -10114,7 +10164,7 @@ msgstr "Поља `file_name` или `file_url` морају бити поста
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Поља морају бити листа или тупле када је опција аслист омогућена"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Поља морају бити текст, листа, tuple, pypika поље или pypika функција"
@@ -10142,7 +10192,7 @@ msgstr "Врста поља"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Врста поља не може бити промењена са {0} на {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Врста поља не може бити промењена са {0} на {1} у реду {2}"
@@ -10208,7 +10258,7 @@ msgstr "URL фајла"
msgid "File backup is ready"
msgstr "Резервна копија фајла је спремна"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Назив фајла не може садржати {0}"
@@ -10216,7 +10266,7 @@ msgstr "Назив фајла не може садржати {0}"
msgid "File not attached"
msgstr "Фајл није приложен"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Величина фајла је премашила максималну дозвољену величину од {0} MB"
@@ -10225,11 +10275,11 @@ msgstr "Величина фајла је премашила максималну
msgid "File too big"
msgstr "Фајл је превелики"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Врста фајла {0} није дозвољена"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Фајл {0} не постоји"
@@ -10243,8 +10293,8 @@ msgstr "Фајлови"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10283,11 +10333,11 @@ msgstr "Филтер назива"
msgid "Filter Values"
msgstr "Филтер вредности"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "Недостаје услов филтера након оператора: {0}"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "Поља филтера не могу садржати backticks (`)."
@@ -10364,7 +10414,7 @@ msgstr "Одељак филтера"
msgid "Filters applied for {0}"
msgstr "Филтери примењени за {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Филтери сачувани"
@@ -10412,8 +10462,12 @@ msgstr "Први дан у недељи"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Име"
@@ -10494,7 +10548,7 @@ msgstr "Назив датотеке"
msgid "Folder name should not include '/' (slash)"
msgstr "Назив датотеке не би требало да укључује '/' (косу црту)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Датотека {0} није празна"
@@ -10601,7 +10655,7 @@ msgstr "Детаљи подножја"
msgid "Footer HTML"
msgstr "HTML подножје"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "HTML подножје постављено из прилога {0}"
@@ -10697,7 +10751,7 @@ msgstr "За корисника"
msgid "For Value"
msgstr "За вредност"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "За поређење, користите >5, <10 или =324. За опсеге, користите 5:10 (за вредности између 5 и 10)."
@@ -10738,7 +10792,7 @@ msgstr "За више адреса, унесите адресе у различ
msgid "For updating, you can update only selective columns."
msgstr "За ажурирање, можете ажурирати само одређене колоне."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "За {0} на нивоу {1} у {2} у реду {3}"
@@ -10982,7 +11036,7 @@ msgstr "Датум почетка"
msgid "From Date Field"
msgstr "Поље за датум почетка"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Од врсте документа"
@@ -11044,13 +11098,13 @@ msgstr "Функција заснована на"
msgid "Function {0} is not whitelisted."
msgstr "Функција {0} није на листи дозвољених."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "Функција {0} захтева аргументе, али ни један није наведен"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Даље чворове је могуће креирати само у оквиру чворова врсте 'Група'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "Даље подгрупе могу се креирати само унутар записа означених као 'Група'"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11109,7 +11163,7 @@ msgstr "Опште"
msgid "Generate Keys"
msgstr "Генериши кључеве"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Генериши нови извештај"
@@ -11124,7 +11178,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "Генериши одвојене документе за сваког додељеног корисника"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Генериши URL за праћење"
@@ -11331,10 +11385,6 @@ msgstr "Анонимизуј ИП адресу у Google Аналyтицс"
msgid "Google Calendar"
msgstr "Google Calendar"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Calendar - Контакт / имејл није пронађен. Није додат учесник за -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Calendar - Није могуће креирати календар за {0}, код грешке {1}."
@@ -11529,14 +11579,10 @@ msgstr "Врста Груписано по"
msgid "Group By field is required to create a dashboard chart"
msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "Груписано по мора бити текст"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Чвор групе"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11596,7 +11642,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11701,7 +11747,7 @@ msgstr "Заглавље"
msgid "Header HTML"
msgstr "HTML заглавље"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "HTML заглавље постављено из прилога {0}"
@@ -11830,7 +11876,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Ево Вашег URL за праћење"
@@ -11866,7 +11912,7 @@ msgstr "Сакривено"
msgid "Hidden Fields"
msgstr "Сакривена поља"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Сакривене колоне укључују: {0}"
@@ -11978,7 +12024,7 @@ msgstr "Сакриј бочну траку, мени и коментаре"
msgid "Hide Standard Menu"
msgstr "Сакриј стандардни мени"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Сакриј ознаке"
@@ -12138,7 +12184,7 @@ msgstr "Изгледа да још увек немаш приступ нијед
msgid "ID"
msgstr "ИД"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12235,9 +12281,9 @@ msgstr "Уколико је опција примени строге корис
msgid "If Checked workflow status will not override status in list view"
msgstr "Уколико је означено статус радног тока неће заменити статус у приказу листе"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Уколико је власник"
@@ -12465,8 +12511,8 @@ msgstr "Игнорисане апликације"
msgid "Illegal Document Status for {0}"
msgstr "Неважећи статус документа за {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Неважећи SQL упит"
@@ -12553,11 +12599,11 @@ msgstr "Слике"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Замени идентитет"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Замени идентитет као {0}"
@@ -12587,7 +12633,7 @@ msgstr "Имплицитно"
msgid "Import"
msgstr "Увоз"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Увоз"
@@ -12815,15 +12861,16 @@ msgstr "Укључи тему из апликација"
msgid "Include Web View Link in Email"
msgstr "Укључи линк ка веб-приказу у имејлу"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Укључи филтере"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Укључи сакривене колоне"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Укључи индентацију"
@@ -12870,7 +12917,7 @@ msgstr "Налог за улазну пошту није исправан"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Непотпуна имплементација виртуелног DocType-а"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Непотпуни подаци за пријаву"
@@ -12981,7 +13028,7 @@ msgstr "Унеси изнад"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Унеси након"
@@ -13019,8 +13066,8 @@ msgstr "Унеси стил"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Инсталирај {0} из продавнице"
@@ -13054,7 +13101,7 @@ msgstr "Упутства послата имејлом"
msgid "Insufficient Permission Level for {0}"
msgstr "Недовољан ниво овлашћења за {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Недовољна овлашћења за {0}"
@@ -13170,7 +13217,7 @@ msgid "Invalid"
msgstr "Неважеће"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13180,7 +13227,7 @@ msgstr "Неважећи \"depends_on\" израз"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Неважећи \"depends_on\" израз постављен у филтеру {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Неважећи \"mandatory_depends_on\" израз"
@@ -13224,12 +13271,12 @@ msgstr "Неважећи DocType"
msgid "Invalid Fieldname"
msgstr "Неважећи назив поља"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Неважећи URL фајла"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Неважећи филтер"
@@ -13283,7 +13330,7 @@ msgstr "Неважећи излазни имејл сервер или порт:
msgid "Invalid Output Format"
msgstr "Неважећи излазни формат"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Неважећа измена"
@@ -13297,11 +13344,11 @@ msgstr "Неважећи параметри."
msgid "Invalid Password"
msgstr "Неважећа лозинка"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Неважећи број телефона"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Неважећи захтев"
@@ -13318,7 +13365,7 @@ msgstr "Неважећи назив поља табеле"
msgid "Invalid Transition"
msgstr "Неважеће транзиција"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13341,7 +13388,7 @@ msgstr "Неважећа тајна за Webhook"
msgid "Invalid aggregate function"
msgstr "Неважећа агрегатна функција"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Неважећи формат псеудонима: {0}. Псеудоним мора бити једноставан идентификатор."
@@ -13349,19 +13396,19 @@ msgstr "Неважећи формат псеудонима: {0}. Псеудон
msgid "Invalid app"
msgstr "Неважећа апликација"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Неважећи формат аргумента: {0}. Дозвољени су само наводницима обухваћени текстови или једноставни називи поља."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Неважећа врста аргумента: {0}. Дозвољени су текст, број и None."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Неважећи карактери у називу поља: {0}. Дозвољена су слова, бројеви и доње црте."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Неважећи карактери у називу табеле: {0}"
@@ -13369,11 +13416,11 @@ msgstr "Неважећи карактери у називу табеле: {0}"
msgid "Invalid column"
msgstr "Неважећа колона"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Неважећа врста услова у угњежденим филтерима: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Неважећи смер у Сортирај по: {0}. Мора бити 'РАСТУЋЕ' или 'ОПАДАЈУЋЕ'."
@@ -13389,23 +13436,23 @@ msgstr "Неважећи израз постављен у филтеру {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Неважећи израз постављен у филтеру {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Неважећи формат поља за SELECT: {0}. Називи поља морају бити једноставни, у оквиру backticks, са префиксом табеле, са псеудонимом или '*'."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Неважећи формат поља у {0}: {1}. Користите 'field', 'link_field.field', or 'child_table.field'."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Неважећи назив поља у функцији: {0}. Дозвољени су само једноставни називи поља."
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Неважећи назив поља {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "Неважећа врста поља: {0}"
@@ -13417,11 +13464,11 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и
msgid "Invalid file path: {0}"
msgstr "Неважећа путања фајла: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Неважећи услов филтера: {0}. Очекивана је листа или tuple."
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Неважећи формат поља за филтер: {0}. Користите 'fieldname' или 'link_fieldname.target_fieldname'."
@@ -13429,11 +13476,11 @@ msgstr "Неважећи формат поља за филтер: {0}. Кори
msgid "Invalid filter: {0}"
msgstr "Неважећи филтер: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Неважећа врста аргумента функције: {0}. Дозвољени су искључиво текстови, бројеви, листе и None."
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr "Неважећи формат речника функције"
@@ -13470,23 +13517,27 @@ msgstr "Неважећи или оштећен садржај за увоз"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Неважеће преусмерење регеx функције у реду #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Неважећи аргументи захтева"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "Неважеће тело захтева"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr "Неважећа улога"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "Неважећи једноставни формат филтера: {0}"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Неважећи почетак услова за филтер: {0}. Очекивана је листа или tuple."
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr "Неважећи формат текстуалног израза: {0}"
@@ -13590,7 +13641,7 @@ msgstr "Календар и гантограм"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Зависна табела"
@@ -13643,6 +13694,10 @@ msgstr "Датотека"
msgid "Is Global"
msgstr "Глобално"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Група"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13669,8 +13724,13 @@ msgstr "Опционо стање"
msgid "Is Primary"
msgstr "Примарно"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "Примарна адреса"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Примарни контакт"
@@ -13726,7 +13786,7 @@ msgstr "Да ли је поставка завршена?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Јединствени запис"
@@ -13762,7 +13822,7 @@ msgstr "Стандардно"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Могуће поднети"
@@ -13968,11 +14028,11 @@ msgstr "Колона Канбан табле"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Назив Канбан табле"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Канбан подешавање"
@@ -14262,7 +14322,7 @@ msgstr "Ознака је обавезна"
msgid "Landing Page"
msgstr "Циљна страница"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Пејзажни"
@@ -14270,10 +14330,13 @@ msgstr "Пејзажни"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Језик"
@@ -14361,8 +14424,12 @@ msgstr "Прошли месец"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Презиме"
@@ -14508,7 +14575,7 @@ msgstr "Дужина"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Дужина прослеђеног низа података већа је од максималног дозвољеног броја поена за ознаке!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Дужина поља {0} мора бити између 1 и 1000"
@@ -14558,7 +14625,7 @@ msgstr "Писмо"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14586,7 +14653,7 @@ msgstr "Назив заглавља"
msgid "Letter Head Scripts"
msgstr "Скрипте за заглавље"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Заглавље не може бити и онемогућено и подразумевано"
@@ -14603,7 +14670,7 @@ msgstr "Заглавље у HTML-у"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Ниво"
@@ -14896,7 +14963,7 @@ msgstr "Филтер листе"
msgid "List Settings"
msgstr "Подешавање листе"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Подешавање листе"
@@ -14947,7 +15014,7 @@ msgid "Load Balancing"
msgstr "Балансирање оптерећења"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Учитај више"
@@ -14967,7 +15034,7 @@ msgstr "Учита више"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Учитавање"
@@ -15110,7 +15177,7 @@ msgstr "Верификациони код за пријаву од {}"
msgid "Login and view in Browser"
msgstr "Пријавите се и погледајте у интернет претраживачу"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Пријављивање је неопходно да бисте видели листу веб-образаца. Омогућите {0} да бисте видели подешавања листе"
@@ -15118,7 +15185,7 @@ msgstr "Пријављивање је неопходно да бисте вид
msgid "Login link sent to your email"
msgstr "Линк за пријављивање је послат на Вашу имејл адресу"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Пријављивање тренутно није дозвољено"
@@ -15171,7 +15238,7 @@ msgstr "Пријављивање путем линка из имејла"
msgid "Login with email link expiry (in minutes)"
msgstr "Истицање линка за пријављивање (у минутима)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Пријављивање путем корисничког имена и лозинке није дозвољено."
@@ -15190,7 +15257,7 @@ msgstr "Лого URI"
msgid "Logout"
msgstr "Одјава"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Одјава из свих сесија"
@@ -15294,7 +15361,10 @@ msgid "Major"
msgstr "Главно"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Омогући \"назив\" доступним за претрагу у глобалној претрази"
@@ -15370,7 +15440,7 @@ msgstr "Обавезно зависи од"
msgid "Mandatory Depends On (JS)"
msgstr "Обавезно зависи од (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Недостају обавезни подаци:"
@@ -15382,11 +15452,11 @@ msgstr "Обавезно поље: постави улогу за"
msgid "Mandatory field: {0}"
msgstr "Обавезно поље: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Обавезна поља су неопходна у табели {0}, ред {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Обавезна поља су неопходна у {0}"
@@ -15568,7 +15638,7 @@ msgstr "Максимална ширина за врсту валуте је 100
msgid "Maximum"
msgstr "Максимално"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Достигнут је максимални број прилога од {0} за {1} {2}."
@@ -15592,7 +15662,7 @@ msgstr "Значење опција поднеси, откажи, измени"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15811,7 +15881,7 @@ msgstr "Метода"
msgid "Method Not Allowed"
msgstr "Метода није дозвољена"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Метода је неопходна да би се креирала бројчана картица"
@@ -15827,6 +15897,11 @@ msgstr "Центрирано"
msgid "Middle Name"
msgstr "Средње име"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "Средње име (опционо)"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15897,7 +15972,7 @@ msgstr "Недостајући DocType"
msgid "Missing Field"
msgstr "Недостајуће поље"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Недостајућа поља"
@@ -15933,6 +16008,11 @@ msgstr "Мобилни"
msgid "Mobile No"
msgstr "Број мобилног телефона"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Број мобилног телефона"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15958,7 +16038,7 @@ msgstr "Покретач модалног прозора"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16134,10 +16214,12 @@ msgstr "Више информација"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Више информација"
@@ -16167,7 +16249,7 @@ msgstr "Вероватно је Ваша лозинка предугачка."
msgid "Move"
msgstr "Премести"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Премести у"
@@ -16203,7 +16285,7 @@ msgstr "Премести одељке у нову картицу"
msgid "Move the current field and the following fields to a new column"
msgstr "Премести тренутно поље и следећа поља у нову колону"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Премести на број реда"
@@ -16253,7 +16335,7 @@ msgstr "Мора бити затворен у '()' и укључивати '{0}'
msgid "Must be of type \"Attach Image\""
msgstr "Мора бити врсте \"Приложи слику\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Мора имати дозволу за извештај да би приступио овом извештају."
@@ -16271,7 +16353,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16311,7 +16393,7 @@ msgstr "НАПОМЕНА: Овај оквир ће бити уклоњен. Мо
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16415,12 +16497,12 @@ msgstr "Шаблон навигационе траке"
msgid "Navbar Template Values"
msgstr "Вредности шаблона навигационе траке"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Помери листу према доле"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Помери листу према горе"
@@ -16435,6 +16517,10 @@ msgstr "Иди на главни садржај"
msgid "Navigation Settings"
msgstr "Подешавање навигације"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "Треба Вам помоћ?"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника"
@@ -16443,7 +16529,7 @@ msgstr "Неопходна је улога менаџера радног про
msgid "Negative Value"
msgstr "Негативна вредност"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Угњеждени филтери морају бити предати као листа или tuple."
@@ -16456,6 +16542,12 @@ msgstr "Грешка у угњежденом сету. Молимо Вас да
msgid "Network Printer Settings"
msgstr "Подешавање мрежног штампача"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "Никада"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16464,7 +16556,7 @@ msgstr "Подешавање мрежног штампача"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16525,7 +16617,7 @@ msgstr "Нови догађај"
msgid "New Folder"
msgstr "Нова датотека"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Нова Канбан табла"
@@ -16560,7 +16652,7 @@ msgstr "Нова бројчана картица"
msgid "New Onboarding"
msgstr "Нова уводна обука"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Нова лозинка"
@@ -16658,7 +16750,7 @@ msgstr "Нова вредност треба да буде постављена"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Нови {0}"
@@ -16810,7 +16902,7 @@ msgstr "Следеће на клик"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Не"
@@ -16915,7 +17007,7 @@ msgstr "Није наведен назив за {0}"
msgid "No New notifications"
msgstr "Нема нових обавештења"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Дозволе нису наведене"
@@ -16959,7 +17051,7 @@ msgstr "Ниједан резултат није пронађен"
msgid "No Roles Specified"
msgstr "Улоге нису наведене"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Није пронађено поље за избор"
@@ -16967,7 +17059,7 @@ msgstr "Није пронађено поље за избор"
msgid "No Suggestions"
msgstr "Нема предлога"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Нема ознака"
@@ -17043,7 +17135,7 @@ msgstr "Није пронађена имејл адреса за позивањ
msgid "No failed logs"
msgstr "Нема неуспешних евиденција"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Није пронађено поље које може бити коришћено као Канбан колона. Користите прилагоди образац да бисте додали прилагођено поље врсте \"Избор\"."
@@ -17067,7 +17159,7 @@ msgstr "Нема додатних записа"
msgid "No matching records. Search something new"
msgstr "Нема одговарајућих записа. Покушајте другачију претрагу"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Нема више ставки за приказ"
@@ -17111,7 +17203,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Не постоји дозвола за '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Не постоји дозвола за читање {0}"
@@ -17123,7 +17215,7 @@ msgstr "Не постоји дозвола за {0} {1} {2}"
msgid "No records deleted"
msgstr "Ниједан запис није обрисан"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Ниједан запис није доступан у {0}"
@@ -17159,11 +17251,11 @@ msgstr "Нема {0}"
msgid "No {0} Found"
msgstr "Није пронађен ниједан {0}"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Није пронађен ниједан {0}"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Нема {0} који одговарају филтерима. Очистите филтере да видите све {0}."
@@ -17172,7 +17264,7 @@ msgid "No {0} mail"
msgstr "Нема {0} поште"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Бр."
@@ -17236,7 +17328,7 @@ msgstr "Нису потомци од"
msgid "Not Equals"
msgstr "Није једнако"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Није пронађено"
@@ -17262,9 +17354,9 @@ msgstr "Није повезани ни са једним записом"
msgid "Not Nullable"
msgstr "Не може бити празно"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17283,7 +17375,7 @@ msgstr "Није објављено"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17334,7 +17426,7 @@ msgstr "Није активно"
msgid "Not allowed for {0}: {1}"
msgstr "Није дозвољено за {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Није дозвољено приложити документа врсте {0}, молимо Вас да омогућите Дозволи штампу за {0} у подешавањима штампе"
@@ -17366,12 +17458,12 @@ msgstr "Није у развојном режиму"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Није у развојном режиму! Поставите у ситецонфиг.јсон или направите 'Прилагођени' DocType."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Није дозвољено"
@@ -17417,7 +17509,7 @@ msgstr "Напомена: За најбоље резултате, слике м
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Напомена: Вишеструке сесије ће бити дозвољене на мобилним уређајима"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Напомена: Ово ће бити подељено са корисником."
@@ -17489,15 +17581,15 @@ msgstr "Документ на који је корисник претплаће
msgid "Notification sent to"
msgstr "Обавештење послато ка"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Обавештење: купац {0} нема подешен број мобилног телефона"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Обавештење: документ {0} нема подешен {1} број (поље: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Обавештење: корисник {0} нема подешен број мобилног телефона"
@@ -17611,7 +17703,7 @@ msgstr "Број упита"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Број поља за приложене фајлове је већи од {}, ограничење је ажурирано на {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Број резервних копија мора бити већи од нуле."
@@ -17883,7 +17975,7 @@ msgstr "Уводна обука завршена"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Једном када су поднети, документи који се могу поднети не могу се мењати. Могу се само отказати или изменити."
@@ -17972,11 +18064,11 @@ msgstr "Могу се брисати само извештаји креиран
msgid "Only reports of type Report Builder can be edited"
msgstr "Могу се уређивати само извештаји креирани помоћу уређивача извештаја"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "Искључиво администратор може обрисати стандардни DocType."
@@ -18072,7 +18164,7 @@ msgstr "Отвори конзолу"
msgid "Open in a new tab"
msgstr "Отвори у новој картици"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Отворене ставке"
@@ -18121,7 +18213,7 @@ msgstr "Отворено"
msgid "Operation"
msgstr "Операција"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Оператор мора бити један од следећих {0}"
@@ -18167,6 +18259,7 @@ msgstr "Опционо: Упозорење ће бити послато укол
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18175,6 +18268,7 @@ msgstr "Опционо: Упозорење ће бити послато укол
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Опције"
@@ -18204,7 +18298,7 @@ msgstr "Опције за {0} морају бити подешене пре не
msgid "Options is required for field {0} of type {1}"
msgstr "Опције су неопходне за поље {0} врсте {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Опције нису постављене за линк поље {0}"
@@ -18220,7 +18314,7 @@ msgstr "Наранџаста"
msgid "Order"
msgstr "Редослед"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "Сортирај по мора бити текст"
@@ -18236,7 +18330,7 @@ msgstr "Историја организације"
msgid "Org History Heading"
msgstr "Наслов историје организације"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Оријентација"
@@ -18318,7 +18412,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18351,10 +18445,6 @@ msgstr "Ширина PDF странице (у мм)"
msgid "PDF Settings"
msgstr "Подешавање PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr "PDF не може бити отпремљен, садржи несигуран садржај"
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "Генерисање PDF-а није успело"
@@ -18566,7 +18656,7 @@ msgstr "Матични DocType"
msgid "Parent Document Type"
msgstr "Матична врста документа"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Матична врста документа је неопходна за креирање бројчане картице"
@@ -18670,8 +18760,8 @@ msgstr "Пасиван"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18694,7 +18784,7 @@ msgstr "Ресетовање лозинке"
msgid "Password Reset Link Generation Limit"
msgstr "Ограничење за генерисање линкова за ресетовање лозинке"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Лозинка се не може филтрирати"
@@ -18731,7 +18821,7 @@ msgstr "Упутство за ресетовање лозинке је посл
msgid "Password set"
msgstr "Лозинка постављена"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Величина лозинке премашује дозвољену границу"
@@ -18743,7 +18833,7 @@ msgstr "Дужина лозинке премашује дозвољену гра
msgid "Passwords do not match"
msgstr "Лозинке се не подударају"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Лозинке се не подударају!"
@@ -18894,7 +18984,7 @@ msgstr "Трајно поднети {0}?"
msgid "Permanently delete {0}?"
msgstr "Трајно обрисати {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Грешка у дозволама"
@@ -18954,16 +19044,16 @@ msgstr "Врста дозволе"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Дозволе"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Грешка у дозволама"
@@ -19025,15 +19115,18 @@ msgstr "Захтев за преузимање личних података"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19046,11 +19139,11 @@ msgstr "Телефон"
msgid "Phone No."
msgstr "Телефон бр."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Број телефона {0} постављен у пољу {1} није валидан."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19132,11 +19225,11 @@ msgstr "Молимо Вас да затражите од администрат
msgid "Please attach a file first."
msgstr "Молимо Вас да прво приложите фајл."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Молимо Вас да приложите слику како бисте поставили HTML за подножје."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Молимо Вас да приложите слику како бисте поставили HTML за заглавље."
@@ -19148,7 +19241,7 @@ msgstr "Молимо Вас да приложите пакет"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Молимо Вас да проверите вредности филтера постављене за графикон за контролној табли: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Молимо Вас да проверите вредности поља \"Преузми из\" постављених за поље {0}"
@@ -19188,7 +19281,7 @@ msgstr "Молимо Вас да потврдите своју радњу как
msgid "Please contact your system manager to install correct version."
msgstr "Молимо Вас да контактирате систем менаџера како бисте инсталирали исправну верзију."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Молимо Вас да прво креирате картицу"
@@ -19204,11 +19297,11 @@ msgstr "Молимо Вас да обришете поље из {0} или да
msgid "Please do not change the template headings."
msgstr "Молимо Вас да не мењате наслове шаблона."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Молимо Вас да дуплирате ово како бисте направили измене"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Молимо Вас да омогућите барем један кључ за пријављивање путем друштвених мрежа или LDAP или пријављивање путем имејл линка пре него што онемогућите пријаву помоћу корисничког имена и лозинке."
@@ -19217,7 +19310,7 @@ msgstr "Молимо Вас да омогућите барем један кљу
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Молимо Вас да омогућите искачуће прозоре"
@@ -19332,7 +19425,7 @@ msgstr "Молимо Вас да прво сачувате извештај"
msgid "Please save to edit the template."
msgstr "Молимо Вас да сачувате да бисте уредили овај шаблон."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Молимо Вас да прво изаберете DocType"
@@ -19340,15 +19433,15 @@ msgstr "Молимо Вас да прво изаберете DocType"
msgid "Please select Entity Type first"
msgstr "Молимо Вас да прво изаберете врсту ентитета"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Молимо Вас да изаберете X и Y поља"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Молимо Вас да изаберете шифру државе за поље {1}."
@@ -19372,7 +19465,7 @@ msgstr "Молимо Вас да изаберете важећи филтер д
msgid "Please select applicable Doctypes"
msgstr "Молимо Вас да изаберете примењиве DocType-ове"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање"
@@ -19402,7 +19495,7 @@ msgstr "Молимо Вас да поставите имејл адресу"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Молимо Вас да поставите филтере"
@@ -19422,7 +19515,7 @@ msgstr "Молимо Вас да прво поставите следећа до
msgid "Please set the series to be used."
msgstr "Молимо Вас да поставите серију која ће се користити."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Молимо Вас да поставите SMS пре него што га поставите као метод аутентификације, путем SMS подешавања"
@@ -19537,7 +19630,7 @@ msgstr "Ставка менија портала"
msgid "Portal Settings"
msgstr "Подешавање портала"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Портрет"
@@ -19565,6 +19658,7 @@ msgstr "Адреса за пријем поште"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Поштански број"
@@ -19573,7 +19667,7 @@ msgstr "Поштански број"
msgid "Posting Timestamp"
msgstr "Време објаве"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "Потенцијално опасан садржај у текстуалном изразу: {0}"
@@ -19588,6 +19682,10 @@ msgstr "Потенцијално опасан садржај у текстуал
msgid "Precision"
msgstr "Прецизност"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "Прецизност ({0}) за {1} не може бити већа од његове дужине ({2})."
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Прецизност треба да буде између 1 и 6"
@@ -19636,7 +19734,7 @@ msgstr "Аналитика припремљених извештаја"
msgid "Prepared Report User"
msgstr "Корисник припремљеног извештаја"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Приказ припремљеног извештаја није успео"
@@ -19771,13 +19869,13 @@ msgstr "Примарни кључ за DocType {0} не може бити про
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Штампа"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Штампа"
@@ -19847,7 +19945,7 @@ msgstr "Помоћ за формат штампе"
msgid "Print Format Type"
msgstr "Врста формата штампе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "Формат штампе није пронађен"
@@ -19886,7 +19984,7 @@ msgstr "Сакриј штампу уколико нема вредности"
msgid "Print Language"
msgstr "Језик штампе"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Штампа је послата на штампач!"
@@ -19904,7 +20002,7 @@ msgstr "Сервер за штампу"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Подешавање штампе"
@@ -20028,11 +20126,11 @@ msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ ref
msgid "Proceed"
msgstr "Настави"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Ипак настави"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Обрада"
@@ -20049,11 +20147,21 @@ msgstr "Проф"
msgid "Profile"
msgstr "Профил"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "Профилна слика"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Профил је успешно ажуриран."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Напредак"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Пројекат"
@@ -20097,7 +20205,7 @@ msgstr "Врста својства"
msgid "Protect Attached Files"
msgstr "Заштити приложене фајлове"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Заштићени фајл"
@@ -20270,7 +20378,7 @@ msgstr "QR код"
msgid "QR Code for Login Verification"
msgstr "QR код за верификацију пријављивања"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Tray неуспешно:"
@@ -20477,7 +20585,7 @@ msgstr "Оцена"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Необрађене команде"
@@ -20603,11 +20711,11 @@ msgstr "У реалном времену (SocketIO)"
msgid "Reason"
msgstr "Разлог"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Обнови"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Обнови стабло"
@@ -20988,8 +21096,8 @@ msgstr "Извор приступа"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21020,13 +21128,13 @@ msgstr "Освежи преглед штампе"
msgid "Refresh Token"
msgstr "Токен за освежавање"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Освежавање"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Освежавање..."
@@ -21339,8 +21447,8 @@ msgstr "Одговори свима"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21411,11 +21519,11 @@ msgstr "Менаџер извештавања"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Назив извештаја"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Назив извештаја, поље извештаја и функција су неопходни за креирање бројчане картице"
@@ -21449,21 +21557,21 @@ msgstr "Приказ извештаја"
msgid "Report bug"
msgstr "Пријави грешку"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Извештај се може бити постављен за појединачне врсте"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Извештај нема података, молимо Вас да измените филтере или промените назив извештаја"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Извештај је покренут, кликните да бисте погледали статус"
@@ -21483,7 +21591,7 @@ msgstr "Извештај је успешно ажуриран"
msgid "Report was not saved (there were errors)"
msgstr "Извештај није сачуван (догодиле су се грешке)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму."
@@ -21519,7 +21627,7 @@ msgstr "Извештаји"
msgid "Reports & Masters"
msgstr "Извештаји и мастер подаци"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Извештаји су већ у реду"
@@ -21538,7 +21646,10 @@ msgid "Request Body"
msgstr "Тело захтева"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Подаци захтева"
@@ -21590,6 +21701,11 @@ msgstr "Време за захтев је истекло"
msgid "Request URL"
msgstr "URL захтева"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "Захтев за брисање налога"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21645,7 +21761,7 @@ msgstr "Ресетуј прилагођавања контролне табле"
msgid "Reset Fields"
msgstr "Ресетуј поља"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Ресетуј LDAP лозинку"
@@ -21653,11 +21769,11 @@ msgstr "Ресетуј LDAP лозинку"
msgid "Reset Layout"
msgstr "Ресетуј распоред"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Ресетуј тајну једнократне лозинке"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21692,7 +21808,7 @@ msgstr "Врати на подразумевано"
msgid "Reset sorting"
msgstr "Ресетуј сортирање"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Врати на подразумевано"
@@ -21832,7 +21948,7 @@ msgstr "Врати се на екран за верификацију и уне
msgid "Reverse Icon Color"
msgstr "Обрни боју иконице"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Враћање дужине на {0} за '{1}' у '{2}'. Постављање дужине на {3} ће скратити податке."
@@ -21944,7 +22060,7 @@ msgstr "Дозволе улоге за страницу и извештај"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Дозволе улога"
@@ -21954,7 +22070,7 @@ msgstr "Дозволе улога"
msgid "Role Permissions Manager"
msgstr "Менаџер дозвола улога"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Менаџер дозвола улога"
@@ -22099,7 +22215,7 @@ msgstr "Преусмеравање путање"
msgid "Route: Example \"/app\""
msgstr "Путања: Пример \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Ред"
@@ -22107,12 +22223,12 @@ msgstr "Ред"
msgid "Row #"
msgstr "Ред #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Ред # {0}: Корисник који није администратор не може да постави улогу {1} у прилагођени доцтyпе"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Ред #{0}:"
@@ -22147,11 +22263,11 @@ msgstr "Вредности у реду су измењене"
msgid "Row {0}"
msgstr "Ред {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Ред {0}: Није дозвољено онемогућити обавезно за стандардна поља"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Ред {0}: Није дозвољено омогућити дозволу при подношењу за стандардна поља"
@@ -22170,7 +22286,10 @@ msgid "Rows Removed"
msgstr "Редови уклоњени"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "Праг редова за претрагу у табели"
@@ -22378,8 +22497,8 @@ msgstr "Субота"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22402,11 +22521,11 @@ msgstr "Сачувај као"
msgid "Save Customizations"
msgstr "Сачувај прилагођавања"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Сачувај извештај"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Сачувај филтере"
@@ -22778,7 +22897,7 @@ msgstr "Подешавања безбедности"
msgid "See all Activity"
msgstr "Погледај све активности"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Погледај све претходне извештаје."
@@ -22842,7 +22961,7 @@ msgstr "Изабери"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Изабери све"
@@ -22863,7 +22982,7 @@ msgid "Select Column"
msgstr "Изабери колону"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Изабери колоне"
@@ -22922,7 +23041,7 @@ msgstr "Изабери поље"
msgid "Select Field..."
msgstr "Изабери поље..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Изабери поља"
@@ -23042,14 +23161,14 @@ msgid "Select a field to edit its properties."
msgstr "Изаберите поље да бисте уредили његова својства."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Изабери групни чвор."
+msgid "Select a group {0} first."
+msgstr "Најпре изаберите групу {0}."
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Изабери важеће поље пошиљаоца за креирање документа из имејла"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Изабери важеће поље за наслов за креирање документа из мејла"
@@ -23079,13 +23198,13 @@ msgstr "Изабери бар један запис за штампање"
msgid "Select atleast 2 actions"
msgstr "Изабери бар 2 радње"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Изабери ставку из листе"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Изабери више ставки из листе"
@@ -23303,7 +23422,7 @@ msgstr "Имејл пошиљаоца"
msgid "Sender Email Field"
msgstr "Поље за имејл пошиљаоца"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Поље пошиљаоца треба да има имејл међу опцијама"
@@ -23407,7 +23526,7 @@ msgstr "Серија {0} је већ искоришћена у {1}"
msgid "Server Action"
msgstr "Серверска радња"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Серверска грешка"
@@ -23473,7 +23592,7 @@ msgstr "Подразумеване вредности сесије"
msgid "Session Defaults Saved"
msgstr "Подразумеване вредности сесије су сачуване"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Сесија је истекла"
@@ -23482,14 +23601,14 @@ msgstr "Сесија је истекла"
msgid "Session Expiry (idle timeout)"
msgstr "Истек сесије (време неактивности)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Истек сесије мора бити у формату {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Постави"
@@ -23515,12 +23634,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Постави подразумеване опције за све графиконе на овој контролној табли (Пример: \"боје\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Постави динамичке филтере"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23531,7 +23650,7 @@ msgstr "Постави филтере"
msgid "Set Filters for {0}"
msgstr "Постави филтере за {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Постави ниво"
@@ -23585,7 +23704,7 @@ msgstr "Постави количину"
msgid "Set Role For"
msgstr "Постави улогу за"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Постави корисничке дозволе"
@@ -23604,7 +23723,7 @@ msgstr "Постави све као приватно"
msgid "Set all public"
msgstr "Постави све као јавно"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Постави као подразумевано"
@@ -23623,18 +23742,21 @@ msgstr "Постављено од стране корисника"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Овде поставите динамичке вредности филтера у JavaScript-у за неопходна поља."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Поставите нестандардну прецизност за поље са децималним бројем или валутом"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "Подесите нестандардну прецизност за поља врсте децимални број, валута или проценат"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23768,7 +23890,7 @@ msgstr "Поставке > Корисник"
msgid "Setup > User Permissions"
msgstr "Поставке > Корисничке дозволе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Поставке аутоматског имејла"
@@ -23909,6 +24031,12 @@ msgstr "Прикажи документ"
msgid "Show Error"
msgstr "Прикажи грешку"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "Прикажи упозорење за екстерне линкове"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Прикажи назив поља (кликни за копирање)"
@@ -24037,7 +24165,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Прикажи кључ за пријављивање путем друштвених мрежа као ауторизациони сервер"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Прикажи ознаке"
@@ -24244,36 +24372,36 @@ msgstr "Регистрација онемогућена"
msgid "Signups have been disabled for this website."
msgstr "Регистрација је онемогућена за овај веб-сајт."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Једноставни пyтхон израз, пример: Статус ин (\"Затворено\", \"Отказано\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Једноставни пyтхон израз, пример: статус ин (\"Неважеће\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "Једноставни python израз, пример: status == \"Invalid\""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Једноставни пyтхон израз, пример: status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "Једноставни python израз, пример: status == 'Open' and issue_type == 'Bug'"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "Једноставни python израз, пример: status in (\"Closed\", \"Cancelled\")"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Истовремене сесије"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Јединствени DocType-ови се не могу прилагођавати."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Јединствене врсте имају само један запис, без повезаних табела. Вредности се чувају у табели tabSingles"
@@ -24281,7 +24409,7 @@ msgstr "Јединствене врсте имају само један зап
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr "Страница је у режиму искључиво за читање због одржавања или ажурирања странице, ова радња се тренутно не може извршити. Молимо Вас да покушате поново касније."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Величина"
@@ -24541,7 +24669,7 @@ msgstr "Поље за сортирање {0} мора бити важећи на
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24608,8 +24736,8 @@ msgstr "Одредите домене или порекла која имају
msgid "Splash Image"
msgstr "Спласх слика"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Ср"
@@ -24641,7 +24769,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Стандардно"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "Стандардни DocType не може бити обрисан."
@@ -24657,7 +24785,7 @@ msgstr "Стандардно није постављено"
msgid "Standard Permissions"
msgstr "Стандардне дозволе"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Стандардни формат штампе не може бити ажуриран"
@@ -24775,6 +24903,7 @@ msgstr "Почиње у"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24910,7 +25039,7 @@ msgstr "Кораци за верификацију Вашег пријављив
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "Прикачен"
@@ -24940,7 +25069,7 @@ msgstr "Искоришћеност простора по табелама"
msgid "Store Attached PDF Document"
msgstr "Спреми приложени PDF документ"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "Сачувајте API тајну на сигурном месту. Неће бити више приказивана."
@@ -25038,7 +25167,7 @@ msgstr "Наслов"
msgid "Subject Field"
msgstr "Поље за наслов"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Врста поља за наслов треба да буде податак, текст, дужи текст, краћи текст, уређивач текста"
@@ -25052,6 +25181,7 @@ msgstr "Ред чекања за подношење"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25060,10 +25190,11 @@ msgstr "Ред чекања за подношење"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Поднеси"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Поднеси"
@@ -25073,7 +25204,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Поднеси"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Поднеси"
@@ -25121,7 +25252,7 @@ msgstr "Поднесите овај документ да бисте заврш
msgid "Submit this document to confirm"
msgstr "Поднесите овај документ да бисте потврдили"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Поднеси {0} докумената?"
@@ -25171,7 +25302,7 @@ msgstr "Поднаслов"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25386,7 +25517,7 @@ msgstr "Синхронизовање"
msgid "Syncing {0} of {1}"
msgstr "Синхронизовање {0} од {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Грешка у синтакси"
@@ -25697,7 +25828,7 @@ msgstr "Вишеструки одабир у табели"
msgid "Table Trimmed"
msgstr "Скраћена табела"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Табела ажурирана"
@@ -25914,7 +26045,7 @@ msgstr "Хвала"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Аутоматско понављање за овај документ је онемогућено."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "CSV формат разликује велика и мала слова"
@@ -25931,7 +26062,7 @@ msgstr "ИД клијента добијен путем Google Cloud конзо
msgid "The Condition '{0}' is invalid"
msgstr "Услов '{0}' је неважећи"
-#: frappe/core/doctype/file/file.py:218
+#: frappe/core/doctype/file/file.py:220
msgid "The File URL you've entered is incorrect"
msgstr "Унета URL адреса фајла није исправна"
@@ -25986,7 +26117,7 @@ msgstr "Коментар не може бити празан"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Садржај овог имејла је строго поверљив. Молимо Вас да га не прослеђујете."
-#: frappe/public/js/frappe/list/list_view.js:685
+#: frappe/public/js/frappe/list/list_view.js:687
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Приказан број процена. Кликните овде да видите тачан број."
@@ -26016,7 +26147,7 @@ msgstr "Изабрана врста документа је зависна та
msgid "The field {0} is mandatory"
msgstr "Поље {0} је обавезно"
-#: frappe/core/doctype/file/file.py:155
+#: frappe/core/doctype/file/file.py:157
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr "Назив поља које сте навели у приложено уз поље није важеће"
@@ -26089,8 +26220,8 @@ msgstr "Број пројекта добијен путем Google Cloud кон
""
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
-msgstr "Извештај који сте тражили је генерисан.
Кликните овде за преузимање:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "Извештај који сте затражили је генерисан.
Кликните овде за преузимање:
{0}
Овај линк истиче за {1} сата."
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
@@ -26100,7 +26231,7 @@ msgstr "Линк за ресетовање лозинке је истекао"
msgid "The reset password link has either been used before or is invalid"
msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Ресурс који тражите није доступан"
@@ -26112,7 +26243,7 @@ msgstr "Улога {0} треба да буде прилагођена улог
msgid "The selected document {0} is not a {1}."
msgstr "Изабрани документ {0} није {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Систем се ажурира. Молимо Вас да освежите страницу за неколико тренутака."
@@ -26173,12 +26304,12 @@ msgstr "Немате предстојећих догађаја."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Нема {0} за овај {1}, зашто не бисте започели један!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "У веб-обрасцу може бити највише 9 поља за прелом странице"
@@ -26202,11 +26333,11 @@ msgstr "Не постоји задатак под називом \"{}\""
msgid "There is nothing new to show you right now."
msgstr "Тренутно нема ничег новог да се прикаже."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Дошло је до проблема са URL адресом фајла: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
@@ -26218,7 +26349,7 @@ msgstr "Мора постојати барем једно правило доз
msgid "There was an error building this page"
msgstr "Дошло је до грешке приликом изградње ове странице"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Дошло је до грешке приликом чувања филтера"
@@ -26275,7 +26406,7 @@ msgstr "Аутентификација путем екстерних аплик
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ова валута је онемогућена. Омогућите је да бисте је користили у трансакцијама"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Ова Канбан табла ће бити приватна"
@@ -26283,6 +26414,10 @@ msgstr "Ова Канбан табла ће бити приватна"
msgid "This Month"
msgstr "Овај месец"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "Овај PDF не може бити отпремљен јер садржи небезбедан садржај."
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Овај квартал"
@@ -26308,6 +26443,11 @@ msgstr "Ова радња је дозвољена само за {}"
msgid "This cannot be undone"
msgstr "Ово се не може опозвати"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "Ова картица је подразумевано видљива само администратору и систем менаџерима. Подесите DocType да је делите са корисницима који имају право читања."
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26326,7 +26466,7 @@ msgstr "Овај доцтyпе нема неповезаних поља која
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Овај доцтyпе има неизвршене миграције, покрените 'bench migrate' пре измене како бисте избегли губитак измена."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Овај документ се не може тренутно обрисати јер га други корисник уређује. Покушајте поново касније."
@@ -26372,7 +26512,7 @@ msgstr "Ово поље ће се приказати само уколико п
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "Овај фајл је приложен у заштићени документ и не може се обрисати."
@@ -26407,7 +26547,7 @@ msgstr "Овај провајдер геолокације још увек ни
msgid "This goes above the slideshow."
msgstr "Ово се приказује изнад презентације."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај."
@@ -26457,7 +26597,7 @@ msgstr "Ово може бити одштампано на више страни
msgid "This month"
msgstr "Овај месец"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}."
@@ -26465,7 +26605,7 @@ msgstr "Овај извештај садржи {0} редова и превел
msgid "This report was generated on {0}"
msgstr "Овај извештај је генерисан на {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Овај извештај је генерисан {0}."
@@ -26607,9 +26747,11 @@ msgstr "Временски прозор (у секундама)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26876,7 +27018,7 @@ msgstr "Да бисте извршили извоз овог корака као
msgid "To generate password click {0}"
msgstr "За генерисање лозинке кликните {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "За ажурирани извештај кликните на {0}."
@@ -26951,7 +27093,7 @@ msgstr "Пребаци у приказ мреже"
msgid "Toggle Sidebar"
msgstr "Пребаци бочну траку"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Пребаци бочну траку"
@@ -27077,7 +27219,7 @@ msgstr "Тема"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Укупно"
@@ -27200,7 +27342,7 @@ msgstr "Прати кључне тачке документа"
msgid "Tracking"
msgstr "Праћење"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL за праћење је генерисан и копиран у међуспремник"
@@ -27236,7 +27378,7 @@ msgstr "Транзиције"
msgid "Translatable"
msgstr "Могуће превођење"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Преведи податке"
@@ -27398,7 +27540,7 @@ msgstr "Метод двофакторске аутентификације"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27492,7 +27634,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL за документацију или помоћ"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL мора почети са http:// или https://"
@@ -27595,7 +27737,7 @@ msgstr "Није могуће послати имејл због недоста
msgid "Unable to update event"
msgstr "Није могуће ажурирати догађај"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Није могуће уписати формат фајла за {0}"
@@ -27604,7 +27746,7 @@ msgstr "Није могуће уписати формат фајла за {0}"
msgid "Unassign Condition"
msgstr "Уклони додељивање услова"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Неухваћени изузетак"
@@ -27620,7 +27762,7 @@ msgstr "Поништи"
msgid "Undo last action"
msgstr "Поништи последњу радњу"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr "Наводници нису правилно избегнути у текстуалном изразу: {0}"
@@ -27669,7 +27811,7 @@ msgstr "Непозната колона: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Непознат метод заокруживања: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Непознати корисник"
@@ -27735,8 +27877,8 @@ msgstr "Параметри отказивања претплате"
msgid "Unsubscribed"
msgstr "Отказана претплата"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr "Неподржана функција или неисправан назив поља: {0}"
@@ -27770,7 +27912,7 @@ msgstr "Предстојећи догађаји за данас"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Ажурирај"
@@ -27804,6 +27946,11 @@ msgstr "Ажурирај редослед"
msgid "Update Password"
msgstr "Ажурирај лозинку"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "Ажурирај профил"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27862,7 +28009,7 @@ msgstr "Ажурирано на нову верзију 🎉"
msgid "Updated successfully"
msgstr "Успешно ажурирано"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Ажурирање"
@@ -28019,11 +28166,7 @@ msgstr "Користите други ИД имејла"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Користите уколико подразумевана подешавања не препознају тачно Ваше податке"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "Коришћење функције {0} у пољу је ограничено"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Коришћење подупита или функције је ограничено"
@@ -28245,12 +28388,12 @@ msgstr "Корисничка дозвола"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Корисничке дозволе"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Корисничке дозволе"
@@ -28394,7 +28537,7 @@ msgstr "Корисник {0} се представља као {1}"
msgid "User {0} is disabled"
msgstr "Корисник {0} је онемогућен"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Корисник {0} је онемогућен. Молимо Вас да контактирате систем менаџера."
@@ -28522,8 +28665,8 @@ msgstr "Важење"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28555,7 +28698,7 @@ msgstr "Вредност промењена"
msgid "Value To Be Set"
msgstr "Вредност коју треба поставити"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Вредност се не може променити за {0}"
@@ -28571,11 +28714,11 @@ msgstr "Вредност не може бити негативна за {0}: {1}
msgid "Value for a check field can be either 0 or 1"
msgstr "Вредност за поље избора може бити само 0 или 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Вредност за поље {0} у {1} је предугачка. Дужина треба да буде мања од {2} карактера"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Вредност за {0} не може бити листа"
@@ -28600,7 +28743,7 @@ msgstr "Вредност \"None\" указује на јавног клијен
msgid "Value to Validate"
msgstr "Вредност за валидацију"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Вредност је превелика"
@@ -28692,7 +28835,7 @@ msgstr "Прикажи све"
msgid "View Audit Trail"
msgstr "Прикажи историју измена"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Прикажи DocType дозволе"
@@ -28704,7 +28847,7 @@ msgstr "Прикажи фајл"
msgid "View Full Log"
msgstr "Прикажи целу евиденцију"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Прикажи листу"
@@ -28714,7 +28857,7 @@ msgstr "Прикажи листу"
msgid "View Log"
msgstr "Прикажи евиденцију"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Прикажи дозвољена документа"
@@ -28830,6 +28973,7 @@ msgid "Warehouse"
msgstr "Складиште"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Упозорење"
@@ -28924,7 +29068,7 @@ msgstr "Веб-страница"
msgid "Web Page Block"
msgstr "Блок веб-странице"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL веб-странице"
@@ -29314,7 +29458,7 @@ msgstr "Биће приказано само уколико су наслови
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Планирани задаци ће се извршавати само једном дневно за неактивне сајтове. Поставите на 0 да бисте избегли аутоматско искључивање планера."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Са заглављем"
@@ -29475,7 +29619,7 @@ msgstr "Радни ток је успешно ажуриран"
msgid "Workspace"
msgstr "Радни простор"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "Радни простор {0} не постоји"
@@ -29568,7 +29712,7 @@ msgstr "Завршавање"
msgid "Write"
msgstr "Измена"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Погрешна вредност у пољу преузми из"
@@ -29597,7 +29741,7 @@ msgstr "Поље Y осе"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y поље"
@@ -29659,7 +29803,7 @@ msgstr "Жута"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Да"
@@ -29695,6 +29839,10 @@ msgstr "Додали сте 1 ред у {0}"
msgid "You added {0} rows to {1}"
msgstr "Додали сте {0} редова у {1}"
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "Покушавате да отворите екстерни линк. Да потврдите, кликните поново на линк."
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Повезани сте на интернет."
@@ -29733,12 +29881,12 @@ msgstr "Немате дозволу да уређујете извештај."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Немате дозволу да извезете DocType {}"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Немате дозволу да одштампате овај извештај"
@@ -29746,7 +29894,7 @@ msgstr "Немате дозволу да одштампате овај изве
msgid "You are not allowed to send emails related to this document"
msgstr "Немате дозволу да пошаљете имејл везан за овај документ"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Немате дозволу да ажурирате овај документ веб-обрасца"
@@ -29819,11 +29967,11 @@ msgstr "Можете променити политику чувања подат
msgid "You can continue with the onboarding after exploring this page"
msgstr "Можете наставити са уводном обуком након што истражите ову страницу"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Можете онемогућити овај {0} уместо да га обришете."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Можете повећати ограничење у подешавањима система."
@@ -29873,11 +30021,11 @@ msgstr "Можете користити прилагоди образац за
msgid "You can use wildcard %"
msgstr "Можете користити заменски симбол %"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Не можете поставити 'Опције' за поље {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Не можете поставити 'Могуће превођење' за поље {0}"
@@ -29895,7 +30043,7 @@ msgstr "Отказали сте овај документ {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Не можете креирати графикон контролне табле из једног DocType-а"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}"
@@ -29938,15 +30086,15 @@ msgstr "Немате дозволу за читање или избор за {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Немате довољно дозвола да довршите ову радњу"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr "Немате дозволу за приступ пољу: {0}"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "Немате дозволу за приступ {0}: {1}."
@@ -29958,11 +30106,11 @@ msgstr "Немате дозволу да откажете све повезан
msgid "You don't have access to Report: {0}"
msgstr "Немате приступ извештају: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "Немате дозволе за приступ DocType-у {0}."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Немате дозволу за приступ овом фајлу"
@@ -29982,7 +30130,7 @@ msgstr "Имате нову поруку од:"
msgid "You have been successfully logged out"
msgstr "Успешно сте ођављени"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Достигли сте ограничење броја редова у табели базе података: {0}"
@@ -30010,7 +30158,7 @@ msgstr "Имате непрочитано {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Још увек нисте додали графиконе или бројчане картице на контролну таблу."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "Још увек нисте креирали {0}"
@@ -30027,11 +30175,11 @@ msgstr "Ви сте последњи пут ово уредили"
msgid "You must add atleast one link."
msgstr "Морате додати барем један линк."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Морате бити пријављени да бисте користили овај образац."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Морате бити пријављени да бисте поднели овај образац"
@@ -30055,7 +30203,7 @@ msgstr "Морате бити системски корисник да бист
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Морате бити у развојном режиму да бисте уредили стандардни веб-образац"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Морате бити пријављени и имати улогу систем менаџера да бисте приступили резервним копијама."
@@ -30146,6 +30294,10 @@ msgstr "Престали сте да пратите овај документ"
msgid "You viewed this"
msgstr "Прегледали сте ово"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "Бићете преусмерени на:"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr "Позвани сте да се придружите {0}"
@@ -30191,7 +30343,7 @@ msgstr "Ваше пречице"
msgid "Your account has been deleted"
msgstr "Ваш налог је обрисан"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Ваш налог је закључан и биће поново омогућен након {0} секунди"
@@ -30253,11 +30405,11 @@ msgstr "Назив и адреса Ваше организације за под
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr "Ваш извештај се генерише у позадини. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "Ваш извештај се генерише у позадини. Добићете имејл на {0} са линком за преузимање када буде спреман."
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили."
@@ -30565,7 +30717,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "управо сада"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "ознака"
@@ -30594,7 +30746,7 @@ msgstr "листа"
msgid "logged in"
msgstr "пријављен"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "login_required"
@@ -30932,7 +31084,7 @@ msgstr "путем увоза података"
msgid "via Google Meet"
msgstr "путем Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "путем обавештења"
@@ -31042,7 +31194,7 @@ msgstr "{0} графикон"
msgid "{0} Dashboard"
msgstr "{0} контролна табла"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31083,7 +31235,7 @@ msgstr "{0} мапа"
msgid "{0} Name"
msgstr "{0} назив"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} није дозвољено мењати {1}, након што је поднето од {2} за {3}"
@@ -31093,7 +31245,7 @@ msgstr "{0} није дозвољено мењати {1}, након што је
msgid "{0} Report"
msgstr "{0} извештај"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} извештаји"
@@ -31149,7 +31301,7 @@ msgstr "{0} и {1}"
msgid "{0} are currently {1}"
msgstr "{0} је тренутно {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} су неопходни"
@@ -31166,7 +31318,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} приложен {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} не може бити веће од {1}"
@@ -31243,7 +31395,7 @@ msgstr "{0} не постоји у реду {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} поље не може бити постављено као јединствено у {1}, јер постоје нејединствене постојеће вредности"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "Поља {0} не смеју да садрже backticks (`): {1}"
@@ -31288,7 +31440,7 @@ msgstr "{0} у реду {1} не може имати URL и зависне ст
msgid "{0} is a mandatory field"
msgstr "{0} је обавезно поље"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} није важећи зип фајл"
@@ -31337,7 +31489,7 @@ msgstr "{0} је као {1}"
msgid "{0} is mandatory"
msgstr "{0} је обавезно"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr "{0} није зависна табела од {1}"
@@ -31357,12 +31509,12 @@ msgstr "{0} није важећи календар. Преусмеравање
msgid "{0} is not a valid Cron expression."
msgstr "{0} није важећи Црон израз."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} није важећи DocType или динамички линк"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} није важећа имејл адреса"
@@ -31370,11 +31522,11 @@ msgstr "{0} није важећа имејл адреса"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} није важећи назив"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} није важећи број телефона"
@@ -31394,7 +31546,7 @@ msgstr "{0} није важеће матично поље за {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} није важећи формат извештаја. Формат извештаја треба да буде један од следећих {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} није зип фајл"
@@ -31418,7 +31570,7 @@ msgstr "{0} није један од {1}"
msgid "{0} is not set"
msgstr "{0} није постављен"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} је сада подразумевани формат за штампање за {1} доцтyпе"
@@ -31428,8 +31580,8 @@ msgstr "{0} је једно од {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} је неопходно"
@@ -31442,7 +31594,7 @@ msgstr "{0} је постављено"
msgid "{0} is within {1}"
msgstr "{0} је унутар {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "одабрано {0} ставки"
@@ -31499,11 +31651,11 @@ msgstr "{0} не сме бити ниједно од {1}"
msgid "{0} must be one of {1}"
msgstr "{0} мора бити један од {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} мора прво бити постављено"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} мора бити јединствено"
@@ -31528,11 +31680,11 @@ msgid "{0} not found"
msgstr "{0} није пронађено"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} од {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} од {1} ({2} редова са зависним подацима)"
@@ -31582,7 +31734,7 @@ msgstr "{0} је уклонио свој задатак."
msgid "{0} removed {1} rows from {2}"
msgstr "{0} је уклонио {1} редова из {2}"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "Улога {0} нема дозволе ни за једну врсту документа"
@@ -31656,7 +31808,7 @@ msgstr "{0} до {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} је опозвао дељење овог документа {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} је ажурирано"
@@ -31692,11 +31844,11 @@ msgstr "{0} {1} је додат"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} је додат на контролну таблу {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} већ постоји"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} не може бити \"{2}\". Требало би да буде једно од \"{3}\""
@@ -31716,11 +31868,11 @@ msgstr "{0} {1} је повезан са следећим поднетим до
msgid "{0} {1} not found"
msgstr "{0} {1} није пронађен"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, ред {1}"
@@ -31728,35 +31880,35 @@ msgstr "{0}, ред {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} завршено | Оставите ову картицу отвореном док се процес не заврши."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) ће бити скраћено, јер је максималан број дозвољених карактера {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Не може се поставити измена без отказивања"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Не може се поставити додељена измена уколико није могуће поднети"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Не може се поставити додељено подношење уколико није могуће поднети"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Не може се поставити отказивање без подношења"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Не може се поставити увоз без креирања"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Не може се поставити подношење, отказивање или допуна без измене"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Не може се поставити увоз као {1} јер није могуће увести"
@@ -31784,11 +31936,11 @@ msgstr "{0}: Назив поља {1} се појављује више пута
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Врста поља {1} за {2} не може бити јединствено"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Основне дозволе нису постављене"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Искључиво је дозвољено само једно правило са истом улогом, нивоом и {1}"
@@ -31808,7 +31960,7 @@ msgstr "{0}: Опције {1} морају бити исте као назив D
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Могу се применити и друга правила дозвола"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Дозвола на нивоу 0 мора бити постављена пре виших нивоа"
@@ -31829,7 +31981,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} је постављено на стање {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} у односу на {2}"
@@ -31865,11 +32017,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т
msgid "{} Complete"
msgstr "{} завршено"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Неважећи пyтхон код на линији {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Потенцијално неважећи пyтхон код.
{}"
@@ -31895,7 +32047,7 @@ msgstr "{} је онемогућено. Може се омогућити сам
msgid "{} is not a valid date string."
msgstr "{} није исправан датум у текстуалном формату."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} није пронађен PATH! Ово је неопходно за приступ конзоли."
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 15d373c27b..ff66cb8a92 100644
--- a/frappe/locale/sr_CS.po
+++ b/frappe/locale/sr_CS.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-09 17:28\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-13 01:21\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "'U globalnoj pretrazi' nije dozvoljeno za vrstu {0} u redu {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "'U prikazu liste' nije dozvoljeno za polje {0} vrste {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}"
@@ -86,11 +86,11 @@ msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' nije važeći IBAN"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneto; 2 - Otkazano"
msgid "0 is highest"
msgstr "0 je najviše"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = tačno i 0 = netačno"
@@ -141,11 +141,11 @@ msgstr "1 dan"
msgid "1 Google Calendar Event synced."
msgstr "1 događaj iz Google Calendar-a je sinhronizovan."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 izveštaj"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "pre 1 dan"
@@ -154,17 +154,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "pre 1 sata"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "pre 1 minut"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "pre 1 mesec"
@@ -186,37 +186,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr "1 red u {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "pre 1 sekunde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "pre 1 nedelju"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "pre 1 godinu"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "pre 2 sata"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "pre 2 meseca"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "pre 2 nedelje"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "pre 2 godine"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "pre 3 minuta"
@@ -232,7 +232,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 zapisa"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "pre 5 dana"
@@ -268,6 +268,16 @@ msgstr "{0} nije važeći URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr " Molimo Vas da ne ažurirate jer to može poremetiti Vaš obrazac. Koristite polje prilagodi prikaz obrasca ili prilagođena polja da biste postavili svojstva!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr "Zatražite fajl koji sadrži Vaše lične podatke sačuvane u našem sistemu. Fajl će biti u JSON formatu i biće Vam poslat putem imejla. Ukoliko želite da se Vaši lični podaci izbrišu iz našeg sistema, molimo Vas da podnesete zahtev za brisanje podataka.
"
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr "Pošaljite zahtev za brisanje Vašeg naloga i ličnih podataka koji su sačuvani u našem sistemu. Dobićete imejl za potvrdu Vašeg zahteva. Nakon potvrde svi Vaši lični podaci biće obrisani. Ukoliko samo želite da proverite koje lične podatke imamo sačuvane, možete zatražiti svoje podatke.
"
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -753,11 +763,16 @@ msgstr "Naziv DocType-a treba da počne sa slovom i može sadržati isključivo
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "Jedna instanca Frappe Framework može funkcionisati i kao OAuth klijent, resurs ili autorizacioni server. Ovaj DocType sadrži podešavanja vezana za sva tri."
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "Link za preuzimanje Vaših podataka biće poslat na imejl adresu povezanu sa Vašim nalogom."
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Polje sa nazivom {0} već postoji u {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "Fajl sa istim nazivom {} već postoji"
@@ -881,7 +896,7 @@ msgstr "API Endpoint Args moraju biti validan JSON"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -900,7 +915,7 @@ msgstr "API ključ i tajna za interakciju sa relay serverom. Ovi podaci će biti
msgid "API Key cannot be regenerated"
msgstr "API ključ se ne može ponovo generisati"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API ključevi"
@@ -924,7 +939,7 @@ msgstr "Evidencija API zahteva"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1010,7 +1025,7 @@ msgstr "Pristupni token"
msgid "Access Token URL"
msgstr "URL pristupnog tokena"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Pristup nije dozvoljen sa ove IP adrese"
@@ -1126,7 +1141,7 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Radnje"
@@ -1183,7 +1198,7 @@ msgstr "Dnevnik aktivnosti"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1194,7 +1209,7 @@ msgstr "Dnevnik aktivnosti"
msgid "Add"
msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Dodaj / Ukloni kolone"
@@ -1226,7 +1241,7 @@ msgstr "Dodaj ivicu na dnu"
msgid "Add Border at Top"
msgstr "Dodaj ivicu na vrhu"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Dodaj karticu na kontrolnu tablu"
@@ -1239,8 +1254,8 @@ msgid "Add Child"
msgstr "Dodaj zavisni element"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1334,7 +1349,7 @@ msgstr "Dodaj pretplatnike"
msgid "Add Tags"
msgstr "Dodaj oznake"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj oznake"
@@ -1509,6 +1524,7 @@ msgstr "Dodatne dozvole"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1517,6 +1533,7 @@ msgstr "Adresa"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Adresa, red 1"
@@ -1524,6 +1541,7 @@ msgstr "Adresa, red 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Adresa, red 2"
@@ -1685,7 +1703,7 @@ msgstr "Nakon podnošenja"
msgid "After Submit"
msgstr "Nakon podnošenja"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Agregatno polje je potrebno za kreiranje brojčane kartice"
@@ -1712,11 +1730,11 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i obaveštenja"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Pseudonim ne može biti SQL rezervisana reč: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Pseudonim mora biti tekst"
@@ -2164,6 +2182,12 @@ msgstr "Takođe dodavanje polja od zavisnosti statusa {0}"
msgid "Alternative Email ID"
msgstr "Alternativni imejl ID"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "Uvek"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2240,6 +2264,11 @@ msgstr "Izmena nije dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila imenovanja izmena ažurirana."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "Imejl za potvrdu Vašeg zahteva je poslat na Vašu imejl adresu. Molimo Vas da potvrdite zahtev kako biste završili proces."
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije"
@@ -2422,7 +2451,7 @@ msgstr "Primenjeno na"
msgid "Apply"
msgstr "Primeni"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primeni pravilo dodele"
@@ -2507,7 +2536,7 @@ msgstr "Arhivirane kolone"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Da li ste sigurni da želite da otkažete pozivnicu?"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?"
@@ -2543,7 +2572,7 @@ msgstr "Da li ste sigurni da želite da obrišete ovaj zapis?"
msgid "Are you sure you want to discard the changes?"
msgstr "Da li ste sigurni da želite da odbacite promene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Da li ste sigurni da želite da generišete novi izveštaj?"
@@ -2551,7 +2580,7 @@ msgstr "Da li ste sigurni da želite da generišete novi izveštaj?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Da li ste sigurni da želite da spojite {0} sa {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Da li ste sigurni da želite da nastavite?"
@@ -2606,6 +2635,12 @@ msgstr "Pošto je deljenje dokumenata onemogućeno, molimo Vas da im dodelite ne
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "Prema Vašem zahtevu, Vaš nalog i podaci na {0} povezani sa imejl adresom {1} su trajno obrisani"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "Pitaj"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2615,7 +2650,7 @@ msgstr "Dodeli uslov"
msgid "Assign To"
msgstr "Dodeli"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodeli"
@@ -2758,7 +2793,7 @@ msgstr "Dodeljeni zadaci"
msgid "Asynchronous"
msgstr "Asinhrono"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Barem jedna kolona je obavezna za prikaz u tabeli."
@@ -2838,7 +2873,7 @@ msgstr "Priloženo uz polje"
msgid "Attached To Name"
msgstr "Priloženo uz naziv"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo uz naziv mora biti tekst ili broj"
@@ -2854,7 +2889,7 @@ msgstr "Prilog"
msgid "Attachment Limit (MB)"
msgstr "Ograničenje priloga (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Ograničenje priloga dostignuto"
@@ -2876,11 +2911,11 @@ msgstr "Prilog uklonjen"
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušava se povezivanje sa QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušava se pokretanje QZ Tray..."
@@ -3739,15 +3774,15 @@ msgstr "Masovno brisanje"
msgid "Bulk Edit"
msgstr "Masovno uređivanje"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Masovno uređivanje {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Masovna operacija nije uspela"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Masovna operacija je uspešno završena"
@@ -3971,7 +4006,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4031,7 +4066,7 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji."
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4039,7 +4074,7 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji."
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4057,7 +4092,7 @@ msgstr "Otkaži sve"
msgid "Cancel All Documents"
msgstr "Otkaži sve dokumente"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4106,11 +4141,11 @@ msgstr "Nije moguće preuzeti vrednosti"
msgid "Cannot Remove"
msgstr "Nije moguće ukloniti"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Nije moguće ažurirati nakon podnošenja"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "Nije moguće pristupiti putanji fajla {0}"
@@ -4154,11 +4189,11 @@ msgstr "Nije moguće kreirati {0} protiv zavisnog dokumenta: {1}"
msgid "Cannot create private workspace of other users"
msgstr "Nije moguće kreirati privatni radni prostor za ostale korisnike"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće obrisati početne i priložene datoteke"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nije moguće obrisati ili otkazati jer je {0} {1} povezano sa {2} {3} {4}"
@@ -4221,8 +4256,8 @@ msgstr "Nije moguće urediti otkazan dokument"
msgid "Cannot edit filters for standard charts"
msgstr "Nije moguće urediti filtere za standardne grafikone"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Nije moguće urediti filtere za standardne brojčane kartice"
@@ -4234,11 +4269,11 @@ msgstr "Nije moguće urediti standardna polja"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "Nije moguće dozvoliti {0} za doctype koji se ne može podneti"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "Nije moguće pronaći fajl {} na disku"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke"
@@ -4246,7 +4281,7 @@ msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Nije moguće mapirati više štampača na jedan format za štampu."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvoziti tabelu sa više od 5000 redova."
@@ -4262,7 +4297,7 @@ msgstr "Nije moguće mapiranje jer sledeći uslov nije ispunjen:"
msgid "Cannot match column {0} with any field"
msgstr "Nije moguće upariti kolonu {0} ni sa jednim poljem"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Nije moguće pomeriti red"
@@ -4291,11 +4326,11 @@ msgstr "Nije moguće podneti {0}."
msgid "Cannot update {0}"
msgstr "Nije moguće ažurirati {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "Nije moguće koristiti podupit ovde."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po"
@@ -4568,11 +4603,11 @@ msgstr "Zavisna tabela {0} za polje {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Zavisne tabele se prikazuju kao tabele u drugim DocType-ovima"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Zavisna polja upita za '{0}' moraju biti vrste lista ili tuple."
@@ -4601,6 +4636,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Izaberi metod autentifikacije koji će koristiti svi korisnici"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Grad"
@@ -4627,7 +4663,7 @@ msgstr "Očisti i dodaj šablon"
msgid "Clear All"
msgstr "Očisti sve"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Očisti dodeljene zadatke"
@@ -4704,24 +4740,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Kliknite na {0} da generišete token za osvežavanje."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Kliknite na tabelu da biste je uredili"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Kliknite da postavite dinamičke filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Kliknite da postavite filtere"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Kliknite da sortirate po {0}"
@@ -4899,7 +4935,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sažmi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sažmi sve"
@@ -4954,7 +4990,7 @@ msgstr "Sklopivo zavisi od (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5010,11 +5046,11 @@ msgstr "Naziv kolone"
msgid "Column Name cannot be empty"
msgstr "Naziv kolone ne može biti prazan"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Širina kolone"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Širina kolone ne može biti nula."
@@ -5041,7 +5077,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5256,8 +5292,8 @@ msgstr "Komprimovati"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5305,7 +5341,7 @@ msgstr "Konfiguracija"
msgid "Configure Chart"
msgstr "Konfigurišite dijagram"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Konfigurišite kolone"
@@ -5332,7 +5368,7 @@ msgstr "Konfigurišite kako će se nazivati izmenjeni dokumenti.
\n\n"
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Konfigurišite različite aspekte kako funkcioniše imenovanje dokumenata, kao što su serije imenovanja, trenutni brojač."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Potvrdi"
@@ -5351,7 +5387,7 @@ msgstr "Potvrdi pristup"
msgid "Confirm Deletion of Account"
msgstr "Potvrdi uklanjanje naloga"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Potvrdi novu lozinku"
@@ -5396,8 +5432,8 @@ msgstr "Povezane aplikacije"
msgid "Connected User"
msgstr "Povezani korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Povezano sa QZ Tray!"
@@ -5448,6 +5484,10 @@ msgstr "Ograničenja"
msgid "Contact"
msgstr "Kontakt"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "Kontakt / imejl nije pronađen. Učesnik nije dodat za -
{0}"
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5511,7 +5551,7 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5600,7 +5640,7 @@ msgstr "Kopiraj grešku u međuspremnik"
msgid "Copy to Clipboard"
msgstr "Kopiraj u međuspremnik"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "Kopirajte token u međuspremnik"
@@ -5609,7 +5649,7 @@ msgstr "Kopirajte token u međuspremnik"
msgid "Copyright"
msgstr "Autorska prava"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "Osnovni DocType-ovi ne mogu biti prilagođeni."
@@ -5633,7 +5673,7 @@ msgstr "Nije bilo moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije bilo moguće mapirati kolonu {0} na polje {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "Nije moguće obraditi polje: {0}"
@@ -5686,13 +5726,14 @@ msgstr "Brojač"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Država"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Šifra države je neophodna"
@@ -5724,13 +5765,13 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Kreiraj"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Kreiraj i nastavi"
@@ -5744,7 +5785,7 @@ msgid "Create Card"
msgstr "Kreiraj karticu"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Kreiraj grafikon"
@@ -5778,12 +5819,12 @@ msgstr "Kreiraj evidenciju"
msgid "Create New"
msgstr "Kreiraj novi"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Kreiraj novi"
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Kreiraj novi DocType"
@@ -5791,7 +5832,7 @@ msgstr "Kreiraj novi DocType"
msgid "Create New Kanban Board"
msgstr "Kreiraj novu Kanban tablu"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Kreiraj korisnički imejl"
@@ -5814,8 +5855,8 @@ msgstr "Kreiraj novi zapis"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Kreiraj novi {0}"
@@ -5831,7 +5872,7 @@ msgstr "Kreiraj ili uredi format štampe"
msgid "Create or Edit Workflow"
msgstr "Kreiraj ili uredi radni tok"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Kreiraj svoj prvi {0}"
@@ -5841,7 +5882,7 @@ msgstr "Kreirajte Vaš radni tok vizualno koristeći uređivač radnog toka."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Kreirano"
@@ -6178,7 +6219,7 @@ msgstr "Prilagođena get_list metoda za {0} mora vratiti QueryBuilder objekat il
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Prilagođeni?"
@@ -6213,7 +6254,7 @@ msgstr "Prilagođavanje za {0} su izvezena:
{1}"
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6232,7 +6273,7 @@ msgstr "Prilagodi kontrolnu tablu"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Prilagodi obrazac"
@@ -6463,7 +6504,7 @@ msgstr "Evidencija uvoza podataka"
msgid "Data Import Template"
msgstr "Šablon za uvoz podatka"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Podaci su preobimni"
@@ -6494,7 +6535,7 @@ msgstr "Iskorišćenost veličine reda baze podataka"
msgid "Database Storage Usage By Tables"
msgstr "Iskorišćenost prostora baze podataka po tabelama"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Ograničenje veličine reda tabele baze podataka"
@@ -6864,13 +6905,13 @@ msgstr "Kašnjenje"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Obriši"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Obriši"
@@ -6903,7 +6944,7 @@ msgstr "Obriši kolonu"
msgid "Delete Data"
msgstr "Obriši podatke"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Obriši Kanban tablu"
@@ -6917,7 +6958,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Obriši karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Obriši i generiši novi"
@@ -6959,12 +7000,12 @@ msgstr "Obriši karticu"
msgid "Delete this record to allow sending to this email address"
msgstr "Obriši ovaj zapis da bi omogućio slanje na ovu imejl adresu"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno obriši {0} stavku?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno obriši {0} stavke?"
@@ -7000,7 +7041,7 @@ msgstr "Obrisani dokumenti"
msgid "Deleted Name"
msgstr "Obrisani naziv"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Svi dokumenti su uspešno obrisani"
@@ -7008,7 +7049,7 @@ msgstr "Svi dokumenti su uspešno obrisani"
msgid "Deleted!"
msgstr "Obrisano!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Brisanje {0}"
@@ -7461,10 +7502,14 @@ msgstr "Nemoj kreirati novog korisnika"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Nemoj kreirati novog korisnika ukoliko korisnik sa tim imejlom ne postoji u sistemu"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Nemoj uređivati zaglavlja koja su unapred postavljena u šablonu"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "Ne upozoravaj me više na {0}"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Da li još uvek želite da nastavite?"
@@ -7891,13 +7936,13 @@ msgstr "Naslov dokumenta"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Vrsta dokumenta"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "Vrsta i funkcija dokumenta su neophodne da bi se kreirala brojčana kartica"
@@ -7942,15 +7987,15 @@ msgstr "Dokument je otključan"
msgid "Document follow is not enabled for this user."
msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Dokument je otkazan"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Dokument je podnet"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Dokument u stanju nacrta"
@@ -8092,7 +8137,7 @@ msgstr "Kružni"
msgid "Double click to edit label"
msgstr "Klikni dva puta da urediš oznaku"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8125,7 +8170,7 @@ msgstr "Preuzmi link"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Preuzmi izveštaj"
@@ -8221,7 +8266,7 @@ msgstr "Duplikat unosa"
msgid "Duplicate Filter Name"
msgstr "Duplikat naziv filtera"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Duplikat naziva"
@@ -8325,8 +8370,8 @@ msgstr "IZLAZ"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8338,7 +8383,7 @@ msgstr "IZLAZ"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8348,7 +8393,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Uredi"
@@ -8377,7 +8422,7 @@ msgstr "Uredi prilagođeni HTML"
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8395,7 +8440,7 @@ msgstr "Uredi filtere"
msgid "Edit Footer"
msgstr "Uredi podnožje"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Uredi format"
@@ -8497,7 +8542,7 @@ msgstr "Uredi {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Tabela koja se može uređivati"
@@ -8542,6 +8587,8 @@ msgstr "Izbor elementa"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8560,6 +8607,8 @@ msgstr "Izbor elementa"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "Imejl"
@@ -8679,6 +8728,7 @@ msgid "Email IDs"
msgstr "Imejl ID"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Imejl ID"
@@ -8790,7 +8840,7 @@ msgstr "Imejl je označen kao spam"
msgid "Email has been moved to trash"
msgstr "Imejl je premešten u otpad"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "Imejl je obavezan za kreiranje korisničkog imejla"
@@ -8833,7 +8883,7 @@ msgstr "Imejlovi će biti poslati sa sledećim mogućim radnjama u radnom toku"
msgid "Embed code copied"
msgstr "Kod za ugradnju je kopiran"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Prazan pseudonim nije dozvoljen"
@@ -8841,7 +8891,7 @@ msgstr "Prazan pseudonim nije dozvoljen"
msgid "Empty column"
msgstr "Prazna kolona"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Argumenti kao prazan tekst nisu dozvoljeni"
@@ -9270,7 +9320,7 @@ msgstr "Evidencije grešaka"
msgid "Error Message"
msgstr "Poruka o grešci"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...
Potrebno je da imate instaliranu i pokrenutu QZ Tray, da biste mogli da koristite funkciju neobrađene štampe.
Kliknite ovde da biste preuzeli i instalirali QZ Tray.
Kliknite ovde da biste naučili više o neobrađenoj štampi.."
@@ -9298,9 +9348,9 @@ msgstr "Greška u klijentskoj skripti."
msgid "Error in Header/Footer Script"
msgstr "Greška u skripti zaglavlja/podnožja"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Greška u obaveštenju"
@@ -9320,19 +9370,19 @@ msgstr "Greška prilikom obrade ugnježdenih filtera: {0}"
msgid "Error while connecting to email account {0}"
msgstr "Greška pri povezivanju sa imejl nalogom {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Greška pri obradi obaveštenja {0}. Molimo Vas da ispravite Vaš šablon."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Greška: Podaci nedostaju u tabeli {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Greška: Vrednost nedostaje za {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Greška: {0} Red #{1}: Vrednost nedostaje za: {2}"
@@ -9481,7 +9531,7 @@ msgstr "Izvršavanje koda"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Vreme izvršavanja: {0} sekundi"
@@ -9507,12 +9557,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Proširi sve"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Očekivan je operator 'and' ili 'or', pronađeno: {0}"
@@ -9570,13 +9620,13 @@ msgstr "Vreme isteka stranica sa QR kodom"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvoz"
@@ -9769,7 +9819,7 @@ msgstr "Neuspešno izračunavanje tela zahteva: {}"
msgid "Failed to connect to server"
msgstr "Neuspešno povezivanje sa serverom"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Neuspešno dekodiranje tokena, molimo Vas da pružite validan base64-enkodirani token."
@@ -9777,7 +9827,7 @@ msgstr "Neuspešno dekodiranje tokena, molimo Vas da pružite validan base64-enk
msgid "Failed to decrypt key {0}"
msgstr "Neuspešno dešifrovanje ključa {0}"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Neuspešno brisanje {0} dokumenata: {1}"
@@ -9933,7 +9983,7 @@ msgstr "Preuzmi podrazumevane dokumente za globalnu pretragu."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10016,7 +10066,7 @@ msgstr "Polje {0} se odnosi na nepostojeći doctype {1}."
msgid "Field {0} not found."
msgstr "Polje {0} nije pronađeno."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "Polje {0} u dokumentu {1} nije ni polje za mobilni broj, ni link za kupca ili korisnika"
@@ -10034,7 +10084,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za mobilni broj, ni link za kupc
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Naziv polja"
@@ -10047,7 +10097,7 @@ msgstr "Naziv polja '{0}' je u konfliktu sa {1} nazivom {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Naziv polja je ograničen na 64 karaktera ({0})"
@@ -10063,11 +10113,11 @@ msgstr "Naziv polja koje će biti DocType za ovo link polje."
msgid "Fieldname {0} appears multiple times"
msgstr "Naziv polja {0} se pojavljuje više puta"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Naziv polje {0} je u konfliktu sa meta objektom"
@@ -10107,7 +10157,7 @@ msgstr "Polja"
msgid "Fields Multicheck"
msgstr "Polja za više označavanja"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl"
@@ -10115,7 +10165,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je opcija as_list omogućena"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Polja moraju biti tekst, lista, tuple, pypika polje ili pypika funkcija"
@@ -10143,7 +10193,7 @@ msgstr "Vrsta polja"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Vrsta polja ne može biti promenjena sa {0} na {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Vrsta polja ne može biti promenjena sa {0} na {1} u redu {2}"
@@ -10209,7 +10259,7 @@ msgstr "URL fajla"
msgid "File backup is ready"
msgstr "Rezervna kopija fajla je spremna"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Naziv fajla ne može sadržati {0}"
@@ -10217,7 +10267,7 @@ msgstr "Naziv fajla ne može sadržati {0}"
msgid "File not attached"
msgstr "Fajl nije priložen"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Veličina fajla je premašila maksimalnu dozvoljenu veličinu od {0} MB"
@@ -10226,11 +10276,11 @@ msgstr "Veličina fajla je premašila maksimalnu dozvoljenu veličinu od {0} MB"
msgid "File too big"
msgstr "Fajl je preveliki"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Vrsta fajla {0} nije dozvoljena"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Fajl {0} ne postoji"
@@ -10244,8 +10294,8 @@ msgstr "Fajlovi"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10284,11 +10334,11 @@ msgstr "Filter naziva"
msgid "Filter Values"
msgstr "Filter vrednosti"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "Nedostaje uslov filtera nakon operatora: {0}"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "Polja filtera ne mogu sadržati backticks (`)."
@@ -10365,7 +10415,7 @@ msgstr "Odeljak filtera"
msgid "Filters applied for {0}"
msgstr "Filteri primenjeni za {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filteri sačuvani"
@@ -10413,8 +10463,12 @@ msgstr "Prvi dan u nedelji"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Ime"
@@ -10495,7 +10549,7 @@ msgstr "Naziv datoteke"
msgid "Folder name should not include '/' (slash)"
msgstr "Naziv datoteke ne bi trebalo da uključuje '/' (kosu crtu)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Datoteka {0} nije prazna"
@@ -10602,7 +10656,7 @@ msgstr "Detalji podnožja"
msgid "Footer HTML"
msgstr "HTML podnožje"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "HTML podnožje postavljeno iz priloga {0}"
@@ -10698,7 +10752,7 @@ msgstr "Za korisnika"
msgid "For Value"
msgstr "Za vrednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 or =324. Za opsege, koristite 5:10 (za vrednosti između 5 i 10)."
@@ -10739,7 +10793,7 @@ msgstr "Za više adresa, unesite adrese u različitim redovima, na primer e.g. t
msgid "For updating, you can update only selective columns."
msgstr "Za ažuriranje, možete ažurirati samo određene kolone."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Za {0} na nivou {1} u {2} u redu {3}"
@@ -10983,7 +11037,7 @@ msgstr "Datum početka"
msgid "From Date Field"
msgstr "Polje za datum početka"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Od vrste dokumenta"
@@ -11045,13 +11099,13 @@ msgstr "Funkcija zasnovana na"
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na listi dozvoljenih."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "Funkcija {0} zahteva argumente, ali ni jedan nije naveden"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Dalje čvorove je moguće kreirati samo u okviru čvorova vrste 'Grupa'"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "Dalje podgrupe mogu se kreirati samo unutar zapisa označenih kao 'Grupa'"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11110,7 +11164,7 @@ msgstr "Opšte"
msgid "Generate Keys"
msgstr "Generiši ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Generiši novi izveštaj"
@@ -11125,7 +11179,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "Generiši odvojene dokumente za svakog dodeljenog korisnika"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Generiši URL za praćenje"
@@ -11332,10 +11386,6 @@ msgstr "Anonimizuj IP adresu u Google Analytics"
msgid "Google Calendar"
msgstr "Google Calendar"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Calendar - Kontakt / imejl nije pronađen. Nije dodat učesnik za -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Calendar - Nije moguće kreirati kalendar za {0}, kod greške {1}."
@@ -11530,14 +11580,10 @@ msgstr "Vrsta Grupisano po"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupisano po je neophodno za kreiranje grafikona na kontrolnoj tabli"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "Grupisano po mora biti tekst"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Čvor grupe"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11597,7 +11643,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11702,7 +11748,7 @@ msgstr "Zaglavlje"
msgid "Header HTML"
msgstr "HTML zaglavlje"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "HTML zaglavlje postavljeno iz priloga {0}"
@@ -11831,7 +11877,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Evo Vašeg URL za praćenje"
@@ -11867,7 +11913,7 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena polja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Sakrivene kolone uključuju: {0}"
@@ -11979,7 +12025,7 @@ msgstr "Sakrij bočnu traku, meni i komentare"
msgid "Hide Standard Menu"
msgstr "Sakrij standardni meni"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Sakrij oznake"
@@ -12139,7 +12185,7 @@ msgstr "Izgleda da još uvek nemaš pristup nijednom radnom prostoru, uvek može
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12236,9 +12282,9 @@ msgstr "Ukoliko je opcija primeni stroge korisničke dozvole označena i korisni
msgid "If Checked workflow status will not override status in list view"
msgstr "Ukoliko je označeno status radnog toka neće zameniti status u prikazu liste"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ukoliko je vlasnik"
@@ -12466,8 +12512,8 @@ msgstr "Ignorisane aplikacije"
msgid "Illegal Document Status for {0}"
msgstr "Nevažeći status dokumenta za {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Nevažeći SQL upit"
@@ -12554,11 +12600,11 @@ msgstr "Slike"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Zameni identitet"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Zameni identitet kao {0}"
@@ -12588,7 +12634,7 @@ msgstr "Implicitno"
msgid "Import"
msgstr "Uvoz"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvoz"
@@ -12816,15 +12862,16 @@ msgstr "Uključi temu iz aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi link ka veb-prikazu u imejlu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Uključi filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Uključi sakrivene kolone"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Uključi indentaciju"
@@ -12871,7 +12918,7 @@ msgstr "Nalog za ulaznu poštu nije ispravan"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Nepotpuna implementacija virtuelnog DocType-a"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Nepotpuni podaci za prijavu"
@@ -12982,7 +13029,7 @@ msgstr "Unesi iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Unesi nakon"
@@ -13020,8 +13067,8 @@ msgstr "Unesi stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Instaliraj {0} iz prodavnice"
@@ -13055,7 +13102,7 @@ msgstr "Uputstva poslata imejlom"
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan nivo ovlašćenja za {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljna ovlašćenja za {0}"
@@ -13171,7 +13218,7 @@ msgid "Invalid"
msgstr "Nevažeće"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13181,7 +13228,7 @@ msgstr "Nevažeći \"depends_on\" izraz"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći \"depends_on\" izraz postavljen u filteru {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Nevažeći \"mandatory_depends_on\" izraz"
@@ -13225,12 +13272,12 @@ msgstr "Nevažeći DocType"
msgid "Invalid Fieldname"
msgstr "Nevažeći naziv polja"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Nevažeći URL fajla"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Nevažeći filter"
@@ -13284,7 +13331,7 @@ msgstr "Nevažeći izlazni imejl server ili port: {0}"
msgid "Invalid Output Format"
msgstr "Nevažeći izlazni format"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Nevažeća izmena"
@@ -13298,11 +13345,11 @@ msgstr "Nevažeći parametri."
msgid "Invalid Password"
msgstr "Nevažeća lozinka"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Nevažeći broj telefona"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Nevažeći zahtev"
@@ -13319,7 +13366,7 @@ msgstr "Nevažeći naziv polja tabele"
msgid "Invalid Transition"
msgstr "Nevažeće tranzicija"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13342,7 +13389,7 @@ msgstr "Nevažeća tajna za Webhook"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan identifikator."
@@ -13350,19 +13397,19 @@ msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan ident
msgid "Invalid app"
msgstr "Nevažeća aplikacija"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodnicima obuhvaćeni tekstovi ili jednostavni nazivi polja."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Nevažeća vrsta argumenta: {0}. Dozvoljeni su tekst, broj i None."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Nevažeći karakteri u nazivu polja: {0}. Dozvoljena su slova, brojevi i donje crte."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Nevažeći karakteri u nazivu tabele: {0}"
@@ -13370,11 +13417,11 @@ msgstr "Nevažeći karakteri u nazivu tabele: {0}"
msgid "Invalid column"
msgstr "Nevažeća kolona"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Nevažeća vrsta uslova u ugnježdenom filteru: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Nevažeći smer u Sortiraj po: {0}. Mora biti 'RASTUĆE' ili 'OPADAJUĆE'."
@@ -13390,23 +13437,23 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, u okviru backtics, sa prefiksom tabele, sa pseudonimom ili '*'."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Nevažeći format polja u {0}: {1}. Koristite 'field', 'link_field.field', or 'child_table.field'."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja."
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "Nevažeća vrsta polja: {0}"
@@ -13418,11 +13465,11 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
msgid "Invalid file path: {0}"
msgstr "Nevažeća putanja fajla: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili tuple."
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Nevažeći format polja za filter: {0}. Koristite 'fieldname' or 'link_fieldname.target_fieldname'."
@@ -13430,11 +13477,11 @@ msgstr "Nevažeći format polja za filter: {0}. Koristite 'fieldname' or 'link_f
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Nevažeća vrsta argumenta funkcije: {0}. Dozvoljeni su isključivo tekstovi, brojevi, liste i None."
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr "Nevažeći format rečnika funkcije"
@@ -13471,23 +13518,27 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahteva"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "Nevažeće telo zahteva"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr "Nevažeća uloga"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "Nevažeći jednostavni format filtera: {0}"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Nevažeći početak uslova za filter: {0}. Očekivana je lista ili tuple."
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr "Nevažeći format tekstualnog izraza: {0}"
@@ -13591,7 +13642,7 @@ msgstr "Kalendar i gantogram"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Zavisna tabela"
@@ -13644,6 +13695,10 @@ msgstr "Datoteka"
msgid "Is Global"
msgstr "Globalno"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Grupa"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13670,8 +13725,13 @@ msgstr "Opciono stanje"
msgid "Is Primary"
msgstr "Primarno"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "Primarna adresa"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Primarni kontakt"
@@ -13727,7 +13787,7 @@ msgstr "Da li je postavka završena?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Jedinstveni zapis"
@@ -13763,7 +13823,7 @@ msgstr "Standardno"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Moguće podneti"
@@ -13969,11 +14029,11 @@ msgstr "Kolona Kanban table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Naziv Kanban table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban podešavanje"
@@ -14263,7 +14323,7 @@ msgstr "Oznaka je obavezna"
msgid "Landing Page"
msgstr "Ciljna stranica"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Pejzažni"
@@ -14271,10 +14331,13 @@ msgstr "Pejzažni"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Jezik"
@@ -14362,8 +14425,12 @@ msgstr "Prošli mesec"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Prezime"
@@ -14509,7 +14576,7 @@ msgstr "Dužina"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Dužina prosleđenog niza podataka veća je od maksimalnog dozvoljenog broja poena za oznake!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Dužina polja {0} mora biti između 1 i 1000"
@@ -14559,7 +14626,7 @@ msgstr "Pismo"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14587,7 +14654,7 @@ msgstr "Naziv zaglavlja"
msgid "Letter Head Scripts"
msgstr "Skripte za zaglavlje"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Zaglavlje ne može biti i onemogućeno i podrazumevano"
@@ -14604,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Nivo"
@@ -14897,7 +14964,7 @@ msgstr "Filter liste"
msgid "List Settings"
msgstr "Podešavanje liste"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Podešavanje liste"
@@ -14948,7 +15015,7 @@ msgid "Load Balancing"
msgstr "Balansiranje opterećenja"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Učitaj više"
@@ -14968,7 +15035,7 @@ msgstr "Učita više"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Učitavanje"
@@ -15111,7 +15178,7 @@ msgstr "Verifikacioni kod za prijavu od {}"
msgid "Login and view in Browser"
msgstr "Prijavite se i pogledajte u internet pretraživaču"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Prijavljivanje je neophodno da biste videli listu veb-obrazaca. Omogućite {0} da biste videli podešavanja liste"
@@ -15119,7 +15186,7 @@ msgstr "Prijavljivanje je neophodno da biste videli listu veb-obrazaca. Omogući
msgid "Login link sent to your email"
msgstr "Link za prijavljivanje je poslat na Vašu imejl adresu"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Prijavljivanje trenutno nije dozvoljeno"
@@ -15172,7 +15239,7 @@ msgstr "Prijavljivanje putem linka iz imejla"
msgid "Login with email link expiry (in minutes)"
msgstr "Isticanje linka za prijavljivanje (u minutima)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Prijavljivanje putem korisničkog imena i lozinke nije dozvoljeno."
@@ -15191,7 +15258,7 @@ msgstr "Logo URI"
msgid "Logout"
msgstr "Odjava"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Odjava iz svih sesija"
@@ -15295,7 +15362,10 @@ msgid "Major"
msgstr "Glavno"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "Omogući \"naziv\" dostupnim za pretragu u globalnoj pretrazi"
@@ -15371,7 +15441,7 @@ msgstr "Obavezno zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezni podaci:"
@@ -15383,11 +15453,11 @@ msgstr "Obavezno polje: postavi ulogu za"
msgid "Mandatory field: {0}"
msgstr "Obavezno polje: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Obavezna polja su neophodna u tabeli {0}, red {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Obavezna polja su neophodna u {0}"
@@ -15569,7 +15639,7 @@ msgstr "Maksimalna širina za vrstu valute je 100px u redu {0}"
msgid "Maximum"
msgstr "Maksimalno"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Dostignut je maksimalni broj priloga od {0} za {1} {2}."
@@ -15593,7 +15663,7 @@ msgstr "Značenje opcija podnesi, otkaži, izmeni"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15812,7 +15882,7 @@ msgstr "Metoda"
msgid "Method Not Allowed"
msgstr "Metoda nije dozvoljena"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Metoda je neophodna da bi se kreirala brojčana kartica"
@@ -15828,6 +15898,11 @@ msgstr "Centrirano"
msgid "Middle Name"
msgstr "Srednje ime"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "Srednje ime (opciono)"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15898,7 +15973,7 @@ msgstr "Nedostajući DocType"
msgid "Missing Field"
msgstr "Nedostajuće polje"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Nedostajuća polja"
@@ -15934,6 +16009,11 @@ msgstr "Mobilni"
msgid "Mobile No"
msgstr "Broj mobilnog telefona"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Broj mobilnog telefona"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15959,7 +16039,7 @@ msgstr "Pokretač modalnog prozora"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16135,10 +16215,12 @@ msgstr "Više informacija"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Više informacija"
@@ -16168,7 +16250,7 @@ msgstr "Verovatno je Vaša lozinka predugačka."
msgid "Move"
msgstr "Premesti"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Premesti u"
@@ -16204,7 +16286,7 @@ msgstr "Premesti odeljke u novu karticu"
msgid "Move the current field and the following fields to a new column"
msgstr "Premesti trenutno polje i sledeća polja u novu kolonu"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Premesti na broj reda"
@@ -16254,7 +16336,7 @@ msgstr "Mora biti zatvoren u '()' i uključivati '{0}', koji je rezervisani teks
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti vrste \"Priloži sliku\""
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za izveštaj da bi pristupio ovom izveštaju."
@@ -16272,7 +16354,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16312,7 +16394,7 @@ msgstr "NAPOMENA: Ovaj okvir će biti uklonjen. Molimo Vas da ponovo postavite L
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16416,12 +16498,12 @@ msgstr "Šablon navigacione trake"
msgid "Navbar Template Values"
msgstr "Vrednosti šablona navigacione trake"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Pomeri listu prema dole"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Pomeri listu prema gore"
@@ -16436,6 +16518,10 @@ msgstr "Idi na glavni sadržaj"
msgid "Navigation Settings"
msgstr "Podešavanje navigacije"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "Treba Vam pomoć?"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privatni radni prostor drugih korisnika"
@@ -16444,7 +16530,7 @@ msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privat
msgid "Negative Value"
msgstr "Negativna vrednost"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Ugnježdeni filteri moraju biti predati kao lista ili tuple."
@@ -16457,6 +16543,12 @@ msgstr "Greška u ugnježdenom setu. Molimo Vas da kontaktirate administratora."
msgid "Network Printer Settings"
msgstr "Podešavanje mrežnog štampača"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "Nikada"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16465,7 +16557,7 @@ msgstr "Podešavanje mrežnog štampača"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16526,7 +16618,7 @@ msgstr "Novi događaj"
msgid "New Folder"
msgstr "Nova datoteka"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Nova Kanban tabla"
@@ -16561,7 +16653,7 @@ msgstr "Nova brojčana kartica"
msgid "New Onboarding"
msgstr "Nova uvodna obuka"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nova lozinka"
@@ -16659,7 +16751,7 @@ msgstr "Nova vrednost treba da bude postavljena"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Novi {0}"
@@ -16811,7 +16903,7 @@ msgstr "Sledeće na klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16916,7 +17008,7 @@ msgstr "Nije naveden naziv za {0}"
msgid "No New notifications"
msgstr "Nema novih obaveštenja"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Dozvole nisu navedene"
@@ -16960,7 +17052,7 @@ msgstr "Nijedan rezultat nije pronađen"
msgid "No Roles Specified"
msgstr "Uloge nisu navedene"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Nije pronađeno polje za izbor"
@@ -16968,7 +17060,7 @@ msgstr "Nije pronađeno polje za izbor"
msgid "No Suggestions"
msgstr "Nema predloga"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Nema oznaka"
@@ -17044,7 +17136,7 @@ msgstr "Nije pronađena imejl adresa za pozivanje"
msgid "No failed logs"
msgstr "Nema neuspešnih evidencija"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nije pronađeno polje koje može biti korišćeno kao Kanban kolona. Koristite prilagodi obrazac da biste dodali prilagođeno polje vrste \"Izbor\"."
@@ -17068,7 +17160,7 @@ msgstr "Nema dodatnih zapisa"
msgid "No matching records. Search something new"
msgstr "Nema odgovarajućih zapisa. Pokušajte drugačiju pretragu"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Nema više stavki za prikaz"
@@ -17112,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Ne postoji dozvola za '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Ne postoji dozvola za čitanje {0}"
@@ -17124,7 +17216,7 @@ msgstr "Ne postoji dozvola za {0} {1} {2}"
msgid "No records deleted"
msgstr "Nijedan zapis nije obrisan"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Nijedan zapis nije dostupan u {0}"
@@ -17160,11 +17252,11 @@ msgstr "Nema {0}"
msgid "No {0} Found"
msgstr "Nije pronađen nijedan {0}"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Nije pronađen nijedan {0}"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Nema {0} koji odgovaraju filterima. Očistite filtere da vidite sve {0}."
@@ -17173,7 +17265,7 @@ msgid "No {0} mail"
msgstr "Nema {0} pošte"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Br."
@@ -17237,7 +17329,7 @@ msgstr "Nisu potomci od"
msgid "Not Equals"
msgstr "Nije jednako"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije pronađeno"
@@ -17263,9 +17355,9 @@ msgstr "Nije povezani ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Ne može biti prazno"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17284,7 +17376,7 @@ msgstr "Nije objavljeno"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17335,7 +17427,7 @@ msgstr "Nije aktivno"
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Nije dozvoljeno priložiti dokumenta vrste {0}, molimo Vas da omogućite Dozvoli štampu za {0} u podešavanjima štampe"
@@ -17367,12 +17459,12 @@ msgstr "Nije u razvojnom režimu"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Prilagođeni' DocType."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17418,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine i šir
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Napomena: Višestruke sesije će biti dozvoljene na mobilnim uređajima"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Napomena: Ovo će biti podeljeno sa korisnikom."
@@ -17490,15 +17582,15 @@ msgstr "Dokument na koji je korisnik pretplaćen za obaveštenja"
msgid "Notification sent to"
msgstr "Obaveštenje poslato ka"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Obaveštenje: kupac {0} nema podešen broj mobilnog telefona"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Obaveštenje: dokument {0} nema podešen {1} broj (polje: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Obaveštenje: korisnik {0} nema podešen broj mobilnog telefona"
@@ -17612,7 +17704,7 @@ msgstr "Broj upita"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Broj polja za priložene fajlove je veći od {}, ograničenje je ažurirano na {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Broj rezervnih kopija mora biti veći od nule."
@@ -17884,7 +17976,7 @@ msgstr "Uvodna obuka završena"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Jednom kada su podneti, dokumenti koji se mogu podneti ne mogu se menjati. Mogu se samo otkazati ili izmeniti."
@@ -17973,11 +18065,11 @@ msgstr "Mogu se brisati samo izveštaji kreirani pomoću uređivača izveštaja"
msgid "Only reports of type Report Builder can be edited"
msgstr "Mogu se uređivati samo izveštaji kreirani pomoću uređivača izveštaja"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Samo standardni DocType-ovi mogu biti prilagođeni putem polja prilagodi obrazac."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "Isključivo administrator može obrisati standardni DocType."
@@ -18073,7 +18165,7 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorene stavke"
@@ -18122,7 +18214,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od sledećih {0}"
@@ -18168,6 +18260,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18176,6 +18269,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Opcije"
@@ -18205,7 +18299,7 @@ msgstr "Opcije za {0} moraju biti podešene pre nego što se postavi podrazumeva
msgid "Options is required for field {0} of type {1}"
msgstr "Opcije su neophodne za polje {0} vrste {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za link polje {0}"
@@ -18221,7 +18315,7 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Redosled"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "Sortiraj po mora biti tekst"
@@ -18237,7 +18331,7 @@ msgstr "Istorija organizacije"
msgid "Org History Heading"
msgstr "Naslov istorije organizacije"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orijentacija"
@@ -18319,7 +18413,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18352,10 +18446,6 @@ msgstr "Širina PDF stranice (u mm)"
msgid "PDF Settings"
msgstr "Podešavanje PDF"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr "PDF ne može biti otpremljen, sadrži nesiguran sadržaj"
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "Generisanje PDF-a nije uspelo"
@@ -18567,7 +18657,7 @@ msgstr "Matični DocType"
msgid "Parent Document Type"
msgstr "Matična vrsta dokumenta"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Matična vrsta dokumenta je neophodna za kreiranje brojčane kartice"
@@ -18671,8 +18761,8 @@ msgstr "Pasivan"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18695,7 +18785,7 @@ msgstr "Resetovanje lozinke"
msgid "Password Reset Link Generation Limit"
msgstr "Ograničenje za generisanje linkova za resetovanje lozinke"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Lozinka se ne može filtrirati"
@@ -18732,7 +18822,7 @@ msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}"
msgid "Password set"
msgstr "Lozinka postavljena"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke premašuje dozvoljenu granicu"
@@ -18744,7 +18834,7 @@ msgstr "Dužina lozinke premašuje dozvoljenu granicu."
msgid "Passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
@@ -18895,7 +18985,7 @@ msgstr "Trajno podneti {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno obrisati {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Greška u dozvolama"
@@ -18955,16 +19045,16 @@ msgstr "Vrsta dozvole"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Greška u dozvolama"
@@ -19026,15 +19116,18 @@ msgstr "Zahtev za preuzimanje ličnih podataka"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19047,11 +19140,11 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon br."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Broj telefona {0} postavljen u polju {1} nije validan."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19133,11 +19226,11 @@ msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registrac
msgid "Please attach a file first."
msgstr "Molimo Vas da prvo priložite fajl."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Molimo Vas da priložite sliku kako biste postavili HTML za podnožje."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Molimo Vas da priložite sliku kako biste postavili HTML za zaglavlje."
@@ -19149,7 +19242,7 @@ msgstr "Molimo Vas da priložite paket"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Molimo Vas da proverite vrednosti filtera postavljene za grafikon za kontrolnoj tabli: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Molimo Vas da proverite vrednosti polja \"Preuzmi iz\" postavljenih za polje {0}"
@@ -19189,7 +19282,7 @@ msgstr "Molimo Vas da potvrdite svoju radnju kako biste {0} ovaj dokument."
msgid "Please contact your system manager to install correct version."
msgstr "Molimo Vas da kontaktirate sistem menadžera kako biste instalirali ispravnu verziju."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Molimo Vas da prvo kreirate karticu"
@@ -19205,11 +19298,11 @@ msgstr "Molimo Vas da obrišete polje iz {0} ili da dodate neophodni doctype."
msgid "Please do not change the template headings."
msgstr "Molimo Vas da ne menjate naslove šablona."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Molimo Vas da duplirate ovo kako biste napravili izmene"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem društvenih mreža ili LDAP ili prijavljivanje putem imejl linka pre nego što onemogućite prijavu pomoću korisničkog imena i lozinke."
@@ -19218,7 +19311,7 @@ msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem dru
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Molimo Vas da omogućite iskačuće prozore"
@@ -19333,7 +19426,7 @@ msgstr "Molimo Vas da prvo sačuvate izveštaj"
msgid "Please save to edit the template."
msgstr "Molimo Vas da sačuvate da biste uredili ovaj šablon."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Molimo Vas da prvo izaberete DocType"
@@ -19341,15 +19434,15 @@ msgstr "Molimo Vas da prvo izaberete DocType"
msgid "Please select Entity Type first"
msgstr "Molimo Vas da prvo izaberete vrstu entiteta"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Molimo Vas da odaberete minimalnu ocenu jačine lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Molimo Vas da izaberete X i Y polja"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Molimo Vas da izaberete šifru države za polje {1}."
@@ -19373,7 +19466,7 @@ msgstr "Molimo Vas da izaberete važeći filter da datum"
msgid "Please select applicable Doctypes"
msgstr "Molimo Vas da izaberete primenjive DocType-ove"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Molimo Vas da izaberete barem 1 kolonu iz {0} za sortiranje/grupisanje"
@@ -19403,7 +19496,7 @@ msgstr "Molimo Vas da postavite imejl adresu"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Molimo Vas da postavite mapiranje štampača za ovaj format štampe u podešavanjima štampe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Molimo Vas da postavite filtere"
@@ -19423,7 +19516,7 @@ msgstr "Molimo Vas da prvo postavite sledeća dokumenta u ovoj kontrolnoj tabli
msgid "Please set the series to be used."
msgstr "Molimo Vas da postavite seriju koja će se koristiti."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autentifikacije, putem SMS podešavanja"
@@ -19538,7 +19631,7 @@ msgstr "Stavka menija portala"
msgid "Portal Settings"
msgstr "Podešavanje portala"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Portret"
@@ -19566,6 +19659,7 @@ msgstr "Adresa za prijem pošte"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Poštanski broj"
@@ -19574,7 +19668,7 @@ msgstr "Poštanski broj"
msgid "Posting Timestamp"
msgstr "Vreme objave"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}"
@@ -19589,6 +19683,10 @@ msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}"
msgid "Precision"
msgstr "Preciznost"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "Preciznost ({0}) za {1} ne može biti veća od njegove dužine ({2})."
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Preciznost treba da bude između 1 i 6"
@@ -19637,7 +19735,7 @@ msgstr "Analitika pripremljenih izveštaja"
msgid "Prepared Report User"
msgstr "Korisnik pripremljenog izveštaja"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Prikaz pripremljenog izveštaja nije uspeo"
@@ -19772,13 +19870,13 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Štampa"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Štampa"
@@ -19848,7 +19946,7 @@ msgstr "Pomoć za format štampe"
msgid "Print Format Type"
msgstr "Vrsta formata štampe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "Format štampe nije pronađen"
@@ -19887,7 +19985,7 @@ msgstr "Sakrij štampu ukoliko nema vrednosti"
msgid "Print Language"
msgstr "Jezik štampe"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Štampa je poslata na štampač!"
@@ -19905,7 +20003,7 @@ msgstr "Server za štampu"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Podešavanje štampe"
@@ -20029,11 +20127,11 @@ msgstr "Savet: Dodaje Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Ipak nastavi"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Obrada"
@@ -20050,11 +20148,21 @@ msgstr "Prof"
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "Profilna slika"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil je uspešno ažuriran."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projekat"
@@ -20098,7 +20206,7 @@ msgstr "Vrsta svojstva"
msgid "Protect Attached Files"
msgstr "Zaštiti priložene fajlove"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Zaštićeni fajl"
@@ -20271,7 +20379,7 @@ msgstr "QR kod"
msgid "QR Code for Login Verification"
msgstr "QR kod za verifikaciju prijavljivanja"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Tray neuspešno:"
@@ -20478,7 +20586,7 @@ msgstr "Ocena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Neobrađene komande"
@@ -20604,11 +20712,11 @@ msgstr "U realnom vremenu (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Obnovi"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Obnovi stablo"
@@ -20989,8 +21097,8 @@ msgstr "Izvor pristupa"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21021,13 +21129,13 @@ msgstr "Osveži pregled štampe"
msgid "Refresh Token"
msgstr "Token za osvežavanje"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Osvežavanje"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Osvežavanje..."
@@ -21340,8 +21448,8 @@ msgstr "Odgovori svima"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21412,11 +21520,11 @@ msgstr "Menadžer izveštavanja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Naziv izveštaja"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Naziv izveštaja, polje izveštaja i funkcija su neophodni za kreiranje brojčane kartice"
@@ -21450,21 +21558,21 @@ msgstr "Prikaz izveštaja"
msgid "Report bug"
msgstr "Prijavi grešku"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Izveštaj se može biti postavljen za pojedinačne vrste"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Izveštaj nema podataka, molimo Vas da izmenite filtere ili promenite naziv izveštaja"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izveštaj nema numeričkih polja, molimo Vas da promenite naziv izveštaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status"
@@ -21484,7 +21592,7 @@ msgstr "Izveštaj je uspešno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izveštaj nije sačuvan (dogodile su se greške)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izveštaj sa više od 10 kolona izgleda bolje u pejzažnom režimu."
@@ -21520,7 +21628,7 @@ msgstr "Izveštaji"
msgid "Reports & Masters"
msgstr "Izveštaji i master podaci"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Izveštaji su već u redu"
@@ -21539,7 +21647,10 @@ msgid "Request Body"
msgstr "Telo zahteva"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Podaci zahteva"
@@ -21591,6 +21702,11 @@ msgstr "Vreme za zahtev je isteklo"
msgid "Request URL"
msgstr "URL zahteva"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "Zahtev za brisanje naloga"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21646,7 +21762,7 @@ msgstr "Resetuj prilagođavanja kontrolne table"
msgid "Reset Fields"
msgstr "Resetuj polja"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Resetuj LDAP lozinku"
@@ -21654,11 +21770,11 @@ msgstr "Resetuj LDAP lozinku"
msgid "Reset Layout"
msgstr "Resetuj raspored"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Resetuj tajnu jednokratne lozinke"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21693,7 +21809,7 @@ msgstr "Vrati na podrazumevano"
msgid "Reset sorting"
msgstr "Resetuj sortiranje"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Vrati na podrazumevano"
@@ -21833,7 +21949,7 @@ msgstr "Vrati se na ekran za verifikaciju i unesi kod prikazan u tvojoj aplikaci
msgid "Reverse Icon Color"
msgstr "Obrni boju ikonice"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine na {3} će skratiti podatke."
@@ -21945,7 +22061,7 @@ msgstr "Dozvole uloge za stranicu i izveštaj"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Dozvole uloga"
@@ -21955,7 +22071,7 @@ msgstr "Dozvole uloga"
msgid "Role Permissions Manager"
msgstr "Menadžer dozvola uloga"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Menadžer dozvola uloga"
@@ -22100,7 +22216,7 @@ msgstr "Preusmeravanje putanje"
msgid "Route: Example \"/app\""
msgstr "Putanja: Primer \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Red"
@@ -22108,12 +22224,12 @@ msgstr "Red"
msgid "Row #"
msgstr "Red #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Red # {0}: Korisnik koji nije administrator ne može da postavi ulogu {1} u prilagođeni doctype"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22148,11 +22264,11 @@ msgstr "Vrednosti u redu su izmenjene"
msgid "Row {0}"
msgstr "Red {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Red {0}: Nije dozvoljeno onemogućiti obavezno za standardna polja"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Red {0}: Nije dozvoljeno omogućiti dozvolu pri podnošenju za standardna polja"
@@ -22171,7 +22287,10 @@ msgid "Rows Removed"
msgstr "Redovi uklonjeni"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "Prag redova za pretragu u tabeli"
@@ -22379,8 +22498,8 @@ msgstr "Subota"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22403,11 +22522,11 @@ msgstr "Sačuvaj kao"
msgid "Save Customizations"
msgstr "Sačuvaj prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Sačuvaj izveštaj"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Sačuvaj filtere"
@@ -22779,7 +22898,7 @@ msgstr "Podešavanja bezbednosti"
msgid "See all Activity"
msgstr "Pogledaj sve aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izveštaje."
@@ -22843,7 +22962,7 @@ msgstr "Izaberi"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Izaberi sve"
@@ -22864,7 +22983,7 @@ msgid "Select Column"
msgstr "Izaberi kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Izaberi kolone"
@@ -22923,7 +23042,7 @@ msgstr "Izaberi polje"
msgid "Select Field..."
msgstr "Izaberi polje..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Izaberi polja"
@@ -23043,14 +23162,14 @@ msgid "Select a field to edit its properties."
msgstr "Izaberite polje da biste uredili njegova svojstva."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Izaberi grupni čvor."
+msgid "Select a group {0} first."
+msgstr "Najpre izaberite grupu {0}."
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Izaberi važeće polje pošiljaoca za kreiranje dokumenta iz imejla"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Izaberi važeće polje za naslov za kreiranje dokumenta iz mejla"
@@ -23080,13 +23199,13 @@ msgstr "Izaberi bar jedan zapis za štampanje"
msgid "Select atleast 2 actions"
msgstr "Izaberi bar 2 radnje"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Izaberi stavku iz liste"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Izaberi više stavki iz liste"
@@ -23304,7 +23423,7 @@ msgstr "Imejl pošiljaoca"
msgid "Sender Email Field"
msgstr "Polje za imejl pošiljaoca"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Polje pošiljaoca treba da ima imejl među opcijama"
@@ -23408,7 +23527,7 @@ msgstr "Serija {0} je već iskorišćena u {1}"
msgid "Server Action"
msgstr "Serverska radnja"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverska greška"
@@ -23474,7 +23593,7 @@ msgstr "Podrazumevane vrednosti sesije"
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Sesija je istekla"
@@ -23483,14 +23602,14 @@ msgstr "Sesija je istekla"
msgid "Session Expiry (idle timeout)"
msgstr "Istek sesije (vreme neaktivnosti)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Istek sesije mora biti u formatu {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Postavi"
@@ -23516,12 +23635,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Postavi podrazumevane opcije za sve grafikone na ovoj kontrolnoj tabli (Primer: \"boje\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Postavi dinamičke filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23532,7 +23651,7 @@ msgstr "Postavi filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Postavi nivo"
@@ -23586,7 +23705,7 @@ msgstr "Postavi količinu"
msgid "Set Role For"
msgstr "Postavi ulogu za"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Postavi korisničke dozvole"
@@ -23605,7 +23724,7 @@ msgstr "Postavi sve kao privatno"
msgid "Set all public"
msgstr "Postavi sve kao javno"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Postavi kao podrazumevano"
@@ -23624,18 +23743,21 @@ msgstr "Postavljeno od strane korisnika"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Ovde postavite dinamičke vrednosti filtera u JavaScript-u za neophodna polja."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Postavite nestandardnu preciznost za polje sa decimalnim brojem ili valutom"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "Podesite nestandardnu preciznost za polja vrste decimalni broj, valuta ili procenat"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23769,7 +23891,7 @@ msgstr "Postavke > Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavke > Korisničke dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Postavke automatskog imejla"
@@ -23910,6 +24032,12 @@ msgstr "Prikaži dokument"
msgid "Show Error"
msgstr "Prikaži grešku"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "Prikaži upozorenje za eksterne linkove"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Prikaži naziv polja (klikni za kopiranje)"
@@ -24038,7 +24166,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Prikaži ključ za prijavljivanje putem društvenih mreža kao autorizacioni server"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Prikaži oznake"
@@ -24245,36 +24373,36 @@ msgstr "Registracija onemogućena"
msgid "Signups have been disabled for this website."
msgstr "Registracija je onemogućena za ovaj veb-sajt."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Jednostavni python izraz, primer: Status in (\"Zatvoreno\", \"Otkazano\")"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Jednostavni python izraz, primer: status in (\"Nevažeće\")"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "Jednostavni python izraz, primer: status == \"Invalid\""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Jednostavni python izraz, primer: status == 'Otvoreno' and type == 'Greška'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "Jednostavni python izraz, primer: status == 'Open' and issue_type == 'Bug'"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "Jednostavni python izraz, primer: status in (\"Closed\", \"Cancelled\")"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Istovremene sesije"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Jedinstveni DocType-ovi se ne mogu prilagođavati."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Jedinstvene vrste imaju samo jedan zapis, bez povezanih tabela. Vrednosti se čuvaju u tabeli tabSingles"
@@ -24282,7 +24410,7 @@ msgstr "Jedinstvene vrste imaju samo jedan zapis, bez povezanih tabela. Vrednost
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 "Stranica je u režimu isključivo za čitanje zbog održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo Vas da pokušate ponovo kasnije."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "Veličina"
@@ -24542,7 +24670,7 @@ msgstr "Polje za sortiranje {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24609,8 +24737,8 @@ msgstr "Odredite domene ili porekla koja imaju dozvolu da budu ugrađena u ovaj
msgid "Splash Image"
msgstr "Splash slika"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Sr"
@@ -24642,7 +24770,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standardno"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "Standardni DocType ne može biti obrisan."
@@ -24658,7 +24786,7 @@ msgstr "Standardno nije postavljeno"
msgid "Standard Permissions"
msgstr "Standardne dozvole"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Standardni format štampe ne može biti ažuriran"
@@ -24776,6 +24904,7 @@ msgstr "Počinje u"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24911,7 +25040,7 @@ msgstr "Koraci za verifikaciju Vašeg prijavljivanja"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "Prikačen"
@@ -24941,7 +25070,7 @@ msgstr "Iskorišćenost prostora po tabelama"
msgid "Store Attached PDF Document"
msgstr "Spremi priloženi PDF dokument"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "Sačuvajte API tajnu na sigurnom mestu. Neće biti više prikazivana."
@@ -25039,7 +25168,7 @@ msgstr "Naslov"
msgid "Subject Field"
msgstr "Polje za naslov"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Vrsta polja za naslov treba da bude podatak, tekst, duži tekst, kraći tekst, uređivač teksta"
@@ -25053,6 +25182,7 @@ msgstr "Red čekanja za podnošenje"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25061,10 +25191,11 @@ msgstr "Red čekanja za podnošenje"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Podnesi"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Podnesi"
@@ -25074,7 +25205,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Podnesi"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Podnesi"
@@ -25122,7 +25253,7 @@ msgstr "Podnesite ovaj dokument da biste završili ovaj korak."
msgid "Submit this document to confirm"
msgstr "Podnesite ovaj dokument da biste potvrdili"
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Podnesi {0} dokumenata?"
@@ -25172,7 +25303,7 @@ msgstr "Podnaslov"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25387,7 +25518,7 @@ msgstr "Sinhronizovanje"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizovanje {0} od {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Greška u sintaksi"
@@ -25698,7 +25829,7 @@ msgstr "Višestruki odabir u tabeli"
msgid "Table Trimmed"
msgstr "Skraćena tabela"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabela ažurirana"
@@ -25915,7 +26046,7 @@ msgstr "Hvala"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatsko ponavljanje za ovaj dokument je onemogućeno."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -25932,7 +26063,7 @@ msgstr "ID klijenta dobijen putem Google Cloud konzole u odeljku "
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
-msgstr "Izveštaj koji ste tražili je generisan.
Kliknite ovde za preuzimanje:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "Izveštaj koji ste zatražili je generisan.
Kliknite ovde za preuzimanje:
{0}
Ovaj link ističe za {1} sata."
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
@@ -26101,7 +26232,7 @@ msgstr "Link za resetovanje lozinke je istekao"
msgid "The reset password link has either been used before or is invalid"
msgstr "Link za resetovanje lozinke je već korišćen ili je nevažeći"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26113,7 +26244,7 @@ msgstr "Uloga {0} treba da bude prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Izabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Molimo Vas da osvežite stranicu za nekoliko trenutaka."
@@ -26174,12 +26305,12 @@ msgstr "Nemate predstojećih događaja."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ne biste započeli jedan!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "U veb-obrascu može biti najviše 9 polja za prelom stranice"
@@ -26203,11 +26334,11 @@ msgstr "Ne postoji zadatak pod nazivom \"{}\""
msgid "There is nothing new to show you right now."
msgstr "Trenutno nema ničeg novog da se prikaže."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Došlo je do problema sa URL adresom fajla: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26219,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole."
msgid "There was an error building this page"
msgstr "Došlo je do greške prilikom izgradnje ove stranice"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Došlo je do greške prilikom čuvanja filtera"
@@ -26276,7 +26407,7 @@ msgstr "Autentifikacija putem eksternih aplikacija"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite je da biste je koristili u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Ova Kanban tabla će biti privatna"
@@ -26284,6 +26415,10 @@ msgstr "Ova Kanban tabla će biti privatna"
msgid "This Month"
msgstr "Ovaj mesec"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "Ovaj PDF ne može biti otpremljen jer sadrži nebezbedan sadržaj."
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Ovaj kvartal"
@@ -26309,6 +26444,11 @@ msgstr "Ova radnja je dozvoljena samo za {}"
msgid "This cannot be undone"
msgstr "Ovo se ne može opozvati"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "Ova kartica je podrazumevano vidljiva samo administratoru i sistem menadžerima. Podesite DocType da je delite sa korisnicima koji imaju pravo čitanja."
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26327,7 +26467,7 @@ msgstr "Ovaj doctype nema nepovezanih polja koja treba ukloniti"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ovaj doctype ima neizvršene migracije, pokrenite 'bench migrate' pre izmene kako biste izbegli gubitak izmena."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Ovaj dokument se ne može trenutno obrisati jer ga drugi korisnik uređuje. Pokušajte ponovo kasnije."
@@ -26373,7 +26513,7 @@ msgstr "Ovo polje će se prikazati samo ukoliko polje definisano ovde ima neku v
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "Ovaj fajl je priložen u zaštićeni dokument i ne može se obrisati."
@@ -26408,7 +26548,7 @@ msgstr "Ovaj provajder geolokacije još uvek nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo se prikazuje iznad prezentacije."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je izveštaj koji se generiše u pozadini. Postavite odgovarajuće filtere i zatim generišite novi izveštaj."
@@ -26458,7 +26598,7 @@ msgstr "Ovo može biti odštampano na više stranica"
msgid "This month"
msgstr "Ovaj mesec"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pretraživaču, umesto toga možete ga {1}."
@@ -26466,7 +26606,7 @@ msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pr
msgid "This report was generated on {0}"
msgstr "Ovaj izveštaj je generisan na {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Ovaj izveštaj je generisan {0}."
@@ -26608,9 +26748,11 @@ msgstr "Vremenski prozor (u sekundama)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26652,7 +26794,7 @@ msgstr "Isteklo"
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
-msgstr "Večna noć"
+msgstr "Timeless Night"
#. Label of the timeline (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -26877,7 +27019,7 @@ msgstr "Da biste izvršili izvoz ovog koraka kao JSON, povežite ga u dokumentu
msgid "To generate password click {0}"
msgstr "Za generisanje lozinke kliknite {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Za ažurirani izveštaj kliknite na {0}."
@@ -26952,7 +27094,7 @@ msgstr "Prebaci u prikaz mreže"
msgid "Toggle Sidebar"
msgstr "Prebaci bočnu traku"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Prebaci bočnu traku"
@@ -27078,7 +27220,7 @@ msgstr "Tema"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Ukupno"
@@ -27201,7 +27343,7 @@ msgstr "Prati ključne tačke dokumenta"
msgid "Tracking"
msgstr "Praćenje"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL za praćenje je generisan i kopiran u međuspremnik"
@@ -27237,7 +27379,7 @@ msgstr "Tranzicije"
msgid "Translatable"
msgstr "Moguće prevođenje"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Prevedi podatke"
@@ -27399,7 +27541,7 @@ msgstr "Metod dvofaktorske autentifikacije"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27493,7 +27635,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL za dokumentaciju ili pomoć"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL mora početi sa http:// ili https://"
@@ -27596,7 +27738,7 @@ msgstr "Nije moguće poslati imejl zbog nedostajućeg imejl naloga. Molimo Vas d
msgid "Unable to update event"
msgstr "Nije moguće ažurirati događaj"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Nije moguće upisati format fajla za {0}"
@@ -27605,7 +27747,7 @@ msgstr "Nije moguće upisati format fajla za {0}"
msgid "Unassign Condition"
msgstr "Ukloni dodeljivanje uslova"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Neuhvaćeni izuzetak"
@@ -27621,7 +27763,7 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi poslednju radnju"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr "Navodnici nisu pravilno izbegnuti u tekstualnom izrazu: {0}"
@@ -27669,7 +27811,7 @@ msgstr "Nepoznata kolona: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznat metod zaokruživanja: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Nepoznati korisnik"
@@ -27735,8 +27877,8 @@ msgstr "Parametri otkazivanja pretplate"
msgid "Unsubscribed"
msgstr "Otkazana pretplata"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr "Nepodržana funkcija ili neispravan naziv polja: {0}"
@@ -27770,7 +27912,7 @@ msgstr "Predstojeći događaji za danas"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Ažuriraj"
@@ -27804,6 +27946,11 @@ msgstr "Ažuriraj redosled"
msgid "Update Password"
msgstr "Ažuriraj lozinku"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "Ažuriraj profil"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27862,7 +28009,7 @@ msgstr "Ažurirano na novu verziju 🎉"
msgid "Updated successfully"
msgstr "Uspešno ažurirano"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Ažuriranje"
@@ -28019,11 +28166,7 @@ msgstr "Koristite drugi ID imejla"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Koristite ukoliko podrazumevana podešavanja ne prepoznaju tačno Vaše podatke"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "Korišćenje funkcije {0} u polju je ograničeno"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Korišćenje podupita ili funkcije je ograničeno"
@@ -28245,12 +28388,12 @@ msgstr "Korisnička dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Korisničke dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke dozvole"
@@ -28394,7 +28537,7 @@ msgstr "Korisnik {0} se predstavlja kao {1}"
msgid "User {0} is disabled"
msgstr "Korisnik {0} je onemogućen"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Korisnik {0} je onemogućen. Molimo Vas da kontaktirate sistem menadžera."
@@ -28522,8 +28665,8 @@ msgstr "Važenje"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28555,7 +28698,7 @@ msgstr "Vrednost promenjena"
msgid "Value To Be Set"
msgstr "Vrednost koju treba postaviti"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Vrednost se ne može promeniti za {0}"
@@ -28571,11 +28714,11 @@ msgstr "Vrednost ne može biti negativna za {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Vrednost za polje izbora može biti samo 0 ili 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Vrednost za polje {0} u {1} je predugačka. Dužina treba da bude manja od {2} karaktera"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Vrednost za {0} ne može biti lista"
@@ -28600,7 +28743,7 @@ msgstr "Vrednost \"None\" ukazuje na javnog klijenta. U tom slučaju tajna klije
msgid "Value to Validate"
msgstr "Vrednost za validaciju"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Vrednost je prevelika"
@@ -28692,7 +28835,7 @@ msgstr "Prikaži sve"
msgid "View Audit Trail"
msgstr "Prikaži istoriju izmena"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Prikaži DocType dozvole"
@@ -28704,7 +28847,7 @@ msgstr "Prikaži fajl"
msgid "View Full Log"
msgstr "Prikaži celu evidenciju"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Prikaži listu"
@@ -28714,7 +28857,7 @@ msgstr "Prikaži listu"
msgid "View Log"
msgstr "Prikaži evidenciju"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Prikaži dozvoljena dokumenta"
@@ -28830,6 +28973,7 @@ msgid "Warehouse"
msgstr "Skladište"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Upozorenje"
@@ -28924,7 +29068,7 @@ msgstr "Veb-stranica"
msgid "Web Page Block"
msgstr "Blok veb-stranice"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "URL veb-stranice"
@@ -29314,7 +29458,7 @@ msgstr "Biće prikazano samo ukoliko su naslovi odeljaka omogućeni"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Planirani zadaci će se izvršavati samo jednom dnevno za neaktivne sajtove. Postavite na 0 da biste izbegli automatsko isključivanje planera."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Sa zaglavljem"
@@ -29475,7 +29619,7 @@ msgstr "Radni tok je uspešno ažuriran"
msgid "Workspace"
msgstr "Radni prostor"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "Radni prostor {0} ne postoji"
@@ -29568,7 +29712,7 @@ msgstr "Završavanje"
msgid "Write"
msgstr "Izmena"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Pogrešna vrednost u polju preuzmi iz"
@@ -29597,7 +29741,7 @@ msgstr "Polje Y ose"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y polje"
@@ -29659,7 +29803,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29695,6 +29839,10 @@ msgstr "Dodali ste 1 red u {0}"
msgid "You added {0} rows to {1}"
msgstr "Dodali ste {0} redova u {1}"
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "Pokušavate da otvorite eksterni link. Da potvrdite, kliknite ponovo na link."
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Povezani ste na internet."
@@ -29733,12 +29881,12 @@ msgstr "Nemate dozvolu da uređujete izveštaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nemate dozvolu da izvezete doctype {}"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Nemate dozvolu da odštampate ovaj izveštaj"
@@ -29746,7 +29894,7 @@ msgstr "Nemate dozvolu da odštampate ovaj izveštaj"
msgid "You are not allowed to send emails related to this document"
msgstr "Nemate dozvolu da pošaljete imejl vezan za ovaj dokument"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca"
@@ -29819,11 +29967,11 @@ msgstr "Možete promeniti politiku čuvanja podataka u {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Možete nastaviti sa uvodnom obukom nakon što istražite ovu stranicu"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Možete onemogućiti ovaj {0} umesto da ga obrišete."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Možete povećati ograničenje u podešavanjima sistema."
@@ -29873,11 +30021,11 @@ msgstr "Možete koristiti prilagodi obrazac za postavljanje nivoa na poljima."
msgid "You can use wildcard %"
msgstr "Možete koristiti zamenski simbol %"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Ne možete postaviti 'Opcije' za polje {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Ne možete postaviti 'Moguće prevođenje' za polje {0}"
@@ -29895,7 +30043,7 @@ msgstr "Otkazali ste ovaj dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Ne možete kreirati grafikon kontrolne table iz jednog DocType-a"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Ne možete ukloniti opciju 'Isključivo za čitanje' za polje {0}"
@@ -29938,15 +30086,15 @@ msgstr "Nemate dozvolu za čitanje ili izbor za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Obratite se svom menadžeru za pristup."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite ovu radnju"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dozvolu za pristup polju: {0}"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29958,11 +30106,11 @@ msgstr "Nemate dozvolu da otkažete sve povezane dokumente."
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup izveštaju: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvole za pristup DocType-u {0}."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovom fajlu"
@@ -29982,7 +30130,7 @@ msgstr "Imate novu poruku od:"
msgid "You have been successfully logged out"
msgstr "Uspešno ste odjavljeni"
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Dostigli ste ograničenje broja redova u tabeli baze podataka: {0}"
@@ -30010,7 +30158,7 @@ msgstr "Imate nepročitano {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Još uvek niste dodali grafikone ili brojčane kartice na kontrolnu tablu."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "Još uvek niste kreirali {0}"
@@ -30027,11 +30175,11 @@ msgstr "Vi ste poslednji put ovo uredili"
msgid "You must add atleast one link."
msgstr "Morate dodati barem jedan link."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac"
@@ -30055,7 +30203,7 @@ msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u razvojnom režimu da biste uredili standardni veb-obrazac"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristupili rezervnim kopijama."
@@ -30146,6 +30294,10 @@ msgstr "Prestali ste da pratite ovaj dokument"
msgid "You viewed this"
msgstr "Pregledali ste ovo"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "Bićete preusmereni na:"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr "Pozvani ste da se pridružite {0}"
@@ -30191,7 +30343,7 @@ msgstr "Vaše prečice"
msgid "Your account has been deleted"
msgstr "Vaš nalog je obrisan"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Vaš nalog je zaključan i biće ponovo omogućen nakon {0} sekundi"
@@ -30253,11 +30405,11 @@ msgstr "Naziv i adresa Vaše organizacije za podnožje imejla."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne informacije molimo Vas da odgovorite na ovu poruku."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr "Vaš izveštaj se generiše u pozadini. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "Vaš izveštaj se generiše u pozadini. Dobićete imejl na {0} sa linkom za preuzimanje kada bude spreman."
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, molimo Vas da se prijavite ponovo da biste nastavili."
@@ -30565,7 +30717,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "oznaka"
@@ -30594,7 +30746,7 @@ msgstr "lista"
msgid "logged in"
msgstr "prijavljen"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "login_required"
@@ -30932,7 +31084,7 @@ msgstr "putem uvoza podataka"
msgid "via Google Meet"
msgstr "putem Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "putem obaveštenja"
@@ -31042,7 +31194,7 @@ msgstr "{0} grafikon"
msgid "{0} Dashboard"
msgstr "{0} kontrolna tabla"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31083,7 +31235,7 @@ msgstr "{0} mapa"
msgid "{0} Name"
msgstr "{0} naziv"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} nije dozvoljeno menjati {1}, nakon što je podneto od {2} za {3}"
@@ -31093,7 +31245,7 @@ msgstr "{0} nije dozvoljeno menjati {1}, nakon što je podneto od {2} za {3}"
msgid "{0} Report"
msgstr "{0} izveštaj"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} izveštaji"
@@ -31149,7 +31301,7 @@ msgstr "{0} i {1}"
msgid "{0} are currently {1}"
msgstr "{0} je trenutno {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} su neophodni"
@@ -31166,7 +31318,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} priložen {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} ne može biti veće od {1}"
@@ -31243,7 +31395,7 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} polje ne može biti postavljeno kao jedinstveno u {1}, jer postoje nejedinstvene postojeće vrednosti"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "Polja {0} ne smeju da sadrže backticks (`): {1}"
@@ -31288,7 +31440,7 @@ msgstr "{0} u redu {1} ne može imati URL i zavisne stavke"
msgid "{0} is a mandatory field"
msgstr "{0} je obavezno polje"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} nije važeći zip fajl"
@@ -31337,7 +31489,7 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezno"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr "{0} nije zavisna tabela od {1}"
@@ -31357,12 +31509,12 @@ msgstr "{0} nije važeći kalendar. Preusmeravanje na podrazumevani kalendar."
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeći DocType ili dinamički link"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća imejl adresa"
@@ -31370,11 +31522,11 @@ msgstr "{0} nije važeća imejl adresa"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeća ISO 3166 ALPHA-2 šifra."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} nije važeći naziv"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije važeći broj telefona"
@@ -31394,7 +31546,7 @@ msgstr "{0} nije važeće matično polje za {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} nije važeći format izveštaja. Format izveštaja treba da bude jedan od sledećih {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} nije zip fajl"
@@ -31418,7 +31570,7 @@ msgstr "{0} nije jedan od {1}"
msgid "{0} is not set"
msgstr "{0} nije postavljen"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada podrazumevani format za štampanje za {1} doctype"
@@ -31428,8 +31580,8 @@ msgstr "{0} je jedno od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je neophodno"
@@ -31442,7 +31594,7 @@ msgstr "{0} je postavljeno"
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "odabrano {0} stavki"
@@ -31499,11 +31651,11 @@ msgstr "{0} ne sme biti nijedno od {1}"
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} mora prvo biti postavljeno"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstveno"
@@ -31528,11 +31680,11 @@ msgid "{0} not found"
msgstr "{0} nije pronađeno"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} od {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redova sa zavisnim podacima)"
@@ -31582,7 +31734,7 @@ msgstr "{0} je uklonio svoj zadatak."
msgid "{0} removed {1} rows from {2}"
msgstr "{0} je uklonio {1} redova iz {2}"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta"
@@ -31656,7 +31808,7 @@ msgstr "{0} do {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} je opozvao deljenje ovog dokumenta {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} je ažurirano"
@@ -31692,11 +31844,11 @@ msgstr "{0} {1} je dodat"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} je dodat na kontrolnu tablu {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne može biti \"{2}\". Trebalo bi da bude jedno od \"{3}\""
@@ -31716,11 +31868,11 @@ msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađen"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podneti zapis ne može biti obrisan. Prvo morate {2} otkazati {3}."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, red {1}"
@@ -31728,35 +31880,35 @@ msgstr "{0}, red {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom dok se proces ne završi."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) će biti skraćeno, jer je maksimalan broj dozvoljenih karaktera {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Ne može se postaviti izmena bez otkazivanja"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Ne može se postaviti dodeljena izmena ukoliko nije moguće podneti"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Ne može se postaviti dodeljeno podnošenje ukoliko nije moguće podneti"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Ne može se postaviti otkazivanje bez podnošenja"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Ne može se postaviti uvoz bez kreiranja"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Ne može se postaviti podnošenje, otkazivanje ili dopuna bez izmene"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Ne može se postaviti uvoz kao {1} jer nije moguće uvesti"
@@ -31784,11 +31936,11 @@ msgstr "{0}: Naziv polja {1} se pojavljuje više puta u redovima {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Vrsta polja {1} za {2} ne može biti jedinstveno"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Osnovne dozvole nisu postavljene"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Isključivo je dozvoljeno samo jedno pravilo sa istom ulogom, nivoom i {1}"
@@ -31808,7 +31960,7 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv DocType-a {2} za polje {3}"
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Mogu se primeniti i druga pravila dozvola"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Dozvola na nivou 0 mora biti postavljena pre viših nivoa"
@@ -31829,7 +31981,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je postavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} u odnosu na {2}"
@@ -31865,11 +32017,11 @@ msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_na
msgid "{} Complete"
msgstr "{} završeno"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Potencijalno nevažeći python kod.
{}"
@@ -31895,7 +32047,7 @@ msgstr "{} je onemogućeno. Može se omogućiti samo ukoliko je {} označeno."
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datum u tekstualnom formatu."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} nije pronađen PATH! Ovo je neophodno za pristup konzoli."
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 7b39b519f1..f23c41c952 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-09-07 09:32+0000\n"
-"PO-Revision-Date: 2025-09-07 17:01\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "\"I Global Sökning\" är otillåtet för {0} på rad {1}"
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr "\"I List Vy\" är inte tillåtet för fält {0} av typ {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:363
+#: frappe/custom/doctype/customize_form/customize_form.py:367
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}"
@@ -86,11 +86,11 @@ msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}"
msgid "'Recipients' not specified"
msgstr "\"Mottagare\" inte angivet"
-#: frappe/utils/__init__.py:269
+#: frappe/utils/__init__.py:271
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' är inte ett giltigt IBAN nummer"
-#: frappe/utils/__init__.py:259
+#: frappe/utils/__init__.py:261
msgid "'{0}' is not a valid URL"
msgstr "'{0}' är inte en giltig webbadress"
@@ -122,7 +122,7 @@ msgstr "0 - Utkast; 1 - Godkänd; 2 - Annullerad"
msgid "0 is highest"
msgstr "0 är högsta värde"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:893
msgid "1 = True & 0 = False"
msgstr "1 = Sant & 0 = Falskt"
@@ -140,11 +140,11 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender Händelse Synkroniserad."
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "1 Report"
msgstr "1 Rapport"
-#: frappe/tests/test_utils.py:739
+#: frappe/tests/test_utils.py:845
msgid "1 day ago"
msgstr "1 dag sedan"
@@ -153,17 +153,17 @@ msgid "1 hour"
msgstr "1 timme"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:737
+#: frappe/tests/test_utils.py:843
msgid "1 hour ago"
msgstr "1 timme sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:735
+#: frappe/tests/test_utils.py:841
msgid "1 minute ago"
msgstr "1 minut sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:743
+#: frappe/tests/test_utils.py:849
msgid "1 month ago"
msgstr "1 månad sedan"
@@ -185,37 +185,37 @@ msgctxt "User added row to child table"
msgid "1 row to {0}"
msgstr "1 rad till {0}"
-#: frappe/tests/test_utils.py:734
+#: frappe/tests/test_utils.py:840
msgid "1 second ago"
msgstr "1 sekund sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:741
+#: frappe/tests/test_utils.py:847
msgid "1 week ago"
msgstr "1 vecka sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:745
+#: frappe/tests/test_utils.py:851
msgid "1 year ago"
msgstr "1 år sedan"
-#: frappe/tests/test_utils.py:738
+#: frappe/tests/test_utils.py:844
msgid "2 hours ago"
msgstr "2 timmar sedan"
-#: frappe/tests/test_utils.py:744
+#: frappe/tests/test_utils.py:850
msgid "2 months ago"
msgstr "2 månader sedan"
-#: frappe/tests/test_utils.py:742
+#: frappe/tests/test_utils.py:848
msgid "2 weeks ago"
msgstr "2 veckor sedan"
-#: frappe/tests/test_utils.py:746
+#: frappe/tests/test_utils.py:852
msgid "2 years ago"
msgstr "2 år sedan"
-#: frappe/tests/test_utils.py:736
+#: frappe/tests/test_utils.py:842
msgid "3 minutes ago"
msgstr "3 minuter sedan"
@@ -231,7 +231,7 @@ msgstr "4 timmar"
msgid "5 Records"
msgstr "5 Poster"
-#: frappe/tests/test_utils.py:740
+#: frappe/tests/test_utils.py:846
msgid "5 days ago"
msgstr "5 dagar sedan"
@@ -269,6 +269,16 @@ msgstr "{0} är inte giltig URL"
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
msgstr "Vänligen uppdatera inte det eftersom det kan förstöra ditt formulär. Använd Anpassa Formulär och anpassa Fält och ange egenskaper!
"
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr "Begär fil som innehåller din personligt identifierbara information (PII) som sparas i vårt system. Filen kommer att vara i JSON format och skickas till dig via e-post. Om du vill att din PII ska raderas från vårt system kan skapa begäran om att radera data.
"
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr "Skicka en begäran om att radera ditt konto och personligt identifierbar information (PII) som lagras i vårt system. Du kommer att få ett e-postmeddelande för att verifiera din begäran. När begäran har verifierats kommer vi att ta hand om att radera din PII. Om du bara vill kontrollera vilken PII vi har lagrat kan du begära dina uppgifter.
"
+
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -752,11 +762,16 @@ msgstr "DocType namn ska börja med bokstav och kan bara bestå av bokstäver, s
msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
msgstr "System instans kan fungera som en OAuth Klient, Resurs eller Auktorisering Server. Denna DocType innehåller inställningar som rör alla tre."
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr "En nedladdningslänk med dina uppgifter kommer att skickas till den e-postadress som är kopplad till ditt konto."
+
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr "Ett fält med detta namn {0} finns redan i {1}"
-#: frappe/core/doctype/file/file.py:267
+#: frappe/core/doctype/file/file.py:269
msgid "A file with same name {} already exists"
msgstr "En fil med samma namn {} finns redan"
@@ -880,7 +895,7 @@ msgstr "API slutpunkt argument ska vara giltig JSON"
#. Label of the api_key (Data) field in DocType 'Google Settings'
#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
-#: frappe/core/doctype/user/user.js:452 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -899,7 +914,7 @@ msgstr "API Nyckel och Hemlighet för att interagera med relä server. Dessa kom
msgid "API Key cannot be regenerated"
msgstr "API Nyckel kan inte återskapas"
-#: frappe/core/doctype/user/user.js:449
+#: frappe/core/doctype/user/user.js:456
msgid "API Keys"
msgstr "API Nycklar"
@@ -923,7 +938,7 @@ msgstr "API Begäran Logg"
#. Label of the api_secret (Password) field in DocType 'Email Account'
#. Label of the api_secret (Password) field in DocType 'Push Notification
#. Settings'
-#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
@@ -1009,7 +1024,7 @@ msgstr "Åtkomst Token"
msgid "Access Token URL"
msgstr "Åtkomst Token URL"
-#: frappe/auth.py:491
+#: frappe/auth.py:494
msgid "Access not allowed from this IP Address"
msgstr "Åtkomst är ej tillåtet från denna IP Adress"
@@ -1125,7 +1140,7 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}"
#: frappe/public/js/frappe/views/reports/query_report.js:191
#: frappe/public/js/frappe/views/reports/query_report.js:204
#: frappe/public/js/frappe/views/reports/query_report.js:214
-#: frappe/public/js/frappe/views/reports/query_report.js:841
+#: frappe/public/js/frappe/views/reports/query_report.js:850
msgid "Actions"
msgstr "Åtgärder"
@@ -1182,7 +1197,7 @@ msgstr "Aktivitet Logg"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:502
#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
@@ -1193,7 +1208,7 @@ msgstr "Aktivitet Logg"
msgid "Add"
msgstr "Lägg till"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Add / Remove Columns"
msgstr "Lägg till/Ta Bort Kolumn"
@@ -1225,7 +1240,7 @@ msgstr "Lägg till Kant Längst Ner"
msgid "Add Border at Top"
msgstr "Lägg till Kant Längst Upp"
-#: frappe/desk/doctype/number_card/number_card.js:36
+#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Lägg till i Översikt Panel"
@@ -1238,8 +1253,8 @@ msgid "Add Child"
msgstr "Lägg till Underval"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1829
-#: frappe/public/js/frappe/views/reports/query_report.js:1832
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
#: frappe/public/js/frappe/views/reports/report_view.js:360
#: frappe/public/js/frappe/views/reports/report_view.js:385
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1333,7 +1348,7 @@ msgstr "Lägg till Prenumeranter"
msgid "Add Tags"
msgstr "Lägg till Taggar"
-#: frappe/public/js/frappe/list/list_view.js:2145
+#: frappe/public/js/frappe/list/list_view.js:2151
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Lägg till Taggar"
@@ -1508,6 +1523,7 @@ msgstr "Extra Behörigheter"
#. Label of the address (Small Text) field in DocType 'Website Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
@@ -1516,16 +1532,18 @@ msgstr "Adress"
#. Label of the address_line1 (Data) field in DocType 'Address'
#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
-msgstr "Adress Linje 1"
+msgstr "Adressrad 1"
#. Label of the address_line2 (Data) field in DocType 'Address'
#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
-msgstr "Adress Linje 2"
+msgstr "Adressrad 2"
#. Name of a DocType
#: frappe/contacts/doctype/address_template/address_template.json
@@ -1684,7 +1702,7 @@ msgstr "Efter Godkännande"
msgid "After Submit"
msgstr "Efter Godkännande"
-#: frappe/desk/doctype/number_card/number_card.py:62
+#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
msgstr "Aggregerad Fält erfordras för att skapa nummerkort"
@@ -1711,11 +1729,11 @@ msgstr "Varna"
msgid "Alerts and Notifications"
msgstr "Varningar och Aviseringar"
-#: frappe/database/query.py:1608
+#: frappe/database/query.py:1610
msgid "Alias cannot be a SQL keyword: {0}"
msgstr "Alias kan inte vara SQL nyckelord: {0}"
-#: frappe/database/query.py:1533
+#: frappe/database/query.py:1535
msgid "Alias must be a string"
msgstr "Alias måste vara sträng"
@@ -2163,6 +2181,12 @@ msgstr "Lägger till status beroende fält {0}"
msgid "Alternative Email ID"
msgstr "Alternativ E-post"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr "Alltid"
+
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always BCC Address"
@@ -2239,6 +2263,11 @@ msgstr "Ändring Ej Tillåten"
msgid "Amendment naming rules updated."
msgstr "Ändring Namngivning Regler uppdaterad."
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr "Ett e-postmeddelande för att verifiera din begäran har skickats till din e-postadress. Vänligen verifiera din begäran för att slutföra processen."
+
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Fel inträffade vid konfiguration av Session Standard"
@@ -2421,7 +2450,7 @@ msgstr "Tillämpad På"
msgid "Apply"
msgstr "Tillämpa"
-#: frappe/public/js/frappe/list/list_view.js:2130
+#: frappe/public/js/frappe/list/list_view.js:2136
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Tillämpa Tilldelning Regel"
@@ -2506,7 +2535,7 @@ msgstr "Arkiverade Kolumner"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Är du säker på att du vill avbryta inbjudan?"
-#: frappe/public/js/frappe/list/list_view.js:2109
+#: frappe/public/js/frappe/list/list_view.js:2115
msgid "Are you sure you want to clear the assignments?"
msgstr "Är du säker på att du vill ta bort tilldelningar?"
@@ -2542,7 +2571,7 @@ msgstr "Är du säker på att du vill ta bort denna post?"
msgid "Are you sure you want to discard the changes?"
msgstr "Är du säker på att du vill ignorera ändringar?"
-#: frappe/public/js/frappe/views/reports/query_report.js:968
+#: frappe/public/js/frappe/views/reports/query_report.js:977
msgid "Are you sure you want to generate a new report?"
msgstr "Är du säker på att du vill skapa ny rapport?"
@@ -2550,7 +2579,7 @@ msgstr "Är du säker på att du vill skapa ny rapport?"
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Är du säker på att du vill slå samman {0} med {1}?"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
msgid "Are you sure you want to proceed?"
msgstr "Är du säker på att du vill fortsätta?"
@@ -2560,7 +2589,7 @@ msgstr "Är du säker på att du vill återaktivera schemaläggare?"
#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
-msgstr "Är du säker att du vill länka om konversation till {0}?"
+msgstr "Är du säker att du vill länka om kommunikation till {0}?"
#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
@@ -2605,6 +2634,12 @@ msgstr "Eftersom dokumentdelning är inaktiverat, skapa nödvändiga behörighet
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr "Enligt begäran har ditt konto och data på {0} kopplat till E-post {1} tagits bort permanent"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr "Fråga"
+
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
@@ -2614,7 +2649,7 @@ msgstr "Tilldela Villkor"
msgid "Assign To"
msgstr "Tilldela till"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2097
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tilldela till"
@@ -2757,7 +2792,7 @@ msgstr "Uppgifter"
msgid "Asynchronous"
msgstr "Asynkron"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:697
msgid "At least one column is required to show in the grid."
msgstr "Minst en kolumn erfordras för att visas i rutnät."
@@ -2837,7 +2872,7 @@ msgstr "Bifogad till Fält"
msgid "Attached To Name"
msgstr "Bifogad till Namn"
-#: frappe/core/doctype/file/file.py:150
+#: frappe/core/doctype/file/file.py:152
msgid "Attached To Name must be a string or an integer"
msgstr "Bifogat till namn måste vara en sträng eller ett heltal"
@@ -2853,7 +2888,7 @@ msgstr "Bilaga"
msgid "Attachment Limit (MB)"
msgstr "Bilaga Gräns (MB)"
-#: frappe/core/doctype/file/file.py:336
+#: frappe/core/doctype/file/file.py:338
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr "Bilaga Gräns uppnådd"
@@ -2875,11 +2910,11 @@ msgstr "Bilaga Borttagen"
msgid "Attachments"
msgstr "Bilagor"
-#: frappe/public/js/frappe/form/print_utils.js:104
+#: frappe/public/js/frappe/form/print_utils.js:119
msgid "Attempting Connection to QZ Tray..."
msgstr "Försöker ansluta till QZ Aktivitet Fält..."
-#: frappe/public/js/frappe/form/print_utils.js:120
+#: frappe/public/js/frappe/form/print_utils.js:135
msgid "Attempting to launch QZ Tray..."
msgstr "Försöker starta QZ Aktivitet Fält..."
@@ -3738,15 +3773,15 @@ msgstr "Massborttagning"
msgid "Bulk Edit"
msgstr "Mass Redigera"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1190
msgid "Bulk Edit {0}"
msgstr "Mass Redigera {0}"
-#: frappe/desk/reportview.py:638
+#: frappe/desk/reportview.py:637
msgid "Bulk Operation Failed"
msgstr "Mass Åtgärd Fel"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Bulk Operation Successful"
msgstr "Mass Åtgärd Klar"
@@ -3789,17 +3824,17 @@ msgstr "Knapp"
#. Label of the button_gradients (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Gradient Knapp"
+msgstr "Knapp Gradienter"
#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Rundade Hörn Knapp"
+msgstr "Knapp Rundade Hörn"
#. Label of the button_shadows (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Skugg Knapp"
+msgstr "Knapp Skuggor"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -3970,7 +4005,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1768
+#: frappe/public/js/frappe/utils/utils.js:1766
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4030,7 +4065,7 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns."
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
-#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/doctype/doctype_list.js:131
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.js:17
#: frappe/email/doctype/notification/notification.json
@@ -4038,7 +4073,7 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns."
msgid "Cancel"
msgstr "Annullera"
-#: frappe/public/js/frappe/list/list_view.js:2200
+#: frappe/public/js/frappe/list/list_view.js:2206
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annullera"
@@ -4056,7 +4091,7 @@ msgstr "Annullera"
msgid "Cancel All Documents"
msgstr "Annullera Alla Dokument"
-#: frappe/public/js/frappe/list/list_view.js:2205
+#: frappe/public/js/frappe/list/list_view.js:2211
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Annullera {0} dokument?"
@@ -4105,11 +4140,11 @@ msgstr "Kan inte Hämta Värden"
msgid "Cannot Remove"
msgstr "Kan inte Ta Bort"
-#: frappe/model/base_document.py:1165
+#: frappe/model/base_document.py:1222
msgid "Cannot Update After Submit"
msgstr "Kan inte Uppdatera efter Godkännande"
-#: frappe/core/doctype/file/file.py:641
+#: frappe/core/doctype/file/file.py:646
msgid "Cannot access file path {0}"
msgstr "Kan inte komma åt filsökväg {0}"
@@ -4153,11 +4188,11 @@ msgstr "Kan inte skapa {0} mot underordnad dokument: {1}"
msgid "Cannot create private workspace of other users"
msgstr "Kan inte skapa privat arbetsyta för andra användare"
-#: frappe/core/doctype/file/file.py:163
+#: frappe/core/doctype/file/file.py:165
msgid "Cannot delete Home and Attachments folders"
msgstr "Kan inte ta bort Hem och Bilaga mappar"
-#: frappe/model/delete_doc.py:379
+#: frappe/model/delete_doc.py:419
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Kan inte ta bort eller annullera eftersom {0} {1} är länkat till {2} {3} {4}"
@@ -4220,8 +4255,8 @@ msgstr "Kan inte redigera annullerad dokument"
msgid "Cannot edit filters for standard charts"
msgstr "Kan inte redigera filter för standard diagram"
-#: frappe/desk/doctype/number_card/number_card.js:277
-#: frappe/desk/doctype/number_card/number_card.js:364
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
msgid "Cannot edit filters for standard number cards"
msgstr "Kan inte redigera filter för standard diagram"
@@ -4233,11 +4268,11 @@ msgstr "Kan inte redigera standard fält"
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr "Kan inte aktivera {0} för ej godkännbar doctype"
-#: frappe/core/doctype/file/file.py:262
+#: frappe/core/doctype/file/file.py:264
msgid "Cannot find file {} on disk"
msgstr "Kan inte hitta fil {} på disk"
-#: frappe/core/doctype/file/file.py:581
+#: frappe/core/doctype/file/file.py:586
msgid "Cannot get file contents of a Folder"
msgstr "Kan inte hämta fil innehåll från mapp"
@@ -4245,7 +4280,7 @@ msgstr "Kan inte hämta fil innehåll från mapp"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Kan inte mappa flera skrivare till enskild utskrift format."
-#: frappe/public/js/frappe/form/grid.js:1133
+#: frappe/public/js/frappe/form/grid.js:1134
msgid "Cannot import table with more than 5000 rows."
msgstr "Kan inte importera tabell med fler än 5000 rader."
@@ -4261,7 +4296,7 @@ msgstr "Kan inte mappa eftersom följande villkor misslyckas:"
msgid "Cannot match column {0} with any field"
msgstr "Kan inte avstäma kolumn {0} med något fält"
-#: frappe/public/js/frappe/form/grid_row.js:175
+#: frappe/public/js/frappe/form/grid_row.js:176
msgid "Cannot move row"
msgstr "Kan inte flytta rad"
@@ -4290,11 +4325,11 @@ msgstr "Kan inte godkänna {0}."
msgid "Cannot update {0}"
msgstr "Kan inte uppdatera {0}"
-#: frappe/model/db_query.py:1130
+#: frappe/model/db_query.py:1136
msgid "Cannot use sub-query here."
msgstr "Kan inte använda underfråga här."
-#: frappe/model/db_query.py:1162
+#: frappe/model/db_query.py:1168
msgid "Cannot use {0} in order/group by"
msgstr "Kan inte använda {0} i ordna/gruppera efter"
@@ -4567,11 +4602,11 @@ msgstr "Underordnad tabell {0} för fält {1}"
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:52
+#: frappe/core/doctype/doctype/doctype_list.js:53
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Underordnade Tabeller visas som rutnät i andra DocTyper"
-#: frappe/database/query.py:660
+#: frappe/database/query.py:662
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Underordnade frågefält för '{0}' måste vara lista eller tupel."
@@ -4600,6 +4635,7 @@ msgid "Choose authentication method to be used by all users"
msgstr "Välj autentiseringsätt som ska användas av alla Användare"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Ort"
@@ -4626,7 +4662,7 @@ msgstr "Rensa & Lägg till Mall"
msgid "Clear All"
msgstr "Rensa Alla"
-#: frappe/public/js/frappe/list/list_view.js:2106
+#: frappe/public/js/frappe/list/list_view.js:2112
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Rensa Tilldelning"
@@ -4703,24 +4739,24 @@ msgid "Click on {0} to generate Refresh Token."
msgstr "Klicka på {0} att skapa Uppdatering Token."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
-#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/desk/doctype/number_card/number_card.js:222
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klicka på tabell att redigera"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
-#: frappe/desk/doctype/number_card/number_card.js:402
+#: frappe/desk/doctype/number_card/number_card.js:419
msgid "Click to Set Dynamic Filters"
msgstr "Klicka på att Ange Dynamisk Filter"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
-#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/desk/doctype/number_card/number_card.js:278
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
msgstr "Klicka på att Ange Filter"
-#: frappe/public/js/frappe/list/list_view.js:739
+#: frappe/public/js/frappe/list/list_view.js:741
msgid "Click to sort by {0}"
msgstr "Klicka på att sortera efter {0}"
@@ -4898,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Fäll In"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Fäll In Alla"
@@ -4953,7 +4989,7 @@ msgstr "Infällbar beror på (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5009,11 +5045,11 @@ msgstr "Kolumn Namn"
msgid "Column Name cannot be empty"
msgstr "Kolumn Namn kan inte vara tom"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Column Width"
msgstr "Kolumn Bred"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:662
msgid "Column width cannot be zero."
msgstr "Kolumn bredd kan inte vara noll."
@@ -5040,7 +5076,7 @@ msgstr "Kolumner"
msgid "Columns / Fields"
msgstr "Kolumner / Fält"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
msgstr "Kolumner baserade på"
@@ -5255,8 +5291,8 @@ msgstr "Komprimerad"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/notification/notification.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
#: frappe/integrations/doctype/webhook/webhook.json
@@ -5304,7 +5340,7 @@ msgstr "Konfiguration"
msgid "Configure Chart"
msgstr "Försäljning Order Diagram"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:407
msgid "Configure Columns"
msgstr "Konfigurera Kolumner"
@@ -5331,7 +5367,7 @@ msgstr "Konfigurera hur ändrade dokument ska namnges.\n\n"
msgid "Configure various aspects of how document naming works like naming series, current counter."
msgstr "Konfigurera olika aspekter av hur dokument namn fungerar som att namnge serier, aktuell räknare."
-#: frappe/core/doctype/user/user.js:412 frappe/public/js/frappe/dom.js:345
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Bekräfta"
@@ -5350,7 +5386,7 @@ msgstr "Bekräfta Åtkomst"
msgid "Confirm Deletion of Account"
msgstr "Bekräfta Borttagning av Konto"
-#: frappe/core/doctype/user/user.js:196
+#: frappe/core/doctype/user/user.js:184
msgid "Confirm New Password"
msgstr "Bekräfta Ny Lösenord"
@@ -5395,8 +5431,8 @@ msgstr "Ansluten App"
msgid "Connected User"
msgstr "Ansluten Användare"
-#: frappe/public/js/frappe/form/print_utils.js:110
-#: frappe/public/js/frappe/form/print_utils.js:134
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
msgid "Connected to QZ Tray!"
msgstr "Ansluten till QZ Aktivitet Fält!"
@@ -5447,6 +5483,10 @@ msgstr "Begränsningar"
msgid "Contact"
msgstr "Kontakt"
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr "Kontakt / e-post hittades inte. Har inte lagt till deltagare för -
{0}"
+
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
@@ -5510,7 +5550,7 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1782
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -5599,7 +5639,7 @@ msgstr "Kopiera fel till urklipp"
msgid "Copy to Clipboard"
msgstr "Kopiera till Urklipp"
-#: frappe/core/doctype/user/user.js:480
+#: frappe/core/doctype/user/user.js:487
msgid "Copy token to clipboard"
msgstr "Kopiera token till urklipp"
@@ -5608,7 +5648,7 @@ msgstr "Kopiera token till urklipp"
msgid "Copyright"
msgstr "Copyright"
-#: frappe/custom/doctype/customize_form/customize_form.py:123
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
msgstr "System DocType kan inte anpassas."
@@ -5632,7 +5672,7 @@ msgstr "Kunde inte hitta {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Kunde inte mappa kolumn {0} till fält {1}"
-#: frappe/database/query.py:564
+#: frappe/database/query.py:566
msgid "Could not parse field: {0}"
msgstr "Kunde inte parsa fält: {0}"
@@ -5685,13 +5725,14 @@ msgstr "Räknare"
#. Label of the country (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:130
+#: frappe/utils/__init__.py:132
msgid "Country Code Required"
msgstr "Land Kod Erfordras"
@@ -5723,13 +5764,13 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Skapa"
-#: frappe/core/doctype/doctype/doctype_list.js:102
+#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
msgstr "Skapa & Fortsätt"
@@ -5743,7 +5784,7 @@ msgid "Create Card"
msgstr "Skapa Kort"
#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1191
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
msgid "Create Chart"
msgstr "Skapa Diagram"
@@ -5777,12 +5818,12 @@ msgstr "Skapa Logg"
msgid "Create New"
msgstr "Skapa Ny"
-#: frappe/public/js/frappe/list/list_view.js:512
+#: frappe/public/js/frappe/list/list_view.js:514
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Skapa Ny "
-#: frappe/core/doctype/doctype/doctype_list.js:100
+#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
msgstr "Skapa Ny DocType"
@@ -5790,7 +5831,7 @@ msgstr "Skapa Ny DocType"
msgid "Create New Kanban Board"
msgstr "Skapa Ny Anslagstavla"
-#: frappe/core/doctype/user/user.js:276
+#: frappe/core/doctype/user/user.js:264
msgid "Create User Email"
msgstr "Skapa E-post Konto"
@@ -5813,8 +5854,8 @@ msgstr "Skapa ny Post"
#: frappe/public/js/frappe/form/controls/link.js:315
#: frappe/public/js/frappe/form/controls/link.js:317
#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:504
-#: frappe/public/js/frappe/web_form/web_form_list.js:225
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Skapa {0}"
@@ -5830,7 +5871,7 @@ msgstr "Skapa eller Redigera Utskrift Format"
msgid "Create or Edit Workflow"
msgstr "Skapa eller Redigera Arbetsflöde"
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/list/list_view.js:509
msgid "Create your first {0}"
msgstr "Skapa {0}"
@@ -5840,7 +5881,7 @@ msgstr "Skapa Arbetsflöde med Arbetsflöde Generator."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Created"
msgstr "Skapad"
@@ -6177,7 +6218,7 @@ msgstr "Anpassad get_list-metod för {0} måste returnera QueryBuilder objekt el
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/core/doctype/doctype/doctype_list.js:83
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom?"
msgstr "Anpassad?"
@@ -6212,7 +6253,7 @@ msgstr "Anpassningar för {0} som exporterades till:
{1}"
msgid "Customize"
msgstr "Anpassa"
-#: frappe/public/js/frappe/list/list_view.js:1943
+#: frappe/public/js/frappe/list/list_view.js:1949
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Anpassa"
@@ -6231,7 +6272,7 @@ msgstr "Anpassa Översikt Panel"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
msgid "Customize Form"
msgstr "Anpassa Formulär"
@@ -6462,7 +6503,7 @@ msgstr "Data Import Logg"
msgid "Data Import Template"
msgstr "Data Import Mall"
-#: frappe/custom/doctype/customize_form/customize_form.py:615
+#: frappe/custom/doctype/customize_form/customize_form.py:619
msgid "Data Too Long"
msgstr "Data För Lång"
@@ -6493,7 +6534,7 @@ msgstr "Databas Rad Storlek Användning"
msgid "Database Storage Usage By Tables"
msgstr "Databas Lagring Användning Efter Tabeller"
-#: frappe/custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:251
msgid "Database Table Row Size Limit"
msgstr "Databas Tabell Rad Storlek Gräns"
@@ -6863,13 +6904,13 @@ msgstr "Försenad"
#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1749
#: frappe/public/js/frappe/views/treeview.js:329
-#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Ta bort"
-#: frappe/public/js/frappe/list/list_view.js:2168
+#: frappe/public/js/frappe/list/list_view.js:2174
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Ta bort"
@@ -6902,7 +6943,7 @@ msgstr "Ta bort Kolumn"
msgid "Delete Data"
msgstr "Ta bort Data"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
msgid "Delete Kanban Board"
msgstr "Ta bort Anslagstavla"
@@ -6916,7 +6957,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Ta bort Flik"
-#: frappe/public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:944
msgid "Delete and Generate New"
msgstr "Ta bort och Skapa Ny"
@@ -6958,12 +6999,12 @@ msgstr "Ta bort flik"
msgid "Delete this record to allow sending to this email address"
msgstr "Ta bort denna post för att tillåta utskick till denna E-post"
-#: frappe/public/js/frappe/list/list_view.js:2173
+#: frappe/public/js/frappe/list/list_view.js:2179
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Ta bort {0} Post permanent?"
-#: frappe/public/js/frappe/list/list_view.js:2179
+#: frappe/public/js/frappe/list/list_view.js:2185
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Ta bort {0} Poster permanent?"
@@ -6999,7 +7040,7 @@ msgstr "Raderade Dokument"
msgid "Deleted Name"
msgstr "Borttaget Namn"
-#: frappe/desk/reportview.py:642
+#: frappe/desk/reportview.py:641
msgid "Deleted all documents successfully"
msgstr "Alla Dokument Borttagna"
@@ -7007,7 +7048,7 @@ msgstr "Alla Dokument Borttagna"
msgid "Deleted!"
msgstr "Borttagen!"
-#: frappe/desk/reportview.py:619
+#: frappe/desk/reportview.py:618
msgid "Deleting {0}"
msgstr "Tar Bort {0}"
@@ -7319,7 +7360,7 @@ msgstr "Inaktivera Registrering för Webbplats"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Inaktivera Standard Bolag E-post Sidfot"
+msgstr "Inaktivera Standard Bolag E-post Signatur"
#. Label of the disable_system_update_notification (Check) field in DocType
#. 'System Settings'
@@ -7460,10 +7501,14 @@ msgstr "Skapa inte ny Användare"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Skapa inte ny Användare om Användare med E-post inte finns i system"
-#: frappe/public/js/frappe/form/grid.js:1194
+#: frappe/public/js/frappe/form/grid.js:1195
msgid "Do not edit headers which are preset in the template"
msgstr "Ändra inte rubriker som är förinställda i mall"
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr "Varna mig inte igen om {0}"
+
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Vill du fortfarande fortsätta?"
@@ -7890,13 +7935,13 @@ msgstr "Dokument Benämning"
#: frappe/desk/doctype/tag_link/tag_link.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "DocType"
-#: frappe/desk/doctype/number_card/number_card.py:59
+#: frappe/desk/doctype/number_card/number_card.py:60
msgid "Document Type and Function are required to create a number card"
msgstr "Dokument Typ och Funktion erfordras för att skapa nummerkort"
@@ -7941,15 +7986,15 @@ msgstr "Dokument Upplåst"
msgid "Document follow is not enabled for this user."
msgstr "Följ Dokument är inte aktiverad för denna användare."
-#: frappe/public/js/frappe/list/list_view.js:1300
+#: frappe/public/js/frappe/list/list_view.js:1302
msgid "Document has been cancelled"
msgstr "Dokumentet är annullerad"
-#: frappe/public/js/frappe/list/list_view.js:1299
+#: frappe/public/js/frappe/list/list_view.js:1301
msgid "Document has been submitted"
msgstr "Dokument är godkänd"
-#: frappe/public/js/frappe/list/list_view.js:1298
+#: frappe/public/js/frappe/list/list_view.js:1300
msgid "Document is in draft state"
msgstr "Dokumentet är i utkast tillstånd"
@@ -8091,7 +8136,7 @@ msgstr "Ring"
msgid "Double click to edit label"
msgstr "Dubbelklicka för att redigera etikett"
-#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:467
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
@@ -8124,7 +8169,7 @@ msgstr "Nedladdning Länk"
msgid "Download PDF"
msgstr "Ladda ner PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:831
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Download Report"
msgstr "Ladda ner Rapport"
@@ -8220,7 +8265,7 @@ msgstr "Kopiera Post"
msgid "Duplicate Filter Name"
msgstr "Kopiera Filter Namn"
-#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Kopiera Namn"
@@ -8324,8 +8369,8 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:748
-#: frappe/public/js/frappe/views/reports/query_report.js:879
-#: frappe/public/js/frappe/views/reports/query_report.js:1782
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8337,7 +8382,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Redigera"
-#: frappe/public/js/frappe/list/list_view.js:2254
+#: frappe/public/js/frappe/list/list_view.js:2260
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Redigera"
@@ -8347,7 +8392,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Redigera"
-#: frappe/public/js/frappe/form/grid_row.js:349
+#: frappe/public/js/frappe/form/grid_row.js:350
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Redigera"
@@ -8376,7 +8421,7 @@ msgstr "Redigera Anpassad HTML"
msgid "Edit DocType"
msgstr "Redigera DocType"
-#: frappe/public/js/frappe/list/list_view.js:1970
+#: frappe/public/js/frappe/list/list_view.js:1976
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Redigera DocType"
@@ -8394,7 +8439,7 @@ msgstr "Redigera Filter"
msgid "Edit Footer"
msgstr "Redigera Sidfot"
-#: frappe/printing/doctype/print_format/print_format.js:28
+#: frappe/printing/doctype/print_format/print_format.js:29
msgid "Edit Format"
msgstr "Redigera Format"
@@ -8496,7 +8541,7 @@ msgstr "Redigera {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/core/doctype/doctype/doctype_list.js:58
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "Redigerbar Rutnät"
@@ -8541,6 +8586,8 @@ msgstr "Element Väljare"
#. Label of the email (Data) field in DocType 'Email Unsubscribe'
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -8559,6 +8606,8 @@ msgstr "Element Väljare"
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "E-post"
@@ -8641,7 +8690,7 @@ msgstr "E-post Flagg Kö"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Bolag E-post Sidfot"
+msgstr "Standard Bolag E-post Signatur"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -8678,6 +8727,7 @@ msgid "Email IDs"
msgstr "E-post"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "E-post"
@@ -8789,7 +8839,7 @@ msgstr "E-post är markerad som skräp post"
msgid "Email has been moved to trash"
msgstr "E-post är flyttad till papperskorg"
-#: frappe/core/doctype/user/user.js:278
+#: frappe/core/doctype/user/user.js:266
msgid "Email is mandatory to create User Email"
msgstr "E-post erfordras för att skapa Användare E-post"
@@ -8832,7 +8882,7 @@ msgstr "E-post skickas med nästa möjliga arbetsflöde åtgärd"
msgid "Embed code copied"
msgstr "Bädda in kopierad kod"
-#: frappe/database/query.py:1537
+#: frappe/database/query.py:1539
msgid "Empty alias is not allowed"
msgstr "Tomt alias är inte tillåtet"
@@ -8840,7 +8890,7 @@ msgstr "Tomt alias är inte tillåtet"
msgid "Empty column"
msgstr "Tom kolumn"
-#: frappe/database/query.py:1455
+#: frappe/database/query.py:1457
msgid "Empty string arguments are not allowed"
msgstr "Tomma strängargument är inte tillåtna"
@@ -9269,7 +9319,7 @@ msgstr "Fel Logg"
msgid "Error Message"
msgstr "Felmeddelande"
-#: frappe/public/js/frappe/form/print_utils.js:141
+#: frappe/public/js/frappe/form/print_utils.js:156
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Fel vid anslutning till QZ Aktivitet Fält...
Du måste ha QZ Aktivitet Fält App installerad och igång för att kunna använda Direkt Utskrift funktion.
Klicka här för att ladda ner och installera QZ App .
Klicka här för att lära dig mer om Direkt Utskrift."
@@ -9297,9 +9347,9 @@ msgstr "Fel i Klient Skript."
msgid "Error in Header/Footer Script"
msgstr "Fel i Brevhuvud/Sidfot Skript"
-#: frappe/email/doctype/notification/notification.py:640
-#: frappe/email/doctype/notification/notification.py:780
-#: frappe/email/doctype/notification/notification.py:786
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
msgid "Error in Notification"
msgstr "Fel i Avisering"
@@ -9319,19 +9369,19 @@ msgstr "Fel vid parsning av nästlade filter: {0}"
msgid "Error while connecting to email account {0}"
msgstr "Fel vid anslutning till E-post Konto {0}"
-#: frappe/email/doctype/notification/notification.py:777
+#: frappe/email/doctype/notification/notification.py:779
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Fel vid test av Avisering {0}. Fixa Mall."
-#: frappe/model/base_document.py:803
+#: frappe/model/base_document.py:860
msgid "Error: Data missing in table {0}"
msgstr "Fel: Data saknas i tabell {0}"
-#: frappe/model/base_document.py:813
+#: frappe/model/base_document.py:870
msgid "Error: Value missing for {0}: {1}"
msgstr "Fel: Värdet saknas för {0}: {1}"
-#: frappe/model/base_document.py:807
+#: frappe/model/base_document.py:864
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Fel: {0} Rad #{1}: Värde saknas för: {2}"
@@ -9480,7 +9530,7 @@ msgstr "Exekverar Kod"
msgid "Executing..."
msgstr "Kör..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2129
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
msgid "Execution Time: {0} sec"
msgstr "Exekvering Tid: {0} sek"
@@ -9506,12 +9556,12 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandera"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandera Alla"
-#: frappe/database/query.py:352
+#: frappe/database/query.py:354
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Operator \"and\" eller \"or\" förväntades, resultat: {0}"
@@ -9569,13 +9619,13 @@ msgstr "Förfallo Tid för QR Kod Bild Sida"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1817
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
#: frappe/public/js/frappe/views/reports/report_view.js:1629
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Export"
-#: frappe/public/js/frappe/list/list_view.js:2276
+#: frappe/public/js/frappe/list/list_view.js:2282
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Export"
@@ -9768,7 +9818,7 @@ msgstr "Misslyckades att beräkna text för begäran: {}"
msgid "Failed to connect to server"
msgstr "Misslyckades att ansluta till server"
-#: frappe/auth.py:698
+#: frappe/auth.py:701
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Misslyckades med att avkoda token. Ange giltig base64 kodad token."
@@ -9776,7 +9826,7 @@ msgstr "Misslyckades med att avkoda token. Ange giltig base64 kodad token."
msgid "Failed to decrypt key {0}"
msgstr "Misslyckades med att dekryptera nyckel {0}"
-#: frappe/desk/reportview.py:636
+#: frappe/desk/reportview.py:635
msgid "Failed to delete {0} documents: {1}"
msgstr "Misslyckades att ta bort {0} dokument: {1}"
@@ -9932,7 +9982,7 @@ msgstr "Hämtar standard Global Sökning dokument."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1876
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10015,7 +10065,7 @@ msgstr "Fält {0} hänvisar till icke-existerande doctype {1}."
msgid "Field {0} not found."
msgstr "Fält {0} hittades inte."
-#: frappe/email/doctype/notification/notification.py:545
+#: frappe/email/doctype/notification/notification.py:547
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
msgstr "Fält {0} på dokument {1} är varken mobil nummer fält, Kund eller Användarlänk"
@@ -10033,7 +10083,7 @@ msgstr "Fält {0} på dokument {1} är varken mobil nummer fält, Kund eller Anv
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Fält Namn"
@@ -10046,7 +10096,7 @@ msgstr "Fält Namn '{0}' är i konflikt med {1} av namn {2} i {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning"
-#: frappe/database/schema.py:127 frappe/database/schema.py:404
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fält Namn är begränsad till 64 tecken ({0})"
@@ -10062,11 +10112,11 @@ msgstr "Fält Namn som kommer att vara DocType för den här länk fält."
msgid "Fieldname {0} appears multiple times"
msgstr "Fält Namn {0} visas flera gånger"
-#: frappe/database/schema.py:394
+#: frappe/database/schema.py:398
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fält Namn {0} kan inte ha special tecken som {1}"
-#: frappe/core/doctype/doctype/doctype.py:1908
+#: frappe/core/doctype/doctype/doctype.py:1921
msgid "Fieldname {0} conflicting with meta object"
msgstr "Fält Namn {0} i konflikt mot meta objekt"
@@ -10106,7 +10156,7 @@ msgstr "Fält"
msgid "Fields Multicheck"
msgstr "Fält Multicheck"
-#: frappe/core/doctype/file/file.py:429
+#: frappe/core/doctype/file/file.py:431
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Fält `file_name` eller `file_url` måste anges för fil"
@@ -10114,7 +10164,7 @@ msgstr "Fält `file_name` eller `file_url` måste anges för fil"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Filter måste vara lista eller tupel när as_list är aktiverad"
-#: frappe/database/query.py:611
+#: frappe/database/query.py:613
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Fält måste vara sträng, lista, tupel, pypika Fält eller pypika Funktion"
@@ -10142,7 +10192,7 @@ msgstr "Fält Typ"
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Fält Typ kan inte ändras från {0} till {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:589
+#: frappe/custom/doctype/customize_form/customize_form.py:593
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Fält Typ kan inte ändras från {0} till {1} på rad {2}"
@@ -10208,7 +10258,7 @@ msgstr "Fil URL"
msgid "File backup is ready"
msgstr "Fil Säkerhetskopiering är klar"
-#: frappe/core/doctype/file/file.py:644
+#: frappe/core/doctype/file/file.py:649
msgid "File name cannot have {0}"
msgstr "Fil Namn får inte innehålla {0}"
@@ -10216,7 +10266,7 @@ msgstr "Fil Namn får inte innehålla {0}"
msgid "File not attached"
msgstr "Fil inte bifogad"
-#: frappe/core/doctype/file/file.py:754 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Fil storlek överskred högsta tillåtna storlek på {0} MB"
@@ -10225,11 +10275,11 @@ msgstr "Fil storlek överskred högsta tillåtna storlek på {0} MB"
msgid "File too big"
msgstr "Fil för stor"
-#: frappe/core/doctype/file/file.py:388
+#: frappe/core/doctype/file/file.py:390
msgid "File type of {0} is not allowed"
msgstr "Fil typ {0} är inte tillåten"
-#: frappe/core/doctype/file/file.py:375 frappe/core/doctype/file/file.py:446
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
msgid "File {0} does not exist"
msgstr "Fil {0} existerar inte"
@@ -10243,8 +10293,8 @@ msgstr "Filer"
#: frappe/core/doctype/prepared_report/prepared_report.js:8
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
#: frappe/public/js/frappe/list/base_list.js:969
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
@@ -10283,11 +10333,11 @@ msgstr "Filter Namn"
msgid "Filter Values"
msgstr "Filtervärden"
-#: frappe/database/query.py:358
+#: frappe/database/query.py:360
msgid "Filter condition missing after operator: {0}"
msgstr "Filtervillkor saknas efter operator: {0}"
-#: frappe/database/query.py:425
+#: frappe/database/query.py:427
msgid "Filter fields cannot contain backticks (`)."
msgstr "Filterfält får inte innehålla bakåttecken (`)."
@@ -10364,7 +10414,7 @@ msgstr "Filter Sektion"
msgid "Filters applied for {0}"
msgstr "Filter tillämpade för {0}"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filter Sparade"
@@ -10412,8 +10462,12 @@ msgstr "Veckans Första Arbetsdag"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Förnamn"
@@ -10494,7 +10548,7 @@ msgstr "Mapp Namn"
msgid "Folder name should not include '/' (slash)"
msgstr "Mapp namn ska inte innehålla '/' (snedstreck)"
-#: frappe/core/doctype/file/file.py:492
+#: frappe/core/doctype/file/file.py:497
msgid "Folder {0} is not empty"
msgstr "Mapp {0} är inte tom"
@@ -10601,7 +10655,7 @@ msgstr "Sidfot Detaljer"
msgid "Footer HTML"
msgstr "Sidfot HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:75
+#: frappe/printing/doctype/letter_head/letter_head.py:81
msgid "Footer HTML set from attachment {0}"
msgstr "Sidfot HTML angiven från bilaga {0}"
@@ -10696,7 +10750,7 @@ msgstr "För Användare"
msgid "For Value"
msgstr "För Värde"
-#: frappe/public/js/frappe/views/reports/query_report.js:2126
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
#: frappe/public/js/frappe/views/reports/report_view.js:108
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "För jämförelse, använd >5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)."
@@ -10737,7 +10791,7 @@ msgstr "För flera adresser anger du adress på annan rad. t.ex. test@test.com
msgid "For updating, you can update only selective columns."
msgstr "För uppdatering, uppdateras endast selektiva kolumner."
-#: frappe/core/doctype/doctype/doctype.py:1752
+#: frappe/core/doctype/doctype/doctype.py:1765
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "För {0} på nivå {1} i {2} på rad {3}"
@@ -10981,7 +11035,7 @@ msgstr "Från Datum"
msgid "From Date Field"
msgstr "Från Datum"
-#: frappe/public/js/frappe/views/reports/query_report.js:1837
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "From Document Type"
msgstr "Från DocType"
@@ -11043,13 +11097,13 @@ msgstr "Funktion Baserad på"
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} är inte vitlistad."
-#: frappe/database/query.py:1417
+#: frappe/database/query.py:1419
msgid "Function {0} requires arguments but none were provided"
msgstr "Funktion {0} erfordrar argument men inga angavs"
#: frappe/public/js/frappe/views/treeview.js:419
-msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Extra noder kan endast skapas under 'grupp' typ noder"
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr "Fler undergrupper kan endast skapas under poster markerade som 'Grupp'"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11108,7 +11162,7 @@ msgstr "Allmän"
msgid "Generate Keys"
msgstr "Skapa Nycklar"
-#: frappe/public/js/frappe/views/reports/query_report.js:873
+#: frappe/public/js/frappe/views/reports/query_report.js:882
msgid "Generate New Report"
msgstr "Skapa Ny Rapport"
@@ -11123,7 +11177,7 @@ msgid "Generate Separate Documents For Each Assignee"
msgstr "Skapa Separata Dokument för varje Tilldelad"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
-#: frappe/public/js/frappe/utils/utils.js:1829
+#: frappe/public/js/frappe/utils/utils.js:1827
msgid "Generate Tracking URL"
msgstr "Skapa Spårning URL"
@@ -11330,10 +11384,6 @@ msgstr "Google Analytics Anonymisera IP"
msgid "Google Calendar"
msgstr "Google Kalender"
-#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
-msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
-msgstr "Google Kalender - Kontakt/E-post hittades inte. La inte till deltagare för -
{0}"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalender - kunde inte skapa kalender för {0}, felkod {1}."
@@ -11528,14 +11578,10 @@ msgstr "Gruppera Efter Typ"
msgid "Group By field is required to create a dashboard chart"
msgstr "Gruppera Efter Fält erfordras för att skapa Översikt Panel"
-#: frappe/database/query.py:750
+#: frappe/database/query.py:752
msgid "Group By must be a string"
msgstr "Gruppera Efter måste vara sträng"
-#: frappe/public/js/frappe/views/treeview.js:418
-msgid "Group Node"
-msgstr "Grupp Nod"
-
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
@@ -11595,7 +11641,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -11700,7 +11746,7 @@ msgstr "Huvud Rubrik"
msgid "Header HTML"
msgstr "Sidhuvud HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:63
+#: frappe/printing/doctype/letter_head/letter_head.py:69
msgid "Header HTML set from attachment {0}"
msgstr "HTML från bilaga {0}"
@@ -11829,7 +11875,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1826
+#: frappe/public/js/frappe/utils/utils.js:1824
msgid "Here's your tracking URL"
msgstr "Här är din spårning URL"
@@ -11865,7 +11911,7 @@ msgstr "Dold "
msgid "Hidden Fields"
msgstr "Dolda fält"
-#: frappe/public/js/frappe/views/reports/query_report.js:1641
+#: frappe/public/js/frappe/views/reports/query_report.js:1650
msgid "Hidden columns include: {0}"
msgstr "Dolda kolumner inkluderar: {0}"
@@ -11977,7 +12023,7 @@ msgstr "Dölj Sidofält, Meny och Kommentarer"
msgid "Hide Standard Menu"
msgstr "Dölj Standard Meny"
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Hide Tags"
msgstr "Dölj Taggar"
@@ -12004,7 +12050,7 @@ msgstr "Dölj sidfot"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide footer in auto email reports"
-msgstr "Inaktivera Sidfot i Automatiska E-post Rapporter"
+msgstr "Inaktivera Signatur i Automatiska E-post Rapporter"
#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -12137,7 +12183,7 @@ msgstr "Antar att du inte har tillgång till någon arbetsyta ännu, men du kan
msgid "ID"
msgstr "ID"
-#: frappe/desk/reportview.py:527
+#: frappe/desk/reportview.py:526
#: frappe/public/js/frappe/views/reports/report_view.js:989
msgctxt "Label of name column in report"
msgid "ID"
@@ -12234,9 +12280,9 @@ msgstr "Om Använd Strikt Användar Behörighet är vald och Användar Behörigh
msgid "If Checked workflow status will not override status in list view"
msgstr "Om vald kommer arbetsflöde tillstånd inte åsidosätta tillstånd i list vy"
-#: frappe/core/doctype/doctype/doctype.py:1764
+#: frappe/core/doctype/doctype/doctype.py:1777
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ägare"
@@ -12464,8 +12510,8 @@ msgstr "Ignorerade Appar"
msgid "Illegal Document Status for {0}"
msgstr "Ej Tillåten Dokument Status för {0}"
-#: frappe/model/db_query.py:453 frappe/model/db_query.py:456
-#: frappe/model/db_query.py:1121
+#: frappe/model/db_query.py:454 frappe/model/db_query.py:457
+#: frappe/model/db_query.py:1122
msgid "Illegal SQL Query"
msgstr "Ej Tillåten SQL Data förfråga"
@@ -12552,11 +12598,11 @@ msgstr "Bilder"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
-#: frappe/core/doctype/user/user.js:384
+#: frappe/core/doctype/user/user.js:372
msgid "Impersonate"
msgstr "Efterlikna"
-#: frappe/core/doctype/user/user.js:411
+#: frappe/core/doctype/user/user.js:399
msgid "Impersonate as {0}"
msgstr "Efterlikna som {0}"
@@ -12586,7 +12632,7 @@ msgstr "Implicit"
msgid "Import"
msgstr "Importera"
-#: frappe/public/js/frappe/list/list_view.js:1907
+#: frappe/public/js/frappe/list/list_view.js:1913
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importera"
@@ -12814,15 +12860,16 @@ msgstr "Inkludera Tema från Appar"
msgid "Include Web View Link in Email"
msgstr "Inkludera Länk till Webbvy i E-post"
-#: frappe/public/js/frappe/views/reports/query_report.js:1619
+#: frappe/public/js/frappe/form/print_utils.js:59
+#: frappe/public/js/frappe/views/reports/query_report.js:1628
msgid "Include filters"
msgstr "Inkludera Filter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1639
+#: frappe/public/js/frappe/views/reports/query_report.js:1648
msgid "Include hidden columns"
msgstr "Inkludera dolda kolumner"
-#: frappe/public/js/frappe/views/reports/query_report.js:1611
+#: frappe/public/js/frappe/views/reports/query_report.js:1620
msgid "Include indentation"
msgstr "Inkludera Fördjupning"
@@ -12869,7 +12916,7 @@ msgstr "Inkommande E-post Konto är inte korrekt"
msgid "Incomplete Virtual Doctype Implementation"
msgstr "Ofullständig Virtuell DocType Implementering"
-#: frappe/auth.py:255
+#: frappe/auth.py:258
msgid "Incomplete login details"
msgstr "Ofullständiga inloggning detaljer"
@@ -12980,7 +13027,7 @@ msgstr "Infoga \tOvan"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1882
+#: frappe/public/js/frappe/views/reports/query_report.js:1893
msgid "Insert After"
msgstr "Infoga Efter"
@@ -13018,8 +13065,8 @@ msgstr "Infoga Stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679
msgid "Install {0} from Marketplace"
msgstr "Installera {0} från Marknadsplats"
@@ -13053,7 +13100,7 @@ msgstr "Instruktioner skickade per E-post"
msgid "Insufficient Permission Level for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
-#: frappe/database/query.py:806 frappe/database/query.py:1052
+#: frappe/database/query.py:808 frappe/database/query.py:1054
msgid "Insufficient Permission for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
@@ -13104,7 +13151,7 @@ msgstr "System Integrationer"
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr "Integrationer kan använda detta fält för att ange E-post leverans status"
+msgstr "System Integrationer kan använda detta fält för att ange E-post leverans status"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -13169,7 +13216,7 @@ msgid "Invalid"
msgstr "Ogiltig"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
+#: frappe/public/js/frappe/form/grid_row.js:850
#: frappe/public/js/frappe/form/layout.js:810
#: frappe/public/js/frappe/views/reports/report_view.js:721
msgid "Invalid \"depends_on\" expression"
@@ -13179,7 +13226,7 @@ msgstr "Ogiltig 'depends_on' uttryck"
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ogiltig uttryck 'beroende på' i filter {0}"
-#: frappe/public/js/frappe/form/save.js:159
+#: frappe/public/js/frappe/form/save.js:210
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr "Ogiltigt uttryck för \"obligatoriskt_beror_på\""
@@ -13223,12 +13270,12 @@ msgstr "Ogiltig Doctype"
msgid "Invalid Fieldname"
msgstr "Ogiltigt Fält Namn"
-#: frappe/core/doctype/file/file.py:219
+#: frappe/core/doctype/file/file.py:221
msgid "Invalid File URL"
msgstr "Ogiltig Fil URL"
-#: frappe/database/query.py:427 frappe/database/query.py:454
-#: frappe/database/query.py:464 frappe/database/query.py:487
+#: frappe/database/query.py:429 frappe/database/query.py:456
+#: frappe/database/query.py:466 frappe/database/query.py:489
msgid "Invalid Filter"
msgstr "Ogiltigt Filter"
@@ -13282,7 +13329,7 @@ msgstr "Ogiltig Utgående E-Post Server eller Port: {0}"
msgid "Invalid Output Format"
msgstr "Ogiltig Utdata Format"
-#: frappe/model/base_document.py:116
+#: frappe/model/base_document.py:134
msgid "Invalid Override"
msgstr "Ogiltig Åsidosättning"
@@ -13296,11 +13343,11 @@ msgstr "Ogiltiga Parametrar"
msgid "Invalid Password"
msgstr "Ogiltigt Lösenord"
-#: frappe/utils/__init__.py:123
+#: frappe/utils/__init__.py:125
msgid "Invalid Phone Number"
msgstr "Ogiltig Telefon Nummer"
-#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Ogiltig Begäran"
@@ -13317,7 +13364,7 @@ msgstr "Ogiltigt Tabell Fältnamn"
msgid "Invalid Transition"
msgstr "Ogiltig Övergång"
-#: frappe/core/doctype/file/file.py:230
+#: frappe/core/doctype/file/file.py:232
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
@@ -13340,7 +13387,7 @@ msgstr "Ogiltig Webbhook Hemlighet"
msgid "Invalid aggregate function"
msgstr "Ogiltig aggregatfunktion"
-#: frappe/database/query.py:1542
+#: frappe/database/query.py:1544
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare."
@@ -13348,19 +13395,19 @@ msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare."
msgid "Invalid app"
msgstr "Ogiltig app"
-#: frappe/database/query.py:1468
+#: frappe/database/query.py:1470
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Ogiltig argument format: {0}. Endast citerade sträng litteraler eller enkla fältnamn är tillåtna."
-#: frappe/database/query.py:1444
+#: frappe/database/query.py:1446
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
msgstr "Ogiltig argumenttyp: {0}. Endast strängar, siffror och None är tillåtna."
-#: frappe/database/query.py:460
+#: frappe/database/query.py:462
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Ogiltiga tecken i fältnamn: {0}. Endast bokstäver, siffror och understreck är tillåtna."
-#: frappe/database/query.py:575
+#: frappe/database/query.py:577
msgid "Invalid characters in table name: {0}"
msgstr "Ogiltiga tecken i tabellnamn: {0}"
@@ -13368,11 +13415,11 @@ msgstr "Ogiltiga tecken i tabellnamn: {0}"
msgid "Invalid column"
msgstr "Ogiltig Kolumn"
-#: frappe/database/query.py:381
+#: frappe/database/query.py:383
msgid "Invalid condition type in nested filters: {0}"
msgstr "Ogiltig villkorstyp i nästlade filter: {0}"
-#: frappe/database/query.py:787
+#: frappe/database/query.py:789
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Ogiltig riktning i Sortera Efter: {0}. Måste vara 'ASC' eller 'DESC'."
@@ -13388,23 +13435,23 @@ msgstr "Ogiltig uttryck angiven i filter {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ogiltig uttryck angiven i sortering {0} ({1})"
-#: frappe/database/query.py:1301
+#: frappe/database/query.py:1303
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Ogiltig fältformat för SELECT: {0}. Fältnamn måste vara enkla, bakåtkvalificerade, tabellkvalificerade, alias eller '*'."
-#: frappe/database/query.py:734
+#: frappe/database/query.py:736
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\" eller \"child_table.field\"."
-#: frappe/database/query.py:1620
+#: frappe/database/query.py:1622
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Ogiltig fältnamn i funktion: {0}. Endast enkla fältnamn är tillåtna."
-#: frappe/utils/data.py:2215
+#: frappe/utils/data.py:2241
msgid "Invalid field name {0}"
msgstr "Ogiltig Fält Namn {0}"
-#: frappe/database/query.py:668
+#: frappe/database/query.py:670
msgid "Invalid field type: {0}"
msgstr "Ogiltig fälttyp: {0}"
@@ -13416,11 +13463,11 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
msgid "Invalid file path: {0}"
msgstr "Ogiltig Sökväg: {0}"
-#: frappe/database/query.py:364
+#: frappe/database/query.py:366
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Ogiltig filtervillkor: {0}. Förväntade lista eller tupel."
-#: frappe/database/query.py:450
+#: frappe/database/query.py:452
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldname.target_fieldname'."
@@ -13428,11 +13475,11 @@ msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldna
msgid "Invalid filter: {0}"
msgstr "Ogiltig Filter: {0}"
-#: frappe/database/query.py:1422
+#: frappe/database/query.py:1424
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Ogiltig typ av funktionsargument: {0}. Endast strängar, siffror, listor och None är tillåtna."
-#: frappe/database/query.py:1383
+#: frappe/database/query.py:1385
msgid "Invalid function dictionary format"
msgstr "Ogiltigt funktion ordbok format"
@@ -13469,23 +13516,27 @@ msgstr "Ogiltig eller skadat innehåll för import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ogiltigt omdirigering regex på rad #{}: {}"
-#: frappe/app.py:337
+#: frappe/app.py:340
msgid "Invalid request arguments"
msgstr "Ogiltiga begäran argument"
+#: frappe/app.py:327
+msgid "Invalid request body"
+msgstr "Ogiltig begäran"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:181
msgid "Invalid role"
msgstr "Ogiltig roll"
-#: frappe/database/query.py:410
+#: frappe/database/query.py:412
msgid "Invalid simple filter format: {0}"
msgstr "Ogiltig enkelt filterformat: {0}"
-#: frappe/database/query.py:341
+#: frappe/database/query.py:343
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Ogiltig start för filtervillkor: {0}. Förväntade lista eller tupel."
-#: frappe/database/query.py:1489
+#: frappe/database/query.py:1491
msgid "Invalid string literal format: {0}"
msgstr "Ogiltig sträng litteral format: {0}"
@@ -13589,7 +13640,7 @@ msgstr "Är Kalender och Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype/doctype_list.js:50
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
msgstr "Är Undertabell"
@@ -13642,6 +13693,10 @@ msgstr "Är Mapp"
msgid "Is Global"
msgstr "Är Global"
+#: frappe/public/js/frappe/views/treeview.js:418
+msgid "Is Group"
+msgstr "Är Grupp"
+
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
@@ -13668,8 +13723,13 @@ msgstr "Är Valfri Tillstånd"
msgid "Is Primary"
msgstr "Är Primär"
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
+msgid "Is Primary Address"
+msgstr "Är Primär Adress"
+
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
msgstr "Är Primär Kontakt Person"
@@ -13725,7 +13785,7 @@ msgstr "Är Installation Klar?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/core/doctype/doctype/doctype_list.js:65
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Är Singel"
@@ -13761,7 +13821,7 @@ msgstr "Är Standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:39
+#: frappe/core/doctype/doctype/doctype_list.js:40
msgid "Is Submittable"
msgstr "Är Godkännbar"
@@ -13967,11 +14027,11 @@ msgstr "Anslagstavla Bord Kolumn"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:402
msgid "Kanban Board Name"
msgstr "Anslagstavla Bord Namn"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:279
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Anslagstavla Inställningar"
@@ -13988,7 +14048,7 @@ msgstr "Håll koll på alla uppdatering flöde"
#. Description of a DocType
#: frappe/core/doctype/communication/communication.json
msgid "Keeps track of all communications"
-msgstr "Konversation Översikt"
+msgstr "Kommunikation Övervakning"
#. Label of the defkey (Data) field in DocType 'DefaultValue'
#. Label of the key (Data) field in DocType 'Document Share Key'
@@ -14261,7 +14321,7 @@ msgstr "Etikett erfordras"
msgid "Landing Page"
msgstr "Webbplats"
-#: frappe/public/js/frappe/form/print_utils.js:17
+#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
msgstr "Landskap"
@@ -14269,10 +14329,13 @@ msgstr "Landskap"
#. Label of the language (Link) field in DocType 'System Settings'
#. Label of the language (Link) field in DocType 'Translation'
#. Label of the language (Link) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/translation/translation.json
-#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:117
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/printing/page/print/print.js:117
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Språk"
@@ -14360,8 +14423,12 @@ msgstr "Förra Månad"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
-#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Efternamn"
@@ -14453,7 +14520,7 @@ msgstr "Lämna tom för ingen slut datum"
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
-msgstr "Lämna denna konversation"
+msgstr "Lämna denna kommunikation"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -14487,7 +14554,7 @@ msgstr "Vänster Center"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
msgid "Left this conversation"
-msgstr "Lämnade denna konversation"
+msgstr "Lämnade denna kommunikation"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -14507,7 +14574,7 @@ msgstr "Längd"
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr "Längd av datamatrisen är större än värdet för maximum tillåtna etikett punkter!"
-#: frappe/database/schema.py:134
+#: frappe/database/schema.py:138
msgid "Length of {0} should be between 1 and 1000"
msgstr "Längd av {0} ska vara mellan 1 och 1000"
@@ -14557,7 +14624,7 @@ msgstr "Letter"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:140
-#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14585,7 +14652,7 @@ msgstr "Brevhuvud Namn"
msgid "Letter Head Scripts"
msgstr "Brevhuvud Skript"
-#: frappe/printing/doctype/letter_head/letter_head.py:48
+#: frappe/printing/doctype/letter_head/letter_head.py:49
msgid "Letter Head cannot be both disabled and default"
msgstr "Brevhuvud kan inte vara både Inaktiverad och Standard"
@@ -14602,7 +14669,7 @@ msgstr "Brevhuvud i HTML"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/page/permission_manager/permission_manager.js:144
#: frappe/core/page/permission_manager/permission_manager.js:220
-#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/public/js/frappe/roles_editor.js:68
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
msgstr "Nivå"
@@ -14895,7 +14962,7 @@ msgstr "Lista Filter"
msgid "List Settings"
msgstr "Lista Inställningar"
-#: frappe/public/js/frappe/list/list_view.js:1987
+#: frappe/public/js/frappe/list/list_view.js:1993
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Lista Inställningar"
@@ -14946,7 +15013,7 @@ msgid "Load Balancing"
msgstr "Last Balansering"
#: frappe/public/js/frappe/list/base_list.js:399
-#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Ladda Mer"
@@ -14954,7 +15021,7 @@ msgstr "Ladda Mer"
#: frappe/public/js/frappe/form/footer/form_timeline.js:215
msgctxt "Form timeline"
msgid "Load More Communications"
-msgstr "Ladda mer Konversation"
+msgstr "Ladda Mer Kommunikation"
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
msgid "Load more"
@@ -14966,7 +15033,7 @@ msgstr "Läs in mer"
#: frappe/public/js/frappe/list/base_list.js:526
#: frappe/public/js/frappe/list/list_view.js:363
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1088
+#: frappe/public/js/frappe/views/reports/query_report.js:1097
msgid "Loading"
msgstr "Laddar"
@@ -15109,7 +15176,7 @@ msgstr "Inloggning Verifiering Kod från {}"
msgid "Login and view in Browser"
msgstr "Logga in och visa i Webbläsare"
-#: frappe/website/doctype/web_form/web_form.js:367
+#: frappe/website/doctype/web_form/web_form.js:368
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för att se list inställningar"
@@ -15117,7 +15184,7 @@ msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för
msgid "Login link sent to your email"
msgstr "Inloggning länk skickad till din e-post"
-#: frappe/auth.py:339 frappe/auth.py:342
+#: frappe/auth.py:342 frappe/auth.py:345
msgid "Login not allowed at this time"
msgstr "Inloggning inte tillåtet vid denna tid"
@@ -15170,7 +15237,7 @@ msgstr "Logga in med E-post länk"
msgid "Login with email link expiry (in minutes)"
msgstr "E-post Länk Giltig (minuter)"
-#: frappe/auth.py:144
+#: frappe/auth.py:147
msgid "Login with username and password is not allowed."
msgstr "Inloggning med användarnamn och lösenord är inte tillåtet."
@@ -15189,7 +15256,7 @@ msgstr "Logotyp URI"
msgid "Logout"
msgstr "Logga Ut"
-#: frappe/core/doctype/user/user.js:202
+#: frappe/core/doctype/user/user.js:190
msgid "Logout All Sessions"
msgstr "Logga ut Alla Sessioner"
@@ -15293,7 +15360,10 @@ msgid "Major"
msgstr "Stora"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
+#. Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
msgstr "'namn' sökbar i Global Sökning"
@@ -15369,7 +15439,7 @@ msgstr "Erfordrad Beroende Av"
msgid "Mandatory Depends On (JS)"
msgstr "Erfodrad Beroende Av (JS)"
-#: frappe/website/doctype/web_form/web_form.py:509
+#: frappe/website/doctype/web_form/web_form.py:536
msgid "Mandatory Information missing:"
msgstr "Erfodrad Information saknas:"
@@ -15381,11 +15451,11 @@ msgstr "Erfodrade Fält: Ange Roll för"
msgid "Mandatory field: {0}"
msgstr "Erfodrade Fält: {0}"
-#: frappe/public/js/frappe/form/save.js:120
+#: frappe/public/js/frappe/form/save.js:172
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "Erfordrade fält som saknas i tabell {0}, Rad {1}"
-#: frappe/public/js/frappe/form/save.js:125
+#: frappe/public/js/frappe/form/save.js:177
msgid "Mandatory fields required in {0}"
msgstr "Erfodrade Fält saknas i {0}"
@@ -15567,7 +15637,7 @@ msgstr "Maximum bredd för typ Valuta är 100px på rad {0}"
msgid "Maximum"
msgstr "Maximum"
-#: frappe/core/doctype/file/file.py:330
+#: frappe/core/doctype/file/file.py:332
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr "Maximum bilaga gräns på {0} är uppnåd för {1} {2}."
@@ -15591,7 +15661,7 @@ msgstr "Innebörd av Godkänn, Annullera, Ändra"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1776
+#: frappe/public/js/frappe/utils/utils.js:1774
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15810,7 +15880,7 @@ msgstr "Sätt"
msgid "Method Not Allowed"
msgstr "Metod ej Tillåten"
-#: frappe/desk/doctype/number_card/number_card.py:73
+#: frappe/desk/doctype/number_card/number_card.py:74
msgid "Method is required to create a number card"
msgstr "Sätt erfordras för att skapa nummerkort"
@@ -15826,6 +15896,11 @@ msgstr "Mitt Center"
msgid "Middle Name"
msgstr "Mellannamn"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Middle Name (Optional)"
+msgstr "Mellannamn (Valfritt)"
+
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
@@ -15896,7 +15971,7 @@ msgstr "Saknar DocType"
msgid "Missing Field"
msgstr "Fält Värde saknas"
-#: frappe/public/js/frappe/form/save.js:131
+#: frappe/public/js/frappe/form/save.js:183
msgid "Missing Fields"
msgstr "Fält Värden saknas"
@@ -15932,6 +16007,11 @@ msgstr "Mobil"
msgid "Mobile No"
msgstr "Mobil Nummer"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Mobile Number"
+msgstr "Mobilnummer"
+
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
@@ -15957,7 +16037,7 @@ msgstr "Modal Utlösare"
#. Label of the module (Link) field in DocType 'Website Theme'
#: frappe/core/doctype/block_module/block_module.json
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/doctype/doctype_list.js:31
#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
#: frappe/core/doctype/user_type_module/user_type_module.json
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -16073,7 +16153,7 @@ msgstr "Måndag"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Monitor logs for errors, background jobs, communications, and user activity"
-msgstr "Övervaka loggar för fel, bakgrundsjobb, konversation och användaraktivitet"
+msgstr "Övervaka loggar för fel, bakgrundsjobb, kommunikation och användaraktivitet"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -16133,10 +16213,12 @@ msgstr "Extra Information"
#. Label of the additional_info (Section Break) field in DocType
#. 'Communication'
#. Label of the short_bio (Tab Break) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
msgstr "Mer Information"
@@ -16166,7 +16248,7 @@ msgstr "Troligtvis är lösenord för lång."
msgid "Move"
msgstr "Flytta"
-#: frappe/public/js/frappe/form/grid_row.js:193
+#: frappe/public/js/frappe/form/grid_row.js:194
msgid "Move To"
msgstr "Flytta till"
@@ -16202,7 +16284,7 @@ msgstr "Flytta sektioner till ny flik"
msgid "Move the current field and the following fields to a new column"
msgstr "Flytta aktuell fält och följande fält till ny kolumn"
-#: frappe/public/js/frappe/form/grid_row.js:168
+#: frappe/public/js/frappe/form/grid_row.js:169
msgid "Move to Row Number"
msgstr "Flytta till Rad Nummer"
@@ -16252,7 +16334,7 @@ msgstr "Måste omges av '()' och inkludera '{0}', som är platshållare för Anv
msgid "Must be of type \"Attach Image\""
msgstr "Måste vara av typ 'Bifoga Bild'"
-#: frappe/desk/query_report.py:209
+#: frappe/desk/query_report.py:210
msgid "Must have report permission to access this report."
msgstr "Behörigheter saknas till den här rapport."
@@ -16270,7 +16352,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:498
+#: frappe/website/doctype/web_form/web_form.py:525
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16310,7 +16392,7 @@ msgstr "OBS: Denna ruta ska tas bort.Konfigurera LDAP att fungera med nya instä
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/public/js/frappe/form/layout.js:76
#: frappe/public/js/frappe/form/multi_select_dialog.js:240
-#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/form/save.js:159
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
@@ -16414,12 +16496,12 @@ msgstr "Toppfält Mall"
msgid "Navbar Template Values"
msgstr "Toppfält Mall Värden"
-#: frappe/public/js/frappe/list/list_view.js:1378
+#: frappe/public/js/frappe/list/list_view.js:1380
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigera lista ner"
-#: frappe/public/js/frappe/list/list_view.js:1385
+#: frappe/public/js/frappe/list/list_view.js:1387
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigera lista upp"
@@ -16434,6 +16516,10 @@ msgstr "Navigera till huvud innehåll"
msgid "Navigation Settings"
msgstr "Navigation Inställningar"
+#: frappe/public/js/frappe/list/list_view.js:485
+msgid "Need Help?"
+msgstr "Behövs hjälp?"
+
#: frappe/desk/doctype/workspace/workspace.py:322
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares privat arbetsyta"
@@ -16442,7 +16528,7 @@ msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares pr
msgid "Negative Value"
msgstr "Negativ Värde"
-#: frappe/database/query.py:333
+#: frappe/database/query.py:335
msgid "Nested filters must be provided as a list or tuple."
msgstr "Nästlade filter måste anges som lista eller tupel."
@@ -16455,6 +16541,12 @@ msgstr "Nested set fel. Kontakta Administratör."
msgid "Network Printer Settings"
msgstr "Nätverk Skrivare Inställningar"
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Never"
+msgstr "Aldrig"
+
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
@@ -16463,7 +16555,7 @@ msgstr "Nätverk Skrivare Inställningar"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:77
-#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/treeview.js:473
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
@@ -16524,7 +16616,7 @@ msgstr "Ny Händelse"
msgid "New Folder"
msgstr "Ny Mapp"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "New Kanban Board"
msgstr "Ny Anslagstavla"
@@ -16559,7 +16651,7 @@ msgstr "Ny Nummer Kort"
msgid "New Onboarding"
msgstr "Ny Introduktion"
-#: frappe/core/doctype/user/user.js:190 frappe/www/update-password.html:43
+#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Ny Lösenord"
@@ -16657,7 +16749,7 @@ msgstr "Ny värde att ange"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:411
+#: frappe/website/doctype/web_form/web_form.py:438
msgid "New {0}"
msgstr "Ny {0}"
@@ -16809,7 +16901,7 @@ msgstr "Nästa på Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nej"
@@ -16914,7 +17006,7 @@ msgstr "Inget Namn angiven för {0}"
msgid "No New notifications"
msgstr "Inga nya Aviseringar"
-#: frappe/core/doctype/doctype/doctype.py:1744
+#: frappe/core/doctype/doctype/doctype.py:1757
msgid "No Permissions Specified"
msgstr "Inga Behörigheter Angivna"
@@ -16958,7 +17050,7 @@ msgstr "Inga Träffar"
msgid "No Roles Specified"
msgstr "Inga Roller Specificerade"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:358
msgid "No Select Field Found"
msgstr "Ingen Välj Fält Hittad"
@@ -16966,7 +17058,7 @@ msgstr "Ingen Välj Fält Hittad"
msgid "No Suggestions"
msgstr "Inga Förslag"
-#: frappe/desk/reportview.py:708
+#: frappe/desk/reportview.py:707
msgid "No Tags"
msgstr "Inga Taggar"
@@ -17042,7 +17134,7 @@ msgstr "Inga e-postadresser hittades att bjuda in"
msgid "No failed logs"
msgstr "Inga Misslyckade Logg"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:385
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Inga fält hittades som kan användas som Anslagstavla kolumn. Använd Anpassa Formulär för att lägga till anpassat fält av typ \"Välj\"."
@@ -17066,7 +17158,7 @@ msgstr "Inga fler poster"
msgid "No matching records. Search something new"
msgstr "Inga poster. Sök på nytt"
-#: frappe/public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:162
msgid "No more items to display"
msgstr "Inga fler artiklar att visa"
@@ -17110,7 +17202,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Behörigheter saknas att '{0}' {1}"
-#: frappe/model/db_query.py:948
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
msgstr "Behörigheter saknas att läsa {0}"
@@ -17122,7 +17214,7 @@ msgstr "Behörigheter saknas att {0} {1} {2}"
msgid "No records deleted"
msgstr "Inga poster borttagna"
-#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115
msgid "No records present in {0}"
msgstr "Inga poster finns i {0}"
@@ -17158,11 +17250,11 @@ msgstr "Ingen {0}"
msgid "No {0} Found"
msgstr "Ingen {0} Hittades"
-#: frappe/public/js/frappe/web_form/web_form_list.js:233
+#: frappe/public/js/frappe/web_form/web_form_list.js:234
msgid "No {0} found"
msgstr "Ingen {0} Hittades"
-#: frappe/public/js/frappe/list/list_view.js:497
+#: frappe/public/js/frappe/list/list_view.js:499
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "{0} hittades med vald filter. Rensa filter för att se alla {0}."
@@ -17171,7 +17263,7 @@ msgid "No {0} mail"
msgstr "Ingen {0} E-post"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:256
+#: frappe/public/js/frappe/form/grid_row.js:257
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Antal. "
@@ -17235,7 +17327,7 @@ msgstr "Ej Underordnad Av"
msgid "Not Equals"
msgstr "Inte Lika"
-#: frappe/app.py:387 frappe/www/404.html:3
+#: frappe/app.py:390 frappe/www/404.html:3
msgid "Not Found"
msgstr "Hittades Inte"
@@ -17261,9 +17353,9 @@ msgstr "Ej Länkad till någon post"
msgid "Not Nullable"
msgstr "Ej Nollställbar"
-#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:747
+#: frappe/website/doctype/web_form/web_form.py:774
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17282,7 +17374,7 @@ msgstr "Ej Publicerad"
#: frappe/public/js/frappe/form/toolbar.js:287
#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:209
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:85
@@ -17333,7 +17425,7 @@ msgstr "Inte Aktiv"
msgid "Not allowed for {0}: {1}"
msgstr "Ej tillåtet för {0}: {1}"
-#: frappe/email/doctype/notification/notification.py:637
+#: frappe/email/doctype/notification/notification.py:639
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Ej Tillåtet att bifoga {0} dokument, aktivera \"Tillåt Utskrift\" för {0} i Utskrift Inställningar"
@@ -17365,12 +17457,12 @@ msgstr "Ej i Utvecklar Läge"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Ej i Utvecklar Läge! Ändra site_config.json eller skapa 'Anpassad' DocType."
-#: frappe/core/doctype/system_settings/system_settings.py:216
+#: frappe/core/doctype/system_settings/system_settings.py:217
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Ej Tillåtet"
@@ -17416,7 +17508,7 @@ msgstr "Obs: För bästa resultat måste bilderna ha samma storlek och bredden m
msgid "Note: Multiple sessions will be allowed in case of mobile device"
msgstr "Obs: Flera sessioner kommer att tillåtas i fall av mobil enhet"
-#: frappe/core/doctype/user/user.js:399
+#: frappe/core/doctype/user/user.js:387
msgid "Note: This will be shared with user."
msgstr "Obs: Detta kommer att delas med användare."
@@ -17488,15 +17580,15 @@ msgstr "Avisering Prenumererad Dokument"
msgid "Notification sent to"
msgstr "Avisering skickad till"
-#: frappe/email/doctype/notification/notification.py:542
+#: frappe/email/doctype/notification/notification.py:544
msgid "Notification: customer {0} has no Mobile number set"
msgstr "Meddelande: kund {0} har inget mobil nummer angivet"
-#: frappe/email/doctype/notification/notification.py:528
+#: frappe/email/doctype/notification/notification.py:530
msgid "Notification: document {0} has no {1} number set (field: {2})"
msgstr "Meddelande: dokument {0} har inget {1} nummer angivet (fält: {2})"
-#: frappe/email/doctype/notification/notification.py:537
+#: frappe/email/doctype/notification/notification.py:539
msgid "Notification: user {0} has no Mobile number set"
msgstr "Meddelande: användare {0} har inget mobil nummer angivet"
@@ -17610,7 +17702,7 @@ msgstr "Antal Frågor"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "Antalet bifogade fält är fler än {}, gränsen uppdaterad till {}."
-#: frappe/core/doctype/system_settings/system_settings.py:171
+#: frappe/core/doctype/system_settings/system_settings.py:172
msgid "Number of backups must be greater than zero."
msgstr "Antal säkerhetskopior måste vara än noll."
@@ -17882,7 +17974,7 @@ msgstr "Introduktion Klar"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:42
+#: frappe/core/doctype/doctype/doctype_list.js:43
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "När de godkänts kan inte godkännda dokument ändras, De kan bara annulleras och sen ändras."
@@ -17971,11 +18063,11 @@ msgstr "Endast rapporter av typ Rapport Generator kan tas bort"
msgid "Only reports of type Report Builder can be edited"
msgstr "Endast rapporter av typ Report Generator kan redigeras"
-#: frappe/custom/doctype/customize_form/customize_form.py:129
+#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Endast standard DocTypes får anpassas från Anpasning Formulär."
-#: frappe/model/delete_doc.py:241
+#: frappe/model/delete_doc.py:281
msgid "Only the Administrator can delete a standard DocType."
msgstr "Endast administratör kan ta bort standard DocType."
@@ -18071,7 +18163,7 @@ msgstr "Öppna konsol"
msgid "Open in a new tab"
msgstr "Öppna i ny flik"
-#: frappe/public/js/frappe/list/list_view.js:1431
+#: frappe/public/js/frappe/list/list_view.js:1433
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Öppna List Post"
@@ -18120,7 +18212,7 @@ msgstr "Öppnad"
msgid "Operation"
msgstr "Åtgärd"
-#: frappe/utils/data.py:2146
+#: frappe/utils/data.py:2172
msgid "Operator must be one of {0}"
msgstr "Operatören måste vara en av {0}"
@@ -18166,6 +18258,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant"
#. Label of the options (Small Text) field in DocType 'Custom Field'
#. Label of the options (Small Text) field in DocType 'Customize Form Field'
#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Text) field in DocType 'Web Form List Column'
#. Label of the options (Small Text) field in DocType 'Web Template Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/report_column/report_column.json
@@ -18174,6 +18267,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/templates/form_grid/fields.html:43
#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
msgstr "Alternativ "
@@ -18203,7 +18297,7 @@ msgstr "Alternativ för {0} måste anges före man anger standard värde."
msgid "Options is required for field {0} of type {1}"
msgstr "Alternativ erfodras för fält {0} av typ {1}"
-#: frappe/model/base_document.py:871
+#: frappe/model/base_document.py:928
msgid "Options not set for link field {0}"
msgstr "Alternativ inte angiven för länk fält {0}"
@@ -18219,7 +18313,7 @@ msgstr "Orange"
msgid "Order"
msgstr "Order"
-#: frappe/database/query.py:767
+#: frappe/database/query.py:769
msgid "Order By must be a string"
msgstr "Sortera Efter måste vara sträng"
@@ -18235,7 +18329,7 @@ msgstr "Bolag Historik"
msgid "Org History Heading"
msgstr "Bolag Historik Huvud Rubrik"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orientering"
@@ -18317,7 +18411,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1802
+#: frappe/public/js/frappe/views/reports/query_report.js:1812
msgid "PDF"
msgstr "PDF"
@@ -18350,10 +18444,6 @@ msgstr "PDF Sida Bredd (i mm)"
msgid "PDF Settings"
msgstr "PDF Inställningar"
-#: frappe/core/doctype/file/file.py:394
-msgid "PDF cannot be uploaded, It contains unsafe content"
-msgstr "PDF kan inte laddas upp, den innehåller osäkert innehåll"
-
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "PDF skapande misslyckades"
@@ -18565,7 +18655,7 @@ msgstr "Överordnad DocType"
msgid "Parent Document Type"
msgstr "Överordnad Dokument Typ"
-#: frappe/desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
msgstr "Överordnad Dokument Typ erfordras för att skapa nummerkort"
@@ -18669,8 +18759,8 @@ msgstr "Passiv"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:177 frappe/core/doctype/user/user.js:224
-#: frappe/core/doctype/user/user.js:244
+#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:232
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:493
@@ -18693,7 +18783,7 @@ msgstr "Lösenord Återställning"
msgid "Password Reset Link Generation Limit"
msgstr "Maximum Antal Lösenord Återställning Länkar per timme"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:897
msgid "Password cannot be filtered"
msgstr "Lösenord kan inte filtreras"
@@ -18730,7 +18820,7 @@ msgstr "Instruktioner för återställning av lösenord är skickade till {}'s e
msgid "Password set"
msgstr "Lösenord angiven"
-#: frappe/auth.py:258
+#: frappe/auth.py:261
msgid "Password size exceeded the maximum allowed size"
msgstr "Lösenord längd överskred maximum tillåten längd."
@@ -18742,7 +18832,7 @@ msgstr "Lösenord längd överskred maximum tillåten längd."
msgid "Passwords do not match"
msgstr "Lösenord stämmer inte"
-#: frappe/core/doctype/user/user.js:210
+#: frappe/core/doctype/user/user.js:198
msgid "Passwords do not match!"
msgstr "Lösenord stämmer inte!"
@@ -18893,7 +18983,7 @@ msgstr "Godkänn {0}?"
msgid "Permanently delete {0}?"
msgstr "Permanent ta bort {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535
msgid "Permission Error"
msgstr "Behörighet Fel"
@@ -18953,16 +19043,16 @@ msgstr "Behörighet Typ"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
-#: frappe/core/doctype/user/user.js:143 frappe/core/doctype/user/user.js:152
-#: frappe/core/doctype/user/user.js:161
+#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140
+#: frappe/core/doctype/user/user.js:149
#: frappe/core/page/permission_manager/permission_manager.js:221
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Behörigheter"
-#: frappe/core/doctype/doctype/doctype.py:1835
-#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1848
+#: frappe/core/doctype/doctype/doctype.py:1858
msgid "Permissions Error"
msgstr "Behörighet Fel"
@@ -19024,15 +19114,18 @@ msgstr "Personligt Data Nedladdning Begäran"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the phone (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19045,11 +19138,11 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon Nummer."
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:124
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefon Nummer {0} som anges i fält {1} är inte giltig."
-#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/form/print_utils.js:68
#: frappe/public/js/frappe/views/reports/report_view.js:1581
#: frappe/public/js/frappe/views/reports/report_view.js:1584
msgid "Pick Columns"
@@ -19131,11 +19224,11 @@ msgstr "Be Administratör att verifiera din registrering"
msgid "Please attach a file first."
msgstr "Bifoga fil först."
-#: frappe/printing/doctype/letter_head/letter_head.py:76
+#: frappe/printing/doctype/letter_head/letter_head.py:82
msgid "Please attach an image file to set HTML for Footer."
msgstr "Bifoga bild för att ange HTML för sidfot."
-#: frappe/printing/doctype/letter_head/letter_head.py:64
+#: frappe/printing/doctype/letter_head/letter_head.py:70
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Bifoga bild för att ange HTML för Brevhuvud."
@@ -19147,7 +19240,7 @@ msgstr "Lägg till App"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Kontrollera filter värden angivna för Översikt Panel Diagram: {}"
-#: frappe/model/base_document.py:951
+#: frappe/model/base_document.py:1008
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Kontrollera värde för uppsättning 'Hämta från' för fält {0}"
@@ -19187,7 +19280,7 @@ msgstr "Bekräfta åtgärd till {0} detta dokument."
msgid "Please contact your system manager to install correct version."
msgstr "Kontakta System Ansvarig för att installera rätt version."
-#: frappe/desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:45
msgid "Please create Card first"
msgstr "Skapa Kort först"
@@ -19203,11 +19296,11 @@ msgstr "Ta bort fält från {0} eller lägg till erfodrad doctype."
msgid "Please do not change the template headings."
msgstr "Ändra inte mall huvud rubriker."
-#: frappe/printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:19
msgid "Please duplicate this to make changes"
msgstr "Kopiera för att göra ändringar"
-#: frappe/core/doctype/system_settings/system_settings.py:164
+#: frappe/core/doctype/system_settings/system_settings.py:165
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med E-post Länk innan du inaktiverar användarnamn/lösenord baserad inloggning."
@@ -19216,7 +19309,7 @@ msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med
#: frappe/printing/page/print/print.js:678
#: frappe/printing/page/print/print.js:708
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1473
+#: frappe/public/js/frappe/utils/utils.js:1471
msgid "Please enable pop-ups"
msgstr "Aktivera PopUp"
@@ -19301,7 +19394,7 @@ msgstr "Logga in för att lämna kommentar."
#: frappe/core/doctype/communication/communication.py:186
msgid "Please make sure the Reference Communication Docs are not circularly linked."
-msgstr "Kontrollera att Referens Dokument för Konversation inte är cirkulärt länkade."
+msgstr "Kontrollera att Kommunikation Referens Dokument inte är cirkulärt länkade."
#: frappe/model/document.py:992
msgid "Please refresh to get the latest document."
@@ -19331,7 +19424,7 @@ msgstr "Spara Rapport"
msgid "Please save to edit the template."
msgstr "Spara att redigera mall."
-#: frappe/printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:31
msgid "Please select DocType first"
msgstr "Välj DocType"
@@ -19339,15 +19432,15 @@ msgstr "Välj DocType"
msgid "Please select Entity Type first"
msgstr "Välj Entitet Typ"
-#: frappe/core/doctype/system_settings/system_settings.py:115
+#: frappe/core/doctype/system_settings/system_settings.py:116
msgid "Please select Minimum Password Score"
msgstr "Välj Minsta Lösenord Värde"
-#: frappe/public/js/frappe/views/reports/query_report.js:1184
+#: frappe/public/js/frappe/views/reports/query_report.js:1193
msgid "Please select X and Y fields"
msgstr "Välj X och Y fält"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:131
msgid "Please select a country code for field {1}."
msgstr "Välj landskod för fält {1}."
@@ -19371,7 +19464,7 @@ msgstr "Välj giltig datum filter"
msgid "Please select applicable Doctypes"
msgstr "Välj tillämpliga DocTypes"
-#: frappe/model/db_query.py:1157
+#: frappe/model/db_query.py:1163
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Välj minst en kolumn från {0} för att sortera/gruppera"
@@ -19401,7 +19494,7 @@ msgstr "Ange E-postadress"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Ange skrivare mappning för detta utskrift format i Utskrift Inställningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1407
+#: frappe/public/js/frappe/views/reports/query_report.js:1416
msgid "Please set filters"
msgstr "Ange Filter"
@@ -19421,7 +19514,7 @@ msgstr "Ange följande dokument i Översikt Panel som standard."
msgid "Please set the series to be used."
msgstr "Ange Namngivning Serie som ska användas."
-#: frappe/core/doctype/system_settings/system_settings.py:128
+#: frappe/core/doctype/system_settings/system_settings.py:129
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Konfigurera SMS före du anger den som Autentisering Sätt via SMS Inställningar"
@@ -19536,7 +19629,7 @@ msgstr "Portal Meny Post"
msgid "Portal Settings"
msgstr "Portal Inställningar"
-#: frappe/public/js/frappe/form/print_utils.js:18
+#: frappe/public/js/frappe/form/print_utils.js:24
msgid "Portrait"
msgstr "Porträtt"
@@ -19564,6 +19657,7 @@ msgstr "Posten"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
msgstr "Postnummer"
@@ -19572,7 +19666,7 @@ msgstr "Postnummer"
msgid "Posting Timestamp"
msgstr "Registrering Tid"
-#: frappe/database/query.py:1518
+#: frappe/database/query.py:1520
msgid "Potentially dangerous content in string literal: {0}"
msgstr "Potentiell farligt innehåll i sträng litteral: {0}"
@@ -19587,6 +19681,10 @@ msgstr "Potentiell farligt innehåll i sträng litteral: {0}"
msgid "Precision"
msgstr "Precision"
+#: frappe/core/doctype/doctype/doctype.py:1670
+msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
+msgstr "Precision ({0}) för {1} kan inte vara längre än dess längd ({2})."
+
#: frappe/core/doctype/doctype/doctype.py:1401
msgid "Precision should be between 1 and 6"
msgstr "Precision ska vara mellan 1 och 6"
@@ -19635,7 +19733,7 @@ msgstr "Förberedd Rapport Analys"
msgid "Prepared Report User"
msgstr "Förberedd Rapport Användare"
-#: frappe/desk/query_report.py:307
+#: frappe/desk/query_report.py:308
msgid "Prepared report render failed"
msgstr "Förberedd Rapport Misslyckad"
@@ -19770,13 +19868,13 @@ msgstr "Primär nyckel för doctype {0} kan inte ändras eftersom det finns befi
#: frappe/public/js/frappe/form/toolbar.js:360
#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1797
#: frappe/public/js/frappe/views/reports/report_view.js:1539
-#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
+#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Utskrift"
-#: frappe/public/js/frappe/list/list_view.js:2160
+#: frappe/public/js/frappe/list/list_view.js:2166
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Utskrift"
@@ -19846,7 +19944,7 @@ msgstr "Utskrift Format Hjälp"
msgid "Print Format Type"
msgstr "Utskrift Format Typ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1577
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Print Format not found"
msgstr "Utskriftsformat hittades inte"
@@ -19885,7 +19983,7 @@ msgstr "Dölj Utskrift om Ingen Värde"
msgid "Print Language"
msgstr "Utskrift Språk"
-#: frappe/public/js/frappe/form/print_utils.js:210
+#: frappe/public/js/frappe/form/print_utils.js:225
msgid "Print Sent to the printer!"
msgstr "Utskrift Skickad till skrivare!"
@@ -19903,7 +20001,7 @@ msgstr "Skrivar Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:173
-#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/print_utils.js:99
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Utskrift Inställningar"
@@ -20027,11 +20125,11 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }}
msgid "Proceed"
msgstr "Fortsätt"
-#: frappe/public/js/frappe/views/reports/query_report.js:931
+#: frappe/public/js/frappe/views/reports/query_report.js:940
msgid "Proceed Anyway"
msgstr "Fortsätt Ändå"
-#: frappe/public/js/frappe/form/controls/table.js:119
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Behandlar"
@@ -20048,11 +20146,21 @@ msgstr "Prof"
msgid "Profile"
msgstr "Profil"
+#. Label of a field in the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile Picture"
+msgstr "Profilbild"
+
+#. Success message of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Profile updated successfully."
+msgstr "Profil uppdaterad."
+
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Framsteg"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr "Projekt"
@@ -20096,7 +20204,7 @@ msgstr "Egenskap Typ"
msgid "Protect Attached Files"
msgstr "Skydda Bifogade Filer"
-#: frappe/core/doctype/file/file.py:521
+#: frappe/core/doctype/file/file.py:526
msgid "Protected File"
msgstr "Skyddad Fil"
@@ -20269,7 +20377,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR kod för Inloggning Verifiering"
-#: frappe/public/js/frappe/form/print_utils.js:219
+#: frappe/public/js/frappe/form/print_utils.js:234
msgid "QZ Tray Failed:"
msgstr "QZ Tray Misslyckades:"
@@ -20476,7 +20584,7 @@ msgstr "Bedömning"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "Raw Commands"
msgstr "Rå Kommand"
@@ -20602,11 +20710,11 @@ msgstr "Realtid (SocketIO)"
msgid "Reason"
msgstr "Anledning"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:894
msgid "Rebuild"
msgstr "Uppdatera"
-#: frappe/public/js/frappe/views/treeview.js:509
+#: frappe/public/js/frappe/views/treeview.js:511
msgid "Rebuild Tree"
msgstr "Uppdatera Träd Vy"
@@ -20987,8 +21095,8 @@ msgstr "Referens"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
-#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/views/reports/query_report.js:1786
+#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
@@ -21019,13 +21127,13 @@ msgstr "Uppdatera Utskrift Förhandsgranskning"
msgid "Refresh Token"
msgstr "Uppdatera Token"
-#: frappe/public/js/frappe/list/list_view.js:534
+#: frappe/public/js/frappe/list/list_view.js:536
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Uppdaterar"
#: frappe/core/doctype/system_settings/system_settings.js:57
-#: frappe/core/doctype/user/user.js:374
+#: frappe/core/doctype/user/user.js:362
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Uppdaterar..."
@@ -21069,7 +21177,7 @@ msgstr "Länka om"
#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr "Länka om Konversation"
+msgstr "Länka om Kommunikation"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -21338,8 +21446,8 @@ msgstr "Svara Alla"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:101
-#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/printing/doctype/print_format/print_format.py:104
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/request.js:616
#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
@@ -21410,11 +21518,11 @@ msgstr "Rapport Ansvarig"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1962
+#: frappe/public/js/frappe/views/reports/query_report.js:1973
msgid "Report Name"
msgstr "Rapport Namn"
-#: frappe/desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr "Rapport Namn, Rapport Fält och Funktion erfordras för att skapa nummerkort"
@@ -21448,21 +21556,21 @@ msgstr "Rapport Vy"
msgid "Report bug"
msgstr "Rapportera Fel"
-#: frappe/core/doctype/doctype/doctype.py:1810
+#: frappe/core/doctype/doctype/doctype.py:1823
msgid "Report cannot be set for Single types"
msgstr "Rapport kan inte anges för Enskilda Typer"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: frappe/desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Rapport har ingen data, ändra filter eller ändra rapport namn"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: frappe/desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/number_card/number_card.js:189
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Rapport har inga numeriska fält, ändra rapport namn"
-#: frappe/public/js/frappe/views/reports/query_report.js:1012
+#: frappe/public/js/frappe/views/reports/query_report.js:1021
msgid "Report initiated, click to view status"
msgstr "Rapport initierad, klicka för att se status"
@@ -21482,7 +21590,7 @@ msgstr "Rapport är uppdaterad"
msgid "Report was not saved (there were errors)"
msgstr "Rapport är inte sparad (det fanns fel)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2000
+#: frappe/public/js/frappe/views/reports/query_report.js:2011
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Rapport med mer än 10 kolumner ser bättre ut i Liggande Läge."
@@ -21518,7 +21626,7 @@ msgstr "Rapporter"
msgid "Reports & Masters"
msgstr "Rapporter & Inställningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:937
msgid "Reports already in Queue"
msgstr "Rapporter redan i Kö"
@@ -21537,7 +21645,10 @@ msgid "Request Body"
msgstr "Begärd Av"
#. Label of the data (Code) field in DocType 'Integration Request'
+#. Title of the request-data Web Form
+#. Button label of the request-data Web Form
#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
msgstr "Begäran Data"
@@ -21589,6 +21700,11 @@ msgstr "Begäran förfaller om"
msgid "Request URL"
msgstr "Begäran URL"
+#. Title of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Request for Account Deletion"
+msgstr "Begäran för Kontoborttagning"
+
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
@@ -21644,7 +21760,7 @@ msgstr "Återställ Översikt Panel Anpassningar"
msgid "Reset Fields"
msgstr "Återställ Fält"
-#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175
msgid "Reset LDAP Password"
msgstr "Återställ LDAP Lösenord"
@@ -21652,11 +21768,11 @@ msgstr "Återställ LDAP Lösenord"
msgid "Reset Layout"
msgstr "Återställ Layout"
-#: frappe/core/doctype/user/user.js:235
+#: frappe/core/doctype/user/user.js:223
msgid "Reset OTP Secret"
msgstr "Återställ OTP Hemlighet"
-#: frappe/core/doctype/user/user.js:168 frappe/www/login.html:199
+#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
@@ -21691,7 +21807,7 @@ msgstr "Återställ Till Standard"
msgid "Reset sorting"
msgstr "Återställ Sortering"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:434
msgid "Reset to default"
msgstr "Återställ Standard"
@@ -21831,7 +21947,7 @@ msgstr "Återgå till Verifiering skärm och ange kod som visas på din Autentis
msgid "Reverse Icon Color"
msgstr "Omvänd Ikon Färg"
-#: frappe/database/schema.py:161
+#: frappe/database/schema.py:165
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Återställer längd till {0} för '{1}' i '{2}'. Om du anger längd som {3} kommer data att trunkeras."
@@ -21943,7 +22059,7 @@ msgstr "Roll Behörighet för Sida och Rapport"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
-#: frappe/public/js/frappe/roles_editor.js:103
+#: frappe/public/js/frappe/roles_editor.js:114
msgid "Role Permissions"
msgstr "Roll Behörigheter"
@@ -21953,7 +22069,7 @@ msgstr "Roll Behörigheter"
msgid "Role Permissions Manager"
msgstr "Roll Behörigheter Hanterare"
-#: frappe/public/js/frappe/list/list_view.js:1929
+#: frappe/public/js/frappe/list/list_view.js:1935
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Roll Behörigheter Hanterare"
@@ -22098,7 +22214,7 @@ msgstr "Sökväg Omdirigeringar"
msgid "Route: Example \"/app\""
msgstr "Sökväg: Exempel \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:779
+#: frappe/model/base_document.py:909 frappe/model/document.py:779
msgid "Row"
msgstr "Rad"
@@ -22106,12 +22222,12 @@ msgstr "Rad"
msgid "Row #"
msgstr "Rad #"
-#: frappe/core/doctype/doctype/doctype.py:1832
-#: frappe/core/doctype/doctype/doctype.py:1842
+#: frappe/core/doctype/doctype/doctype.py:1845
+#: frappe/core/doctype/doctype/doctype.py:1855
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Rad # {0}: Användare som inte är administratör kan inte ange roll {1} till anpassad Dokument Typ"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:1039
msgid "Row #{0}:"
msgstr "Rad # {0}:"
@@ -22146,11 +22262,11 @@ msgstr "Rad Värde Ändrad"
msgid "Row {0}"
msgstr "Rad # {0} "
-#: frappe/custom/doctype/customize_form/customize_form.py:353
+#: frappe/custom/doctype/customize_form/customize_form.py:357
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Rad {0}: Ej Tillåtet att inaktivera Erfodrad för standard fält"
-#: frappe/custom/doctype/customize_form/customize_form.py:342
+#: frappe/custom/doctype/customize_form/customize_form.py:346
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Rad {0}: Ej Tillåtet att aktivera Tillåt vid Godkännande för standard fält"
@@ -22169,7 +22285,10 @@ msgid "Rows Removed"
msgstr "Rader Borttagna "
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType
+#. 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Rows Threshold for Grid Search"
msgstr "Rad Tröskelvärde för Rutnät Sökning"
@@ -22377,8 +22496,8 @@ msgstr "Lördag"
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1954
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+#: frappe/public/js/frappe/views/reports/query_report.js:1965
#: frappe/public/js/frappe/views/reports/report_view.js:1735
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22401,11 +22520,11 @@ msgstr "Spara Som"
msgid "Save Customizations"
msgstr "Spara Anpassningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1957
+#: frappe/public/js/frappe/views/reports/query_report.js:1968
msgid "Save Report"
msgstr "Spara Rapport"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:107
msgid "Save filters"
msgstr "Spara Filter"
@@ -22777,7 +22896,7 @@ msgstr "Säkerhet Inställningar"
msgid "See all Activity"
msgstr "Visa All Aktivitet"
-#: frappe/public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:863
msgid "See all past reports."
msgstr "Visa alla tidigare rapporter."
@@ -22841,7 +22960,7 @@ msgstr "Välj i Listan"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
-#: frappe/public/js/frappe/form/grid_row.js:497
+#: frappe/public/js/frappe/form/grid_row.js:498
msgid "Select All"
msgstr "Välj Alla"
@@ -22862,7 +22981,7 @@ msgid "Select Column"
msgstr "Välj Kolumn"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:58
+#: frappe/public/js/frappe/form/print_utils.js:73
msgid "Select Columns"
msgstr "Välj Kolumner"
@@ -22921,7 +23040,7 @@ msgstr "Välj Fält"
msgid "Select Field..."
msgstr "Välj Fält..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:490
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Välj Fält"
@@ -23041,14 +23160,14 @@ msgid "Select a field to edit its properties."
msgstr "Välj fält för att redigera dess egenskaper."
#: frappe/public/js/frappe/views/treeview.js:358
-msgid "Select a group node first."
-msgstr "Välj Grupp nod."
+msgid "Select a group {0} first."
+msgstr "Välj grupp {0}."
-#: frappe/core/doctype/doctype/doctype.py:1943
+#: frappe/core/doctype/doctype/doctype.py:1956
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Välj giltig Avsändar Fält att skapa dokument från E-post"
-#: frappe/core/doctype/doctype/doctype.py:1927
+#: frappe/core/doctype/doctype/doctype.py:1940
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Välj giltig Ämne Fält att skapa dokument från E-post"
@@ -23078,13 +23197,13 @@ msgstr "Välj minst en post för utskrift"
msgid "Select atleast 2 actions"
msgstr "Välj minst två åtgärder"
-#: frappe/public/js/frappe/list/list_view.js:1445
+#: frappe/public/js/frappe/list/list_view.js:1447
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Välj List Artikel"
-#: frappe/public/js/frappe/list/list_view.js:1397
-#: frappe/public/js/frappe/list/list_view.js:1413
+#: frappe/public/js/frappe/list/list_view.js:1399
+#: frappe/public/js/frappe/list/list_view.js:1415
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Välj flera List Artiklar"
@@ -23302,7 +23421,7 @@ msgstr "Avsändare E-post"
msgid "Sender Email Field"
msgstr "Avsändare E-post Fält"
-#: frappe/core/doctype/doctype/doctype.py:1946
+#: frappe/core/doctype/doctype/doctype.py:1959
msgid "Sender Field should have Email in options"
msgstr "Avsändare Fält ska ha E-post i Alternativ"
@@ -23406,7 +23525,7 @@ msgstr "Namngivning Serie {0} används redan i {1}"
msgid "Server Action"
msgstr "Server Åtgärd"
-#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Server Fel"
@@ -23472,7 +23591,7 @@ msgstr "Session Inställningar"
msgid "Session Defaults Saved"
msgstr "Session Inställningar Sparade"
-#: frappe/app.py:373
+#: frappe/app.py:376
msgid "Session Expired"
msgstr "Session Förföll"
@@ -23481,14 +23600,14 @@ msgstr "Session Förföll"
msgid "Session Expiry (idle timeout)"
msgstr "Session Förfaller (Tid av Inaktivitet)"
-#: frappe/core/doctype/system_settings/system_settings.py:122
+#: frappe/core/doctype/system_settings/system_settings.py:123
msgid "Session Expiry must be in format {0}"
msgstr "Session Förfallo tid måste vara i format {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
-#: frappe/desk/doctype/number_card/number_card.js:295
-#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/desk/doctype/number_card/number_card.js:307
+#: frappe/desk/doctype/number_card/number_card.js:404
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
msgstr "Ange"
@@ -23514,12 +23633,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"
msgstr "Ange Standard Alternativ för alla diagram för Översikt Panel (Ex: 'färger': ['#d1d8dd', '#ff5858'])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: frappe/desk/doctype/number_card/number_card.js:367
+#: frappe/desk/doctype/number_card/number_card.js:384
msgid "Set Dynamic Filters"
msgstr "Ange Dynamisk Filter"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/desk/doctype/number_card/number_card.js:292
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
@@ -23530,7 +23649,7 @@ msgstr "Ange Filter"
msgid "Set Filters for {0}"
msgstr "Ange Filter för {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2110
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Set Level"
msgstr "Ange Nivå"
@@ -23584,7 +23703,7 @@ msgstr "Bekräfta"
msgid "Set Role For"
msgstr "Ange Roll För"
-#: frappe/core/doctype/user/user.js:136
+#: frappe/core/doctype/user/user.js:124
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
msgstr "Ange Användar Behörigheter"
@@ -23603,7 +23722,7 @@ msgstr "Ange som Privat"
msgid "Set all public"
msgstr "Ange som Allmän"
-#: frappe/printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:50
msgid "Set as Default"
msgstr "Ange som Standard"
@@ -23622,18 +23741,21 @@ msgstr "Anges av Användare"
msgid "Set dynamic filter values in JavaScript for the required fields here."
msgstr "Ange dynamiska filtervärden i JavaScript för erfordrade fält här."
-#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
#. Description of the 'Precision' (Select) field in DocType 'Customize Form
#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
msgstr "Ange ej Standard Precision för Komma eller Valuta Fält"
+#. Description of the 'Precision' (Select) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Set non-standard precision for a Float, Currency or Percent field"
+msgstr "Ange ej standard precision för Flyttal, Valuta eller Procent fält"
+
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
@@ -23767,7 +23889,7 @@ msgstr "Inställningar > Användare"
msgid "Setup > User Permissions"
msgstr "Inställningar > Användar Behörigheter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1823
+#: frappe/public/js/frappe/views/reports/query_report.js:1834
#: frappe/public/js/frappe/views/reports/report_view.js:1713
msgid "Setup Auto Email"
msgstr "Automatisk E-post Rapport"
@@ -23908,6 +24030,12 @@ msgstr "Visa Dokument"
msgid "Show Error"
msgstr "Visa Fel"
+#. Label of the show_external_link_warning (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Show External Link Warning"
+msgstr "Visa Extern Länk Varning"
+
#: frappe/public/js/frappe/form/layout.js:578
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Visa Fältnamn (klicka för att kopiera till urklipp)"
@@ -24036,7 +24164,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Visa Social Inloggningsnyckel som Auktorisering Server"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1845
+#: frappe/public/js/frappe/list/list_view.js:1851
msgid "Show Tags"
msgstr "Visa Taggar"
@@ -24243,36 +24371,36 @@ msgstr "Registrering Inaktiverad"
msgid "Signups have been disabled for this website."
msgstr "Registrering har inaktiverats för Webbplats."
-#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
-#. Rule'
-#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Enkel Python Uttryck, Exempel: Status in ('Closed', 'Cancelled')"
-
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Enkel Python Uttryck, Exempel: Status in ('Invalid')"
+msgid "Simple Python Expression, Example: status == \"Invalid\""
+msgstr "Enkelt Python Uttryck, Exempel: status == \"Invalid\""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Enkel Python Uttryck, Exempel: Status == 'Open' and type == 'Bug'"
+msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'"
+msgstr "Enkelt Python Uttryck, Exempel: status == 'Open' och issue_type == 'Bug'"
+
+#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")"
+msgstr "Enkelt Python Uttryck, Exempel: status in (\"Closed\", \"Cancelled\")"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
msgstr "Samtidiga Sessioner"
-#: frappe/custom/doctype/customize_form/customize_form.py:126
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
msgstr "Enskild DocTypes kan inte anpassas."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype_list.js:67
+#: frappe/core/doctype/doctype/doctype_list.js:68
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Enskilda Typer har endast en post inga tabeller associerade. Värden lagras i tabSingles"
@@ -24280,7 +24408,7 @@ msgstr "Enskilda Typer har endast en post inga tabeller associerade. Värden lag
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 "Webbplats körs i skrivskyddat läge för underhåll eller uppdatering, denna åtgärd kan inte utföras just nu. Vänligen försök igen senare."
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
msgid "Size"
msgstr "SStorlek"
@@ -24540,7 +24668,7 @@ msgstr "Sortering Fält {0} måste vara giltig fält namn"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1759
+#: frappe/public/js/frappe/utils/utils.js:1757
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24607,8 +24735,8 @@ msgstr "Ange domäner eller ursprung som är tillåtna att bädda in detta formu
msgid "Splash Image"
msgstr "Splash Bild"
-#: frappe/desk/reportview.py:456
-#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/desk/reportview.py:455
+#: frappe/public/js/frappe/web_form/web_form_list.js:176
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "Rad"
@@ -24640,7 +24768,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:79
+#: frappe/model/delete_doc.py:119
msgid "Standard DocType can not be deleted."
msgstr "Standard DocType kan inte tas bort."
@@ -24656,7 +24784,7 @@ msgstr "Standard Ej Angiven"
msgid "Standard Permissions"
msgstr "Standard Behörigheter"
-#: frappe/printing/doctype/print_format/print_format.py:81
+#: frappe/printing/doctype/print_format/print_format.py:82
msgid "Standard Print Format cannot be updated"
msgstr "Standard Utskrift Format kan inte uppdateras"
@@ -24774,6 +24902,7 @@ msgstr "Startar"
#. Label of the state (Link) field in DocType 'Workflow Document State'
#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40
#: frappe/integrations/doctype/token_cache/token_cache.json
#: frappe/workflow/doctype/workflow/workflow.js:162
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -24909,7 +25038,7 @@ msgstr "Steg för att verifiera din inloggning"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:455
msgid "Sticky"
msgstr "Klistrad"
@@ -24939,7 +25068,7 @@ msgstr "Lagring Användning Efter Tabeller"
msgid "Store Attached PDF Document"
msgstr "Spara Bifogade PDF dokument"
-#: frappe/core/doctype/user/user.js:490
+#: frappe/core/doctype/user/user.js:497
msgid "Store the API secret securely. It won't be displayed again."
msgstr "Förvara API Hemlighet på ett säkert sätt. Den kommer inte att visas igen."
@@ -25037,7 +25166,7 @@ msgstr "Ämne"
msgid "Subject Field"
msgstr "Ämne Fält"
-#: frappe/core/doctype/doctype/doctype.py:1936
+#: frappe/core/doctype/doctype/doctype.py:1949
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Ämne Fält Typ ska vara Data, Text, Lång Text, Liten Text, Text Redigerare"
@@ -25051,6 +25180,7 @@ msgstr "Godkännande Kö"
#. Label of the submit (Check) field in DocType 'DocShare'
#. Label of the submit (Check) field in DocType 'User Document Type'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Button label of the request-to-delete-data Web Form
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
@@ -25059,10 +25189,11 @@ msgstr "Godkännande Kö"
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Godkänn"
-#: frappe/public/js/frappe/list/list_view.js:2227
+#: frappe/public/js/frappe/list/list_view.js:2233
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Godkänn"
@@ -25072,7 +25203,7 @@ msgctxt "Button in web form"
msgid "Submit"
msgstr "Skicka"
-#: frappe/public/js/frappe/ui/dialog.js:63
+#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Godkänn"
@@ -25120,7 +25251,7 @@ msgstr "Godkänn detta dokument för att slutföra detta steg."
msgid "Submit this document to confirm"
msgstr "Tryck på Spara/Godkänn för att genomföra."
-#: frappe/public/js/frappe/list/list_view.js:2232
+#: frappe/public/js/frappe/list/list_view.js:2238
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Godkänn {0} dokument?"
@@ -25170,7 +25301,7 @@ msgstr "Underbenämning"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1171
+#: frappe/public/js/frappe/form/grid.js:1172
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25385,7 +25516,7 @@ msgstr "Synkroniserar"
msgid "Syncing {0} of {1}"
msgstr "Synkroniserar {0} av {1}"
-#: frappe/utils/data.py:2547
+#: frappe/utils/data.py:2573
msgid "Syntax Error"
msgstr "Syntaxfel"
@@ -25696,7 +25827,7 @@ msgstr "Tabell FlerVal"
msgid "Table Trimmed"
msgstr "Tabell Optimerad"
-#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/form/grid.js:1171
msgid "Table updated"
msgstr "Tabell Uppdaterad"
@@ -25913,7 +26044,7 @@ msgstr "Tack"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Återkommande för detta dokument är inaktiverad."
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1194
msgid "The CSV format is case sensitive"
msgstr "CSV format är skiftläge känslig"
@@ -25928,7 +26059,7 @@ msgstr "Klient ID som erhållits från Google Cloud Console under "
#: frappe/desk/utils.py:106
-msgid "The report you requested has been generated.
Click here to download:
"
-msgstr "Rapport du begärde är skapad.
Klicka här för att ladda ner:
"
+msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
+msgstr "Rapport som begärdes är skapad.
Klicka här för att ladda ner:
{0}
Denna länk löper ut om {1} timmar."
#: frappe/core/doctype/user/user.py:1000
msgid "The reset password link has been expired"
@@ -26095,7 +26226,7 @@ msgstr "Länk för återställning av lösenord har upphört att gälla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Länk för återställning av lösenord har antingen använts tidigare eller är ogiltig"
-#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs är inte tillgänglig"
@@ -26107,7 +26238,7 @@ msgstr "Roll {0} ska vara anpassad roll."
msgid "The selected document {0} is not a {1}."
msgstr "Vald dokument {0} är inte {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:336
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Systemet håller på att uppdateras. Uppdatera igen efter en stund."
@@ -26168,12 +26299,12 @@ msgstr "Det finns inga kommande händelser för dig."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Det finns inga {0} för denna {1}, varför startar du inte en!"
-#: frappe/public/js/frappe/views/reports/query_report.js:964
+#: frappe/public/js/frappe/views/reports/query_report.js:973
msgid "There are {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter redan i kö:"
#: frappe/website/doctype/web_form/web_form.js:81
-#: frappe/website/doctype/web_form/web_form.js:317
+#: frappe/website/doctype/web_form/web_form.js:318
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Det kan bara finnas nio sidbrytning fält i webbformulär"
@@ -26197,11 +26328,11 @@ msgstr "Det finns ingen aktivitet som heter \"{}\""
msgid "There is nothing new to show you right now."
msgstr "Det finns inget nytt att visa dig just nu."
-#: frappe/core/doctype/file/file.py:638 frappe/utils/file_manager.py:372
+#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Det finns problem med fil url: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:970
msgid "There is {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter som redan finns i kö:"
@@ -26213,7 +26344,7 @@ msgstr "Det måste finnas minst en behörighet regel."
msgid "There was an error building this page"
msgstr "Det uppstod fel när denna sida skulle skapas"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:196
msgid "There was an error saving filters"
msgstr "Det uppstod fel när filter skulle sparas"
@@ -26270,7 +26401,7 @@ msgstr "Tredje Parts Autentisering"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Denna Valuta är inaktiverad. Aktivera det att använda i transaktioner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:405
msgid "This Kanban Board will be private"
msgstr "Detta Anslagstavla Bord kommer att vara privat"
@@ -26278,6 +26409,10 @@ msgstr "Detta Anslagstavla Bord kommer att vara privat"
msgid "This Month"
msgstr "Denna Månad"
+#: frappe/core/doctype/file/file.py:396
+msgid "This PDF cannot be uploaded as it contains unsafe content."
+msgstr "Denna PDF kan inte laddas upp eftersom den innehåller osäkert innehåll."
+
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
msgstr "Detta Kvartal"
@@ -26303,6 +26438,11 @@ msgstr "Åtgärd är endast tillåten för {}"
msgid "This cannot be undone"
msgstr "Detta kan inte ångras"
+#: frappe/desk/doctype/number_card/number_card.js:484
+msgctxt "Number Card"
+msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access."
+msgstr "Detta kort är som standard endast synligt för Administratörer och System Ansvariga. Ange DocType som ska delas med användare som har läsbehörighet."
+
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
@@ -26321,7 +26461,7 @@ msgstr "Denna doctype har inga övergivna fält att trimma"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Denna doctype har pågående migrering, kör 'bench migrate' innan du ändrar doctype för att undvika att förlora ändringar."
-#: frappe/model/delete_doc.py:113
+#: frappe/model/delete_doc.py:153
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Detta dokument kan inte tas bort just nu eftersom det ändras av en annan användare. Försök igen senare."
@@ -26366,7 +26506,7 @@ msgstr "Detta fält visas endast om fält namn definieras här har värde eller
"myfield eval: doc.myfield == 'Min värde'\n"
"eval:doc.age>18"
-#: frappe/core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:525
msgid "This file is attached to a protected document and cannot be deleted."
msgstr "Den här filen är kopplad till ett skyddat dokument och kan inte tas bort."
@@ -26401,7 +26541,7 @@ msgstr "Denna geolokalisering leverantör stöds inte ännu."
msgid "This goes above the slideshow."
msgstr "Text ovanför Bildspel."
-#: frappe/public/js/frappe/views/reports/query_report.js:2186
+#: frappe/public/js/frappe/views/reports/query_report.js:2197
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Detta är bakgrund rapport. Ange lämplig filter och skapa ny rapport."
@@ -26451,7 +26591,7 @@ msgstr "Detta kan skrivas ut på flera sidor"
msgid "This month"
msgstr "Nuvarande Månad"
-#: frappe/public/js/frappe/views/reports/query_report.js:1036
+#: frappe/public/js/frappe/views/reports/query_report.js:1045
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i webbläsare. Du kan {1} denna rapport istället."
@@ -26459,7 +26599,7 @@ msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i w
msgid "This report was generated on {0}"
msgstr "Rapport skapades {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:861
msgid "This report was generated {0}."
msgstr "Denna rapport skapades {0}."
@@ -26601,9 +26741,11 @@ msgstr "Tidsram (Sekunder)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
#. Label of the time_zone (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
@@ -26868,7 +27010,7 @@ msgstr "För att exportera detta steget som JSON, länka det till Introduktion d
msgid "To generate password click {0}"
msgstr "För att generera lösenord klicka på {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:862
msgid "To get the updated report, click on {0}."
msgstr "Klicka på {0} att hämta uppdaterad rapport."
@@ -26943,7 +27085,7 @@ msgstr "Växla Rutnät Vy"
msgid "Toggle Sidebar"
msgstr "Växla Sidofält"
-#: frappe/public/js/frappe/list/list_view.js:1960
+#: frappe/public/js/frappe/list/list_view.js:1966
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Växla Sidofält"
@@ -27069,7 +27211,7 @@ msgstr "Ämne"
#: frappe/desk/query_report.py:587
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/query_report.js:1332
#: frappe/public/js/frappe/views/reports/report_view.js:1553
msgid "Total"
msgstr "Totalt"
@@ -27192,7 +27334,7 @@ msgstr "Spåra milstolpar för alla dokument"
msgid "Tracking"
msgstr "Spårning"
-#: frappe/public/js/frappe/utils/utils.js:1823
+#: frappe/public/js/frappe/utils/utils.js:1821
msgid "Tracking URL generated and copied to clipboard"
msgstr "Spårning URL skapad och kopierad till urklipp"
@@ -27228,7 +27370,7 @@ msgstr "Övergångar"
msgid "Translatable"
msgstr "Översättningbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2241
+#: frappe/public/js/frappe/views/reports/query_report.js:2252
msgid "Translate Data"
msgstr "Översätt Data"
@@ -27390,7 +27532,7 @@ msgstr "Två Faktor Autentisering Sätt"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/file/file_view.js:353
+#: frappe/public/js/frappe/views/file/file_view.js:370
#: frappe/public/js/frappe/views/workspace/workspace.js:399
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
@@ -27484,7 +27626,7 @@ msgstr "URL"
msgid "URL for documentation or help"
msgstr "URL för dokumentation eller hjälp"
-#: frappe/core/doctype/file/file.py:229
+#: frappe/core/doctype/file/file.py:231
msgid "URL must start with http:// or https://"
msgstr "URL måste börja med http:// eller https://"
@@ -27587,7 +27729,7 @@ msgstr "Kunde inte att skicka e-post på grund av att standard e-post konto sakn
msgid "Unable to update event"
msgstr "Kan inte uppdatera händelse"
-#: frappe/core/doctype/file/file.py:484
+#: frappe/core/doctype/file/file.py:489
msgid "Unable to write file format for {0}"
msgstr "Kunde inte skriva fil format för {0}"
@@ -27596,7 +27738,7 @@ msgstr "Kunde inte skriva fil format för {0}"
msgid "Unassign Condition"
msgstr "Inaktivera Villkor"
-#: frappe/app.py:396
+#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr "Ofångat Undantag"
@@ -27612,7 +27754,7 @@ msgstr "Ångra"
msgid "Undo last action"
msgstr "Ångra Senaste Åtgärd"
-#: frappe/database/query.py:1495
+#: frappe/database/query.py:1497
msgid "Unescaped quotes in string literal: {0}"
msgstr "Oescapede citattecken i sträng literal: {0}"
@@ -27661,7 +27803,7 @@ msgstr "Okänd Kolumn: {0}"
msgid "Unknown Rounding Method: {}"
msgstr "Okänd Avrundning Sätt: {}"
-#: frappe/auth.py:316
+#: frappe/auth.py:319
msgid "Unknown User"
msgstr "Okänd Användare"
@@ -27727,8 +27869,8 @@ msgstr "Avregistrering Parameter"
msgid "Unsubscribed"
msgstr "Avregistrerad"
-#: frappe/database/query.py:653 frappe/database/query.py:1387
-#: frappe/database/query.py:1397
+#: frappe/database/query.py:655 frappe/database/query.py:1389
+#: frappe/database/query.py:1399
msgid "Unsupported function or invalid field name: {0}"
msgstr "Funktion som inte stöds eller ogiltigt fältnamn: {0}"
@@ -27762,7 +27904,7 @@ msgstr "Uppkommande Händelser för Idag"
#: frappe/printing/page/print_format_builder/print_format_builder.js:507
#: frappe/printing/page/print_format_builder/print_format_builder.js:678
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
-#: frappe/public/js/frappe/form/grid_row.js:427
+#: frappe/public/js/frappe/form/grid_row.js:428
msgid "Update"
msgstr "Uppdatera"
@@ -27796,6 +27938,11 @@ msgstr "Uppdatera Order"
msgid "Update Password"
msgstr "Uppdatera lösenord"
+#. Title of the edit-profile Web Form
+#: frappe/core/web_form/edit_profile/edit_profile.json
+msgid "Update Profile"
+msgstr "Uppdatera Profil"
+
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -27854,7 +28001,7 @@ msgstr "Uppdaterad till ny Version 🎉"
msgid "Updated successfully"
msgstr "Uppdaterad"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:335
msgid "Updating"
msgstr "Uppdaterar"
@@ -28011,11 +28158,7 @@ msgstr "Använda annan E-post "
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Använd om standard inställningar inte kan identifiera din data korrekt"
-#: frappe/model/db_query.py:436
-msgid "Use of function {0} in field is restricted"
-msgstr "Användning av funktion {0} i fält är begränsad"
-
-#: frappe/model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
msgstr "Användning av underfråga eller funktion är begränsad"
@@ -28237,12 +28380,12 @@ msgstr "Användare Behörighet"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1941
+#: frappe/public/js/frappe/views/reports/query_report.js:1952
#: frappe/public/js/frappe/views/reports/report_view.js:1761
msgid "User Permissions"
msgstr "Användare Behörigheter"
-#: frappe/public/js/frappe/list/list_view.js:1918
+#: frappe/public/js/frappe/list/list_view.js:1924
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Användare Behörigheter"
@@ -28386,7 +28529,7 @@ msgstr "Användare {0} efterliknade som {1}"
msgid "User {0} is disabled"
msgstr "Användare {0} är inaktiverad"
-#: frappe/sessions.py:242
+#: frappe/sessions.py:243
msgid "User {0} is disabled. Please contact your System Manager."
msgstr "Användare {0} är inaktiverad. Kontakta System Ansvarig."
@@ -28514,8 +28657,8 @@ msgstr "Giltighet"
#: frappe/core/doctype/sms_parameter/sms_parameter.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
-#: frappe/desk/doctype/number_card/number_card.js:205
-#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
#: frappe/integrations/doctype/query_parameters/query_parameters.json
#: frappe/integrations/doctype/webhook_header/webhook_header.json
@@ -28547,7 +28690,7 @@ msgstr "Värde Ändrad"
msgid "Value To Be Set"
msgstr "Värde som ska Anges"
-#: frappe/model/base_document.py:1058 frappe/model/document.py:835
+#: frappe/model/base_document.py:1115 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Värde kan inte ändras för {0}"
@@ -28563,11 +28706,11 @@ msgstr "Värde kan inte vara negativ för {0}: {1}"
msgid "Value for a check field can be either 0 or 1"
msgstr "Värde för ett kontroll fält kan vara antingen 0 eller 1"
-#: frappe/custom/doctype/customize_form/customize_form.py:612
+#: frappe/custom/doctype/customize_form/customize_form.py:616
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Värde för fält {0} är för lång i {1}. Längd ska vara mindre än {2} tecken"
-#: frappe/model/base_document.py:445
+#: frappe/model/base_document.py:502
msgid "Value for {0} cannot be a list"
msgstr "Värde för {0} kan inte vara en lista"
@@ -28592,7 +28735,7 @@ msgstr "Värdet \"None\" innebär allmän klient. I ett sådant fall ges inte Kl
msgid "Value to Validate"
msgstr "Värde att Validera"
-#: frappe/model/base_document.py:1128
+#: frappe/model/base_document.py:1185
msgid "Value too big"
msgstr "Värde för hög"
@@ -28684,7 +28827,7 @@ msgstr "Visa Alla"
msgid "View Audit Trail"
msgstr "Visa Audit Spår"
-#: frappe/core/doctype/user/user.js:156
+#: frappe/core/doctype/user/user.js:144
msgid "View Doctype Permissions"
msgstr "Visa Doctype Behörigheter"
@@ -28696,7 +28839,7 @@ msgstr "Visa Fil"
msgid "View Full Log"
msgstr "Visa Full Logg"
-#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/views/treeview.js:486
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Visa Lista"
@@ -28706,7 +28849,7 @@ msgstr "Visa Lista"
msgid "View Log"
msgstr "Visa Logg"
-#: frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:135
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Visa Behöriga Dokument"
@@ -28822,6 +28965,7 @@ msgid "Warehouse"
msgstr "Lager"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/public/js/frappe/router.js:613
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Varning"
@@ -28916,7 +29060,7 @@ msgstr "Webbsida"
msgid "Web Page Block"
msgstr "Webbsida Avsnitt"
-#: frappe/public/js/frappe/utils/utils.js:1751
+#: frappe/public/js/frappe/utils/utils.js:1749
msgid "Web Page URL"
msgstr "Webbsida URL"
@@ -29306,7 +29450,7 @@ msgstr "Kommer visas bara om sektion rubriker är aktiverade"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Kör schemalagda jobb endast en gång om dagen för inaktiva webbplatser. Ange som 0 för att undvika att schemaläggare inaktiveras automatiskt."
-#: frappe/public/js/frappe/form/print_utils.js:38
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "With Letter head"
msgstr "Med Brevhuvud"
@@ -29467,7 +29611,7 @@ msgstr "Arbetsflöde är uppdaterad"
msgid "Workspace"
msgstr "Arbetsyta"
-#: frappe/public/js/frappe/router.js:175
+#: frappe/public/js/frappe/router.js:180
msgid "Workspace {0} does not exist"
msgstr "Arbetsyta {0} finns inte"
@@ -29560,7 +29704,7 @@ msgstr "Slutför"
msgid "Write"
msgstr "Skriva"
-#: frappe/model/base_document.py:954
+#: frappe/model/base_document.py:1011
msgid "Wrong Fetch From value"
msgstr "Fel Hämtning Från Värde"
@@ -29589,7 +29733,7 @@ msgstr "Y Axel Fält"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1224
+#: frappe/public/js/frappe/views/reports/query_report.js:1233
msgid "Y Field"
msgstr "Y Fält"
@@ -29651,7 +29795,7 @@ msgstr "Gul"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:498
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1664
+#: frappe/public/js/frappe/views/reports/query_report.js:1673
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29687,6 +29831,10 @@ msgstr "Du lade till 1 rad till {0}"
msgid "You added {0} rows to {1}"
msgstr "Du lade till {0} rader till {1}"
+#: frappe/public/js/frappe/router.js:642
+msgid "You are about to open an external link. To confirm, click the link again."
+msgstr "Du är på väg att öppna extern länk. Klicka på länk igen för att bekräfta."
+
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Ansluten till Nätverk."
@@ -29725,12 +29873,12 @@ msgstr "Du har inte behörighet att redigera rapport."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
-#: frappe/desk/reportview.py:445 frappe/desk/reportview.py:448
+#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Du har inte behörighet att exportera {} doctype"
-#: frappe/public/js/frappe/views/treeview.js:448
+#: frappe/public/js/frappe/views/treeview.js:450
msgid "You are not allowed to print this report"
msgstr "Du har inte behörighet att skriva ut denna rapport"
@@ -29738,7 +29886,7 @@ msgstr "Du har inte behörighet att skriva ut denna rapport"
msgid "You are not allowed to send emails related to this document"
msgstr "Du har inte behörighet att skicka e-post i kopplad till detta dokument"
-#: frappe/website/doctype/web_form/web_form.py:605
+#: frappe/website/doctype/web_form/web_form.py:632
msgid "You are not allowed to update this Web Form Document"
msgstr "Du har inte behörighet att uppdatera denna Webb Formulär Dokument"
@@ -29768,7 +29916,7 @@ msgstr "Du får bara uppdatera ordning, inte ta bort eller lägga till appar."
#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
-msgstr "Du väljer Synkronisering Alternativ som ALLA. Det kommer att synkronisera alla lästa såväl som olästa meddelanden från server. Detta kan också orsaka kopior av konversation (e-post)."
+msgstr "Du väljer Synkronisering Alternativ som ALLA. Det kommer att synkronisera alla lästa såväl som olästa meddelanden från server. Detta kan också orsaka kopior av kommunikation (e-post)."
#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
@@ -29811,11 +29959,11 @@ msgstr "Ändra lagring regel från {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Du kan fortsätta med Introduktion efter att utforskning av denna sida"
-#: frappe/model/delete_doc.py:137
+#: frappe/model/delete_doc.py:177
msgid "You can disable this {0} instead of deleting it."
msgstr "Du kan inaktivera denna {0} istället för att ta bort."
-#: frappe/core/doctype/file/file.py:756
+#: frappe/core/doctype/file/file.py:761
msgid "You can increase the limit from System Settings."
msgstr "Du kan öka gräns från System Inställningar."
@@ -29865,11 +30013,11 @@ msgstr "Använd Anpassa Formulär för att ange nivåer på fält."
msgid "You can use wildcard %"
msgstr "Du kan använda jokertecken %"
-#: frappe/custom/doctype/customize_form/customize_form.py:390
+#: frappe/custom/doctype/customize_form/customize_form.py:394
msgid "You can't set 'Options' for field {0}"
msgstr "Du kan inte ange 'Alternativ' för fält {0}"
-#: frappe/custom/doctype/customize_form/customize_form.py:394
+#: frappe/custom/doctype/customize_form/customize_form.py:398
msgid "You can't set 'Translatable' for field {0}"
msgstr "Du kan inte ange 'Översättningbar' för fält {0}"
@@ -29887,7 +30035,7 @@ msgstr "Du annullerade detta dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Du kan inte skapa Översikt Panel Diagram från Enskilda DocTypes"
-#: frappe/custom/doctype/customize_form/customize_form.py:386
+#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Du kan inte ändra 'Skrivskyddad' för fält {0}"
@@ -29930,15 +30078,15 @@ msgstr "Du har inte Läs eller Val Behörigheter för {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Du har inte behörighet för att komma åt denna resurs. Kontakta Administratör ."
-#: frappe/app.py:381
+#: frappe/app.py:384
msgid "You do not have enough permissions to complete the action"
msgstr "Du har inte behörighet att slutföra åtgärd"
-#: frappe/database/query.py:529
+#: frappe/database/query.py:531
msgid "You do not have permission to access field: {0}"
msgstr "Du har inte åtkomstbehörighet till fält: {0}"
-#: frappe/desk/query_report.py:914
+#: frappe/desk/query_report.py:923
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har inte behörighet att komma åt {0}: {1}."
@@ -29950,11 +30098,11 @@ msgstr "Du har inte behörighet att annullera alla länkade dokument."
msgid "You don't have access to Report: {0}"
msgstr "Du har inte behörighet till Rapport: {0}"
-#: frappe/website/doctype/web_form/web_form.py:808
+#: frappe/website/doctype/web_form/web_form.py:835
msgid "You don't have permission to access the {0} DocType."
msgstr "Du har inte behörighet att komma åt {0} DocType."
-#: frappe/utils/response.py:290 frappe/utils/response.py:294
+#: frappe/utils/response.py:289 frappe/utils/response.py:293
msgid "You don't have permission to access this file"
msgstr "Du har inte behörighet att komma åt den här filen"
@@ -29974,7 +30122,7 @@ msgstr "Du har ny meddelande från:"
msgid "You have been successfully logged out"
msgstr "Du är utloggad nu."
-#: frappe/custom/doctype/customize_form/customize_form.py:245
+#: frappe/custom/doctype/customize_form/customize_form.py:247
msgid "You have hit the row size limit on database table: {0}"
msgstr "Du har nått gräns för radstorlek i databas tabell: {0}"
@@ -30002,7 +30150,7 @@ msgstr "Visa {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Du har inte lagt till några Översiktpanel Diagram eller Nummerkort än."
-#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "You haven't created a {0} yet"
msgstr "Ingen {0} skapad än"
@@ -30019,11 +30167,11 @@ msgstr "Du ändrade detta"
msgid "You must add atleast one link."
msgstr "Du måste lägga till minst en länk."
-#: frappe/website/doctype/web_form/web_form.py:804
+#: frappe/website/doctype/web_form/web_form.py:831
msgid "You must be logged in to use this form."
msgstr "Du måste vara inloggad för att använda detta formulär."
-#: frappe/website/doctype/web_form/web_form.py:645
+#: frappe/website/doctype/web_form/web_form.py:672
msgid "You must login to submit this form"
msgstr "Du måste logga in för att godkänna detta formulär"
@@ -30047,7 +30195,7 @@ msgstr "Du måste vara systemanvändare för att komma åt denna sida."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Du måste vara i Utvecklarläge att redigera Standard Webb Formulär"
-#: frappe/utils/response.py:279
+#: frappe/utils/response.py:278
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha tillgång till säkerhetskopior."
@@ -30138,6 +30286,10 @@ msgstr "Du slutade följa detta dokument"
msgid "You viewed this"
msgstr "Du visade detta"
+#: frappe/public/js/frappe/router.js:653
+msgid "You will be redirected to:"
+msgstr "Du kommer att omdirigeras till:"
+
#: frappe/core/doctype/user_invitation/user_invitation.py:113
msgid "You've been invited to join {0}"
msgstr "Du har blivit inbjuden att gå med {0}"
@@ -30183,7 +30335,7 @@ msgstr "Genvägar"
msgid "Your account has been deleted"
msgstr "Ditt konto är borttagen"
-#: frappe/auth.py:514
+#: frappe/auth.py:517
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Konto är låst och kommer att låsas upp efter {0} sekunder"
@@ -30239,17 +30391,17 @@ msgstr "Ditt gamla lösenord är felaktig."
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "Bolag Namn och Adress för E-post Sidfot."
+msgstr "Bolag Namn och Adress för E-post Signatur."
#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någon ytterligare information, vänligen svara på detta mail."
-#: frappe/desk/query_report.py:341 frappe/desk/reportview.py:396
-msgid "Your report is being generated in the background. "
-msgstr "Din rapport skapas i bakgrunden. "
+#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396
+msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready."
+msgstr "Din rapport håller på att skapas i bakgrunden. Du kommer att få e-postmeddelande {0} med nedladdningslänk när den är klar."
-#: frappe/app.py:374
+#: frappe/app.py:377
msgid "Your session has expired, please login again to continue."
msgstr "Din session har gått ut, logga in igen för att fortsätta."
@@ -30557,7 +30709,7 @@ msgstr "användare@bolag"
msgid "just now"
msgstr "just nu"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291
msgid "label"
msgstr "etikett"
@@ -30586,7 +30738,7 @@ msgstr "lista"
msgid "logged in"
msgstr "inloggad"
-#: frappe/website/doctype/web_form/web_form.js:362
+#: frappe/website/doctype/web_form/web_form.js:363
msgid "login_required"
msgstr "Inloggning Erfordras "
@@ -30924,7 +31076,7 @@ msgstr "via Data Import"
msgid "via Google Meet"
msgstr "via Google Meet"
-#: frappe/email/doctype/notification/notification.py:403
+#: frappe/email/doctype/notification/notification.py:405
msgid "via Notification"
msgstr "via Avisering"
@@ -31034,7 +31186,7 @@ msgstr "{0} Diagram"
msgid "{0} Dashboard"
msgstr "{0} Översikt Panel"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:487
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31075,7 +31227,7 @@ msgstr "{0} Karta"
msgid "{0} Name"
msgstr "{0} Namn"
-#: frappe/model/base_document.py:1158
+#: frappe/model/base_document.py:1215
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Ej Tillåtet att ändra {1} efter godkännande från {2} till {3}"
@@ -31085,7 +31237,7 @@ msgstr "{0} Ej Tillåtet att ändra {1} efter godkännande från {2} till {3}"
msgid "{0} Report"
msgstr "{0} Rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:955
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "{0} Reports"
msgstr "{0} Rapporter"
@@ -31141,7 +31293,7 @@ msgstr "{0} och {1}"
msgid "{0} are currently {1}"
msgstr "{0} är för närvarande {1}"
-#: frappe/printing/doctype/print_format/print_format.py:95
+#: frappe/printing/doctype/print_format/print_format.py:98
msgid "{0} are required"
msgstr "{0} erfordras"
@@ -31158,7 +31310,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} bifogade {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:153
msgid "{0} can not be more than {1}"
msgstr "{0} kan inte vara fler än {1}"
@@ -31235,7 +31387,7 @@ msgstr "{0} finns inte på rad {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} fält kan inte anges som unikt i {1}, eftersom det inte finns unika befintliga värden"
-#: frappe/database/query.py:708
+#: frappe/database/query.py:710
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "{0} fält får inte innehålla bakåttecken (`): {1}"
@@ -31280,7 +31432,7 @@ msgstr "{0} på rad {1} inte kan ha både URL och under artiklar"
msgid "{0} is a mandatory field"
msgstr "{0} är erfordrad fält"
-#: frappe/core/doctype/file/file.py:564
+#: frappe/core/doctype/file/file.py:569
msgid "{0} is a not a valid zip file"
msgstr "{0} är inte giltig zip fil"
@@ -31329,7 +31481,7 @@ msgstr "{0} är som {1}"
msgid "{0} is mandatory"
msgstr "{0} är erfodrad"
-#: frappe/database/query.py:485
+#: frappe/database/query.py:487
msgid "{0} is not a child table of {1}"
msgstr "{0} är inte undertabell till {1}"
@@ -31349,12 +31501,12 @@ msgstr "{0} är inte giltig Kalender. Omdirigerar till standard Kalender."
msgid "{0} is not a valid Cron expression."
msgstr "{0} är inte giltigt Cron uttryck"
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} är inte en giltig DocType för Dynamisk Länk"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:206
+#: frappe/utils/__init__.py:208
msgid "{0} is not a valid Email Address"
msgstr "{0} är inte giltig E-post"
@@ -31362,11 +31514,11 @@ msgstr "{0} är inte giltig E-post"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} är inte giltig ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:174
+#: frappe/utils/__init__.py:176
msgid "{0} is not a valid Name"
msgstr "{0} är inte giltigt Namn"
-#: frappe/utils/__init__.py:153
+#: frappe/utils/__init__.py:155
msgid "{0} is not a valid Phone Number"
msgstr "{0} är inte giltigt Telefon Nummer"
@@ -31386,7 +31538,7 @@ msgstr "{0} är inte ett giltigt överordnat fält för {1}"
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} är inte ett giltigt rapport format. Rapport Format ska vara en av följande {1}"
-#: frappe/core/doctype/file/file.py:544
+#: frappe/core/doctype/file/file.py:549
msgid "{0} is not a zip file"
msgstr "{0} är inte en zip-fil"
@@ -31410,7 +31562,7 @@ msgstr "{0} är inte en av {1}"
msgid "{0} is not set"
msgstr "{0} är inte angiven"
-#: frappe/printing/doctype/print_format/print_format.py:173
+#: frappe/printing/doctype/print_format/print_format.py:176
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} är nu standard utskrift format för {1} DocType"
@@ -31420,8 +31572,8 @@ msgstr "{0} är en av {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:226
-#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} erfordras"
@@ -31434,7 +31586,7 @@ msgstr "{0} är angiven"
msgid "{0} is within {1}"
msgstr "{0} är inom {1}"
-#: frappe/public/js/frappe/list/list_view.js:1835
+#: frappe/public/js/frappe/list/list_view.js:1841
msgid "{0} items selected"
msgstr "{0} artiklar valda"
@@ -31491,11 +31643,11 @@ msgstr "{0} måste inte vara någon av {1}"
msgid "{0} must be one of {1}"
msgstr "{0} måste vara en av {1}"
-#: frappe/model/base_document.py:876
+#: frappe/model/base_document.py:933
msgid "{0} must be set first"
msgstr "{0} måste anges först"
-#: frappe/model/base_document.py:729
+#: frappe/model/base_document.py:786
msgid "{0} must be unique"
msgstr "{0} måste vara unik"
@@ -31520,11 +31672,11 @@ msgid "{0} not found"
msgstr "{0} hittades inte"
#: frappe/core/doctype/report/report.py:427
-#: frappe/public/js/frappe/list/list_view.js:1211
+#: frappe/public/js/frappe/list/list_view.js:1213
msgid "{0} of {1}"
msgstr "{0} av {1}"
-#: frappe/public/js/frappe/list/list_view.js:1213
+#: frappe/public/js/frappe/list/list_view.js:1215
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} av {1} ({2} rader med underordnade)"
@@ -31574,7 +31726,7 @@ msgstr "{0} tog bort sin tilldelning."
msgid "{0} removed {1} rows from {2}"
msgstr "{0} tog bort {1} rader från {2}"
-#: frappe/public/js/frappe/roles_editor.js:62
+#: frappe/public/js/frappe/roles_editor.js:64
msgid "{0} role does not have permission on any doctype"
msgstr "{0} roll har inte tillstånd på någon doctype"
@@ -31648,7 +31800,7 @@ msgstr "{0} till {1}"
msgid "{0} un-shared this document with {1}"
msgstr "{0} slutade dela detta dokument med {1}"
-#: frappe/custom/doctype/customize_form/customize_form.py:254
+#: frappe/custom/doctype/customize_form/customize_form.py:256
msgid "{0} updated"
msgstr "{0} uppdaterat"
@@ -31684,11 +31836,11 @@ msgstr "{0} {1} lagd till"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} är lagd till i Översikt Panel {2}"
-#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} finns redan"
-#: frappe/model/base_document.py:987
+#: frappe/model/base_document.py:1044
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} kan inte vara \"{2}\". Det kan vara en av följande: \"{3}\""
@@ -31708,11 +31860,11 @@ msgstr "{0} {1} är länkad till följande godkända dokument: {2}"
msgid "{0} {1} not found"
msgstr "{0} {1} hittades inte"
-#: frappe/model/delete_doc.py:248
+#: frappe/model/delete_doc.py:288
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Godkänd Post kan inte tas bort. Du måste {2} Annullera {3} det först."
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1176
msgid "{0}, Row {1}"
msgstr "{0}, Rad {1}"
@@ -31720,35 +31872,35 @@ msgstr "{0}, Rad {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} komplett | Lämna denna flik öppen tills den är klar."
-#: frappe/model/base_document.py:1124
+#: frappe/model/base_document.py:1181
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) kommer att avkortas, eftersom max tillåtna tecken är {2}"
-#: frappe/core/doctype/doctype/doctype.py:1801
+#: frappe/core/doctype/doctype/doctype.py:1814
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Kan inte Ändra utan att Annullera"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1832
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Kan inte tilldela Ändra om den inte kan Godkännas"
-#: frappe/core/doctype/doctype/doctype.py:1817
+#: frappe/core/doctype/doctype/doctype.py:1830
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Kan inte tilldela Godkänd om inte kan Godkännas"
-#: frappe/core/doctype/doctype/doctype.py:1796
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Kan inte ange Annullerad utan att Godkänna"
-#: frappe/core/doctype/doctype/doctype.py:1803
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Kan inte ange Import utan att Skapa"
-#: frappe/core/doctype/doctype/doctype.py:1799
+#: frappe/core/doctype/doctype/doctype.py:1812
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Kan inte ange Godkänd, Annullerad eller Ändrad utan att Skriva"
-#: frappe/core/doctype/doctype/doctype.py:1823
+#: frappe/core/doctype/doctype/doctype.py:1836
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Kan inte ange import eftersom {1} inte kan importeras"
@@ -31776,11 +31928,11 @@ msgstr "{0}: Fältnamn {1} visas flera gånger i rader {2}"
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Fälttyp {1} för {2} kan inte vara unik"
-#: frappe/core/doctype/doctype/doctype.py:1756
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: No basic permissions set"
msgstr "{0}: Inga grundläggande behörigheter angivna"
-#: frappe/core/doctype/doctype/doctype.py:1770
+#: frappe/core/doctype/doctype/doctype.py:1783
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Endast en regel tillåten med samma Roll, Nivå och {1}"
@@ -31800,7 +31952,7 @@ msgstr "{0}: Alternativ {1} måste vara lika som doctype namn {2} för fält {3}
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Andra behörighet regler kan också gälla"
-#: frappe/core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Behörighet på nivå 0 måste anges före högre nivåer anges"
@@ -31821,7 +31973,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} är satt på tillstånd {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1282
+#: frappe/public/js/frappe/views/reports/query_report.js:1291
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} mot {2}"
@@ -31857,11 +32009,11 @@ msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name
msgid "{} Complete"
msgstr "{} Klar"
-#: frappe/utils/data.py:2541
+#: frappe/utils/data.py:2567
msgid "{} Invalid python code on line {}"
msgstr "{} Ogiltig python kod på rad {}"
-#: frappe/utils/data.py:2550
+#: frappe/utils/data.py:2576
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Möjligen ogiltig python kod.
{}"
@@ -31887,7 +32039,7 @@ msgstr "{} är inaktiverad. Den kan bara aktiveras om {} är markerad."
msgid "{} is not a valid date string."
msgstr "{} är inte giltig datum sträng."
-#: frappe/commands/utils.py:562
+#: frappe/commands/utils.py:561
msgid "{} not found in PATH! This is required to access the console."
msgstr "{} hittades inte i Sökväg! Detta erfordras för att komma åt konsol."
diff --git a/frappe/locale/ta.po b/frappe/locale/ta.po
new file mode 100644
index 0000000000..29ce1dbd7f
--- /dev/null
+++ b/frappe/locale/ta.po
@@ -0,0 +1,31819 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: frappe\n"
+"Report-Msgid-Bugs-To: developers@frappe.io\n"
+"POT-Creation-Date: 2025-10-05 09:33+0000\n"
+"PO-Revision-Date: 2025-10-06 22:59\n"
+"Last-Translator: developers@frappe.io\n"
+"Language-Team: Tamil\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: ta\n"
+"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n"
+"X-Crowdin-File-ID: 52\n"
+"Language: ta_IN\n"
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "!="
+msgstr "!="
+
+#. Description of the 'Org History Heading' (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "\"Company History\""
+msgstr "\"நிறுவன வரலாறு\""
+
+#: frappe/core/doctype/data_export/exporter.py:202
+msgid "\"Parent\" signifies the parent table in which this row must be added"
+msgstr ""
+
+#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "\"Team Members\" or \"Management\""
+msgstr "\"குழு உறுப்பினர்கள்\" அல்லது \"நிர்வாகம்\""
+
+#: frappe/public/js/frappe/form/form.js:1090
+msgid "\"amended_from\" field must be present to do an amendment."
+msgstr ""
+
+#: frappe/utils/csvutils.py:246
+msgid "\"{0}\" is not a valid Google Sheets URL"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
+msgid "#{0}"
+msgstr ""
+
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36
+msgid "${values.doctype_name} has been added to queue for optimization"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "© Frappe Technologies Pvt. Ltd. and contributors"
+msgstr ""
+
+#. Label of the head_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "<head> HTML"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:206
+msgid "'In Global Search' is not allowed for field {0} of type {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1355
+msgid "'In Global Search' not allowed for type {0} in row {1}"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:198
+msgid "'In List View' is not allowed for field {0} of type {1}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:367
+msgid "'In List View' not allowed for type {0} in row {1}"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164
+msgid "'Recipients' not specified"
+msgstr ""
+
+#: frappe/utils/__init__.py:271
+msgid "'{0}' is not a valid IBAN"
+msgstr ""
+
+#: frappe/utils/__init__.py:261
+msgid "'{0}' is not a valid URL"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1349
+msgid "'{0}' not allowed for type {1} in row {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:302
+msgid "(Mandatory)"
+msgstr ""
+
+#: frappe/model/rename_doc.py:703
+msgid "** Failed: {0} to {1}: {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:133
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+msgid "+ Add / Remove Fields"
+msgstr ""
+
+#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
+msgstr ""
+
+#. Description of the 'Priority' (Int) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "0 is highest"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:893
+msgid "1 = True & 0 = False"
+msgstr ""
+
+#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "1 Currency = [?] Fraction\n"
+"For e.g. 1 USD = 100 Cent"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:19
+msgid "1 Day"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
+msgid "1 Google Calendar Event synced."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:963
+msgid "1 Report"
+msgstr ""
+
+#: frappe/tests/test_utils.py:845
+msgid "1 day ago"
+msgstr "1 நாள் முன்பு"
+
+#: frappe/public/js/frappe/form/reminders.js:17
+msgid "1 hour"
+msgstr "1 மணி நேரம்"
+
+#: frappe/public/js/frappe/utils/pretty_date.js:52
+#: frappe/tests/test_utils.py:843
+msgid "1 hour ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:48
+#: frappe/tests/test_utils.py:841
+msgid "1 minute ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:66
+#: frappe/tests/test_utils.py:849
+msgid "1 month ago"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:3
+msgid "1 of 2"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:227
+msgid "1 record will be exported"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320
+msgctxt "User removed row from child table"
+msgid "1 row from {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275
+msgctxt "User added row to child table"
+msgid "1 row to {0}"
+msgstr ""
+
+#: frappe/tests/test_utils.py:840
+msgid "1 second ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:62
+#: frappe/tests/test_utils.py:847
+msgid "1 week ago"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/pretty_date.js:70
+#: frappe/tests/test_utils.py:851
+msgid "1 year ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:844
+msgid "2 hours ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:850
+msgid "2 months ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:848
+msgid "2 weeks ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:852
+msgid "2 years ago"
+msgstr ""
+
+#: frappe/tests/test_utils.py:842
+msgid "3 minutes ago"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:16
+msgid "30 minutes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:18
+msgid "4 hours"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:37
+msgid "5 Records"
+msgstr ""
+
+#: frappe/tests/test_utils.py:846
+msgid "5 days ago"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:36
+msgid "; not allowed in condition"
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "<"
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "<="
+msgstr ""
+
+#. Description of the 'Generate Keys' (Button) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "\n"
+" Click here to learn about token-based authentication\n"
+""
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
+msgid "{0} is not a valid URL"
+msgstr ""
+
+#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
"
+msgstr ""
+
+#. Introduction text of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.
"
+msgstr ""
+
+#. Introduction text of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.
"
+msgstr ""
+
+#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "\n"
+" Edit list of Series in the box. Rules:\n"
+"
\n"
+" - Each Series Prefix on a new line.
\n"
+" - Allowed special characters are \"/\" and \"-\"
\n"
+" - \n"
+" Optionally, set the number of digits in the series using dot (.)\n"
+" followed by hashes (#). For example, \".####\" means that the series\n"
+" will have four digits. Default is five digits.\n"
+"
\n"
+" - \n"
+" You can also use variables in the series name by putting them\n"
+" between (.) dots\n"
+"
\n"
+" Supported Variables:\n"
+" \n"
+" .YYYY. - Year in 4 digits \n"
+" .YY. - Year in 2 digits \n"
+" .MM. - Month \n"
+" .DD. - Day of month \n"
+" .WW. - Week of the year \n"
+" - \n"
+"
.{fieldname}. - fieldname on the document e.g.\n"
+" branch\n"
+" \n"
+" .FY. - Fiscal Year (requires ERPNext to be installed) \n"
+" .ABBR. - Company Abbreviation (requires ERPNext to be installed) \n"
+"
\n"
+" \n"
+"
\n"
+" Examples:\n"
+"
\n"
+" - INV-
\n"
+" - INV-10-
\n"
+" - INVK-
\n"
+" - INV-.YYYY.-.{branch}.-.MM.-.####
\n"
+"
\n"
+"
\n"
+"
\n"
+msgstr ""
+
+#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom CSS Help
\n\n"
+"Notes:
\n\n"
+"\n"
+"- All field groups (label + value) are set attributes
data-fieldtype and data-fieldname \n"
+"- All values are given class
value \n"
+"- All Section Breaks are given class
section-break \n"
+"- All Column Breaks are given class
column-break \n"
+"
\n\n"
+"Examples
\n\n"
+"1. Left align integers
\n\n"
+"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n"
+"1. Add border to sections except the last section
\n\n"
+".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
+".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }
\n"
+msgstr ""
+
+#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#, python-format
+msgid "Print Format Help
\n"
+"
\n"
+"Introduction
\n"
+"Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.
\n"
+"For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.
\n"
+"
\n"
+"References
\n"
+"\n"
+"\t- Jinja Templating Language
\n"
+"\t- Bootstrap CSS Framework
\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\tdoc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tGet document value formatted as Date, Currency, etc. Pass parent doc for currency type fields. | \n"
+"\t\t
\n"
+"\t\t\n"
+"\t\t\tfrappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tGet value from another document. | \n"
+"\t\t
\n"
+"\t\n"
+"
\n"
+msgstr ""
+
+#. Description of the 'Template' (Code) field in DocType 'Address Template'
+#: frappe/contacts/doctype/address_template/address_template.json
+#, python-format
+msgid "Default Template
\n"
+"Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n"
+"{{ address_line1 }}<br>\n"
+"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
+"{{ city }}<br>\n"
+"{% if state %}{{ state }}<br>{% endif -%}\n"
+"{% if pincode %} PIN: {{ pincode }}<br>{% endif -%}\n"
+"{{ country }}<br>\n"
+"{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n"
+"{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n"
+"{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n"
+"
"
+msgstr ""
+
+#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Example
\n\n"
+"Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
+"- Customer: {{ customer }}\n"
+"- Amount: {{ grand_total }}\n"
+"\n\n"
+"How to get fieldnames
\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating
\n\n"
+"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
+msgstr ""
+
+#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Or
"
+msgstr ""
+
+#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+#, python-format
+msgid "Message Example
\n\n"
+"<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
+"<!-- show last comment -->\n"
+"{% if comments %}\n"
+"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
+"<ul>\n"
+"<li>Customer: {{ doc.customer }}\n"
+"<li>Amount: {{ doc.grand_total }}\n"
+"</ul>\n"
+""
+msgstr ""
+
+#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Condition Examples:
\n"
+"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
+"
"
+msgstr ""
+
+#. Content of the 'html_7' (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Examples:
\n"
+"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
+"
\n"
+msgstr ""
+
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+"If you create a separate webform every year to capture feedback from employees add a \n"
+" field named year in doctype and add a filter year = 2023
\n"
+msgstr ""
+
+#. Description of the 'Context Script' (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Set context before rendering a template. Example:
\n"
+"
\n"
+"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
+"
"
+msgstr ""
+
+#. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"New content\";\n"
+"
"
+msgstr ""
+
+#: frappe/twofactor.py:451
+msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
+msgstr ""
+
+#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job
+#. Type'
+#. Description of the 'Cron Format' (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "* * * * *\n"
+"┬ ┬ ┬ ┬ ┬\n"
+"│ │ │ │ │\n"
+"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
+"│ │ │ └───── month (1 - 12)\n"
+"│ │ └────────── day of month (1 - 31)\n"
+"│ └─────────────── hour (0 - 23)\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
+"* - Any value\n"
+"/ - Step values\n"
+"
\n"
+msgstr ""
+
+#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "doc.grand_total > 0
\n\n"
+"Conditions should be written in simple Python. Please use properties available in the form only.
\n"
+"Allowed functions:\n"
+"
\n"
+"- frappe.db.get_value
\n"
+"- frappe.db.get_list
\n"
+"- frappe.session
\n"
+"- frappe.utils.now_datetime
\n"
+"- frappe.utils.get_datetime
\n"
+"- frappe.utils.add_to_date
\n"
+"- frappe.utils.now
\n"
+"
\n"
+"Example:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
+msgstr ""
+
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
+msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "="
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid ">"
+msgstr ""
+
+#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid ">="
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1035
+msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
+#. Success message of the request-data Web Form
+#: frappe/website/web_form/request_data/request_data.json
+msgid "A download link with your data will be sent to the email address associated with your account."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:175
+msgid "A field with the name {0} already exists in {1}"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:269
+msgid "A file with same name {} already exists"
+msgstr ""
+
+#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:5
+msgid "A new account has been created for you at {0}"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431
+msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
+msgstr ""
+
+#. Description of the 'Symbol' (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "A symbol for this currency. For e.g. $"
+msgstr ""
+
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
+msgid "A template already exists for field {0} of {1}"
+msgstr ""
+
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
+#: frappe/utils/password_strength.py:169
+msgid "A word by itself is easy to guess."
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A0"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A1"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A2"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A3"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A4"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A5"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A6"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A7"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A8"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A9"
+msgstr ""
+
+#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "ALL"
+msgstr ""
+
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "API"
+msgstr ""
+
+#. Label of the api_access (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "API Access"
+msgstr ""
+
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "API Endpoint"
+msgstr ""
+
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "API Endpoint Args"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:102
+msgid "API Endpoint Args should be valid JSON"
+msgstr ""
+
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key"
+msgstr ""
+
+#. Description of the 'Authentication' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site."
+msgstr ""
+
+#. Description of the 'API Key' (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "API Key cannot be regenerated"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:456
+msgid "API Keys"
+msgstr ""
+
+#. Label of the api_logging_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "API Logging"
+msgstr ""
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "API Method"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr ""
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Secret"
+msgstr ""
+
+#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "ASC"
+msgstr ""
+
+#. Label of a standard help item
+#. Type: Action
+#: frappe/hooks.py
+msgid "About"
+msgstr ""
+
+#: frappe/www/about.html:11 frappe/www/about.html:18
+msgid "About Us"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/workspace/website/website.json
+msgid "About Us Settings"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "About Us Team Member"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:27
+msgid "About {0} minute remaining"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:28
+msgid "About {0} minutes remaining"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:25
+msgid "About {0} seconds remaining"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:16
+msgid "Accept Invitation"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Accepted"
+msgstr ""
+
+#. Label of the accepted_at (Datetime) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Accepted At"
+msgstr ""
+
+#. Label of the access_control_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Access Control"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/workspace/users/users.json
+msgid "Access Log"
+msgstr ""
+
+#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the access_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Access Token"
+msgstr ""
+
+#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Access Token URL"
+msgstr ""
+
+#: frappe/auth.py:494
+msgid "Access not allowed from this IP Address"
+msgstr ""
+
+#. Label of the account_section (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Account"
+msgstr ""
+
+#. Label of the account_deletion_settings_section (Section Break) field in
+#. DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Account Deletion Settings"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Accounts Manager"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
+msgid "Accounts User"
+msgstr ""
+
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr ""
+
+#. Label of the action (Select) field in DocType 'Amended Document Naming
+#. Settings'
+#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
+#. Label of the action (Data) field in DocType 'Navbar Item'
+#. Label of the action (Select) field in DocType 'Onboarding Step'
+#. Label of the action (Select) field in DocType 'Email Flag Queue'
+#. Label of the action (Link) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_group/email_group.js:34
+#: frappe/email/doctype/email_group/email_group.js:63
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
+msgid "Action"
+msgstr ""
+
+#. Label of the action (Small Text) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+msgid "Action / Route"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
+msgid "Action Complete"
+msgstr ""
+
+#: frappe/model/document.py:1888
+msgid "Action Failed"
+msgstr ""
+
+#. Label of the action_label (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Action Label"
+msgstr ""
+
+#. Label of the action_timeout (Int) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
+msgid "Action Timeout (Seconds)"
+msgstr ""
+
+#. Label of the action_type (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+msgid "Action Type"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:120
+msgid "Action {0} completed successfully on {1} {2}. View it {3}"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
+msgid "Action {0} failed on {1} {2}. View it {3}"
+msgstr ""
+
+#. Label of the actions_section (Tab Break) field in DocType 'DocType'
+#. Label of the actions (Table) field in DocType 'Customize Form'
+#: frappe/core/doctype/communication/communication.js:66
+#: frappe/core/doctype/communication/communication.js:74
+#: frappe/core/doctype/communication/communication.js:82
+#: frappe/core/doctype/communication/communication.js:90
+#: frappe/core/doctype/communication/communication.js:99
+#: frappe/core/doctype/communication/communication.js:108
+#: frappe/core/doctype/communication/communication.js:131
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/rq_job/rq_job_list.js:14
+#: frappe/core/doctype/rq_job/rq_job_list.js:39
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48
+#: frappe/custom/doctype/customize_form/customize_form.js:108
+#: frappe/custom/doctype/customize_form/customize_form.js:116
+#: frappe/custom/doctype/customize_form/customize_form.js:124
+#: frappe/custom/doctype/customize_form/customize_form.js:132
+#: frappe/custom/doctype/customize_form/customize_form.js:140
+#: frappe/custom/doctype/customize_form/customize_form.js:148
+#: frappe/custom/doctype/customize_form/customize_form.js:283
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/ui/page.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:850
+msgid "Actions"
+msgstr ""
+
+#. Label of the activate (Check) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
+msgid "Activate"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/recorder/recorder_list.js:207
+#: frappe/core/doctype/user/user_list.js:12
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/workflow/doctype/workflow/workflow_list.js:5
+msgid "Active"
+msgstr ""
+
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Active Directory"
+msgstr ""
+
+#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
+#. Settings'
+#. Label of the active_domains (Table) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
+msgid "Active Domains"
+msgstr ""
+
+#. Label of the active_sessions (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/www/third_party_apps.html:34
+msgid "Active Sessions"
+msgstr ""
+
+#. Group in User's connections
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:22
+#: frappe/public/js/frappe/form/footer/form_timeline.js:60
+msgid "Activity"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Build Workspace
+#. Label of a Link in the Users Workspace
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/core/workspace/users/users.json
+msgid "Activity Log"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/email/doctype/email_group/email_group.js:60
+#: frappe/public/js/frappe/form/grid_row.js:502
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
+msgid "Add"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:455
+msgid "Add / Remove Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
+msgid "Add / Update"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:442
+msgid "Add A New Rule"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:601
+#: frappe/public/js/frappe/views/interaction.js:159
+msgid "Add Attachment"
+msgstr ""
+
+#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Background Image"
+msgstr ""
+
+#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Border at Bottom"
+msgstr ""
+
+#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Border at Top"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:37
+msgid "Add Card to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:210
+msgid "Add Chart to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:301
+msgid "Add Child"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
+#: frappe/public/js/frappe/views/reports/query_report.js:1840
+#: frappe/public/js/frappe/views/reports/query_report.js:1843
+#: frappe/public/js/frappe/views/reports/report_view.js:360
+#: frappe/public/js/frappe/views/reports/report_view.js:385
+#: frappe/public/js/print_format_builder/Field.vue:112
+msgid "Add Column"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:127
+msgid "Add Contact"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.js:38
+msgid "Add Contacts"
+msgstr ""
+
+#. Label of the add_container (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Container"
+msgstr ""
+
+#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Add Custom Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:188
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
+msgid "Add Filters"
+msgstr ""
+
+#. Label of the add_shade (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Gray Background"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:230
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
+msgid "Add Group"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.js:30
+msgid "Add Indexes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Multiple"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:445
+msgid "Add New Permission Rule"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
+msgid "Add Participants"
+msgstr ""
+
+#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Add Query Parameters"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:819
+msgid "Add Roles"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Row"
+msgstr ""
+
+#. Label of the add_signature (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/public/js/frappe/views/communication.js:133
+msgid "Add Signature"
+msgstr ""
+
+#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Space at Bottom"
+msgstr ""
+
+#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Add Space at Top"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:38
+#: frappe/email/doctype/email_group/email_group.js:59
+msgid "Add Subscribers"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:425
+msgid "Add Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2151
+msgctxt "Button in list view actions menu"
+msgid "Add Tags"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:433
+msgid "Add Template"
+msgstr ""
+
+#. Label of the add_total_row (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Total Row"
+msgstr ""
+
+#. Label of the add_translate_data (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Translate Data"
+msgstr ""
+
+#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Add Unsubscribe Link"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:6
+msgid "Add User Permissions"
+msgstr ""
+
+#. Label of the add_video_conferencing (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Add Video Conferencing"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Add a Filter"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "Add a New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:211
+msgid "Add a Row"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:30
+#: frappe/templates/includes/comments/comments.html:47
+msgid "Add a comment"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
+#: frappe/public/js/form_builder/components/Tabs.vue:192
+msgid "Add a new section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:193
+msgid "Add a row above the current row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:205
+msgid "Add a row at the bottom"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:201
+msgid "Add a row at the top"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:197
+msgid "Add a row below the current row"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
+msgid "Add a {0} Chart"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:18
+msgid "Add script for Child Table"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
+msgid "Add section above"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:265
+msgid "Add section below"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:52
+#: frappe/public/js/form_builder/components/Tabs.vue:157
+msgid "Add tab"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:252
+msgid "Add to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
+msgid "Add to ToDo"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
+msgid "Add to table"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:99
+msgid "Add to this activity by mailing to {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:289
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Added"
+msgstr ""
+
+#. Description of the '<head> HTML' (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:81
+msgid "Added default log doctypes: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
+msgid "Added {0} ({1})"
+msgstr ""
+
+#. Label of the additional_permissions (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the additional_permissions (Section Break) field in DocType
+#. 'DocPerm'
+#. Label of the additional_permissions_section (Section Break) field in DocType
+#. 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "Additional Permissions"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the address (Link) field in DocType 'Contact'
+#. Label of the address (Section Break) field in DocType 'Contact Us Settings'
+#. Label of the address (Small Text) field in DocType 'Website Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Address"
+msgstr ""
+
+#. Label of the address_line1 (Data) field in DocType 'Address'
+#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Line 1"
+msgstr ""
+
+#. Label of the address_line2 (Data) field in DocType 'Address'
+#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Line 2"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/address_template/address_template.json
+msgid "Address Template"
+msgstr ""
+
+#. Label of the address_title (Data) field in DocType 'Address'
+#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Title"
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.py:72
+msgid "Address Title is mandatory."
+msgstr ""
+
+#. Label of the address_type (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Address Type"
+msgstr ""
+
+#. Description of the 'Address' (Small Text) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Address and other legal information you may want to put in the footer."
+msgstr ""
+
+#: frappe/contacts/doctype/address/address.py:206
+msgid "Addresses"
+msgstr ""
+
+#. Name of a report
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
+msgid "Addresses And Contacts"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Adds a custom client script to a DocType"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
+msgid "Administration"
+msgstr ""
+
+#. Name of a role
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Administrator"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1226
+msgid "Administrator Logged In"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1220
+msgid "Administrator accessed {0} on {1} via IP Address {2}."
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:52
+msgid "Administrator can't follow"
+msgstr ""
+
+#. Label of the advanced (Section Break) field in DocType 'DocType'
+#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Advanced"
+msgstr ""
+
+#. Label of the advanced_control_section (Section Break) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Advanced Control"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:339
+#: frappe/public/js/frappe/form/controls/link.js:341
+msgid "Advanced Search"
+msgstr ""
+
+#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Advanced Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:64
+#: frappe/public/js/frappe/ui/filters/filter.js:70
+msgid "After"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Cancel"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Delete"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Insert"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save (Submitted Document)"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "After Submission"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Submit"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:63
+msgid "Aggregate Field is required to create a number card"
+msgstr ""
+
+#. Label of the aggregate_function_based_on (Select) field in DocType
+#. 'Dashboard Chart'
+#. Label of the aggregate_function_based_on (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Aggregate Function Based On"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
+msgid "Aggregate Function field is required to create a dashboard chart"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Alert"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Alerts and Notifications"
+msgstr ""
+
+#: frappe/database/query.py:1610
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1535
+msgid "Alias must be a string"
+msgstr ""
+
+#. Label of the align (Select) field in DocType 'Letter Head'
+#. Label of the footer_align (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Align"
+msgstr ""
+
+#. Label of the align_labels_right (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Align Labels to the Right"
+msgstr ""
+
+#. Label of the right (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+msgid "Align Right"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:479
+msgid "Align Value"
+msgstr ""
+
+#. Name of a role
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "All"
+msgstr ""
+
+#. Label of the all_day (Check) field in DocType 'Calendar View'
+#. Label of the all_day (Check) field in DocType 'Event'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:408
+msgid "All Day"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.py:43
+msgid "All Images attached to Website Slideshow should be public"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:29
+msgid "All Records"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:2224
+msgid "All Submissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:452
+msgid "All customizations will be removed. Please confirm."
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:158
+msgid "All fields are necessary to submit the comment."
+msgstr ""
+
+#. Description of the 'Document States' (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\""
+msgstr ""
+
+#: frappe/utils/password_strength.py:183
+msgid "All-uppercase is almost as easy to guess as all-lowercase."
+msgstr ""
+
+#. Label of the allocated_to (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+msgid "Allocated To"
+msgstr ""
+
+#. Label of the allow (Link) field in DocType 'User Permission'
+#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:16
+msgid "Allow"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.py:160
+msgid "Allow API Indexing Access"
+msgstr ""
+
+#. Label of the allow_auto_repeat (Check) field in DocType 'DocType'
+#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Auto Repeat"
+msgstr ""
+
+#. Label of the allow_bulk_edit (Check) field in DocType 'DocField'
+#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow Bulk Edit"
+msgstr ""
+
+#. Label of the allow_edit (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow Bulk Editing"
+msgstr ""
+
+#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Consecutive Login Attempts"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
+msgid "Allow Google Calendar Access"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
+msgid "Allow Google Contacts Access"
+msgstr ""
+
+#. Label of the allow_guest (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Allow Guest"
+msgstr ""
+
+#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Allow Guest to View"
+msgstr ""
+
+#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Guests to Upload Files"
+msgstr ""
+
+#. Label of the allow_import (Check) field in DocType 'DocType'
+#. Label of the allow_import (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Import (via Data Import Tool)"
+msgstr ""
+
+#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login After Fail"
+msgstr ""
+
+#. Label of the allow_login_using_mobile_number (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using Mobile Number"
+msgstr ""
+
+#. Label of the allow_login_using_user_name (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using User Name"
+msgstr ""
+
+#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow Modules"
+msgstr ""
+
+#. Label of the allow_older_web_view_links (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Older Web View Links (Insecure)"
+msgstr ""
+
+#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Allow Print for Cancelled"
+msgstr ""
+
+#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Allow Print for Draft"
+msgstr ""
+
+#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web
+#. Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Allow Read On All Link Options"
+msgstr ""
+
+#. Label of the allow_rename (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Allow Rename"
+msgstr ""
+
+#. Label of the roles_permission (Section Break) field in DocType 'Role
+#. Permission for Page and Report'
+#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module
+#. Onboarding'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Allow Roles"
+msgstr ""
+
+#. Label of the allow_self_approval (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Allow Self Approval"
+msgstr ""
+
+#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Sending Usage Data for Improving Applications"
+msgstr ""
+
+#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Allow approval for creator of the document"
+msgstr ""
+
+#. Label of the allow_comments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow comments"
+msgstr ""
+
+#. Label of the allow_delete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow delete"
+msgstr ""
+
+#. Label of the email_append_to (Check) field in DocType 'DocType'
+#. Label of the email_append_to (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow document creation via Email"
+msgstr ""
+
+#. Label of the allow_edit (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow editing after submit"
+msgstr ""
+
+#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow editing even if the doctype has a workflow set up.\n\n"
+"Does nothing if a workflow isn't set up."
+msgstr ""
+
+#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Allow events in timeline"
+msgstr ""
+
+#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow in Quick Entry"
+msgstr ""
+
+#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow incomplete forms"
+msgstr ""
+
+#. Label of the allow_multiple (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow multiple responses"
+msgstr ""
+
+#. Label of the allow_on_submit (Check) field in DocType 'DocField'
+#. Label of the allow_on_submit (Check) field in DocType 'Custom Field'
+#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow on Submit"
+msgstr ""
+
+#. Label of the deny_multiple_sessions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow only one session per user"
+msgstr ""
+
+#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Allow page break inside tables"
+msgstr ""
+
+#. Label of the allow_print (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow print"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:431
+msgid "Allow recording my first session to improve user experience"
+msgstr ""
+
+#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow saving if mandatory fields are not filled"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:424
+msgid "Allow sending usage data for improving applications"
+msgstr ""
+
+#. Description of the 'Login After' (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow user to login only after this hour (0-24)"
+msgstr ""
+
+#. Description of the 'Login Before' (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow user to login only before this hour (0-24)"
+msgstr ""
+
+#. Description of the 'Login with email link' (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow users to log in without a password, using a login link sent to their email"
+msgstr ""
+
+#. Label of the allowed (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Allowed"
+msgstr ""
+
+#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allowed File Extensions"
+msgstr ""
+
+#. Label of the allowed_in_mentions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allowed In Mentions"
+msgstr ""
+
+#. Label of the allowed_modules_section (Section Break) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Allowed Modules"
+msgstr ""
+
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
+#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Allowed Roles"
+msgstr ""
+
+#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allowed embedding domains"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1256
+msgid "Allowing DocType, DocType. Be careful!"
+msgstr ""
+
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1034
+msgid "Already Registered"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:137
+msgid "Already in the following Users ToDo list:{0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:907
+msgid "Also adding the dependent currency field {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:920
+msgid "Also adding the status dependency field {0}"
+msgstr ""
+
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Alternative Email ID"
+msgstr ""
+
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Always"
+msgstr ""
+
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr ""
+
+#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Always add \"Draft\" Heading for printing draft documents"
+msgstr ""
+
+#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always use this email address as sender address"
+msgstr ""
+
+#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always use this name as sender name"
+msgstr ""
+
+#. Label of the amend (Check) field in DocType 'Custom DocPerm'
+#. Label of the amend (Check) field in DocType 'DocPerm'
+#. Label of the amend (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+msgid "Amend"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
+#. Settings'
+#. Option for the 'Default Amendment Naming' (Select) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Amend Counter"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+msgid "Amended Document Naming Settings"
+msgstr ""
+
+#. Label of the amended_documents_section (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Amended Documents"
+msgstr ""
+
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+msgid "Amended From"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:12
+msgctxt "Freeze message while amending a document"
+msgid "Amending"
+msgstr ""
+
+#. Label of the amend_naming_override (Table) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Amendment Naming Override"
+msgstr ""
+
+#: frappe/model/document.py:551
+msgid "Amendment Not Allowed"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
+msgid "Amendment naming rules updated."
+msgstr ""
+
+#. Success message of the request-to-delete-data Web Form
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+msgid "An error occurred while setting Session Defaults"
+msgstr ""
+
+#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
+msgstr ""
+
+#: frappe/templates/includes/oauth_confirmation.html:38
+msgid "An unexpected error occurred while authorizing {}."
+msgstr ""
+
+#. Label of the analytics_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Analytics"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:35
+msgid "Ancestors Of"
+msgstr ""
+
+#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Announcement Widget"
+msgstr ""
+
+#. Label of the announcements_section (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Announcements"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Annual"
+msgstr ""
+
+#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
+#. Deletion Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Anonymization Matrix"
+msgstr ""
+
+#. Label of the anonymous (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Anonymous responses"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:189
+msgid "Another transaction is blocking this one. Please try again in a few seconds."
+msgstr ""
+
+#: frappe/model/rename_doc.py:379
+msgid "Another {0} with name {1} exists, select another name"
+msgstr ""
+
+#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
+msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
+msgstr ""
+
+#. Label of the app_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the app_section (Section Break) field in DocType 'User'
+#. Label of the app (Data) field in DocType 'Desktop Icon'
+#. Label of the app (Data) field in DocType 'Workspace'
+#. Label of the app (Data) field in DocType 'Website Theme Ignore App'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+msgid "App"
+msgstr ""
+
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "App ID"
+msgstr ""
+
+#. Label of the app_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "App Logo"
+msgstr ""
+
+#. Label of the app_name (Select) field in DocType 'Module Def'
+#. Label of the app_name (Select) field in DocType 'User Invitation'
+#. Label of the app_name (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "App Name"
+msgstr ""
+
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
+#: frappe/modules/utils.py:280
+msgid "App not found for module: {0}"
+msgstr ""
+
+#: frappe/__init__.py:1113
+msgid "App {0} is not installed"
+msgstr ""
+
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Account'
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Append Emails to Sent Folder"
+msgstr ""
+
+#. Label of the append_to (Link) field in DocType 'Email Account'
+#. Label of the append_to (Link) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "Append To"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:202
+msgid "Append To can be one of {0}"
+msgstr ""
+
+#. Description of the 'Append To' (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:105
+msgid "Applicable Document Types"
+msgstr ""
+
+#. Label of the applicable_for (Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Applicable For"
+msgstr ""
+
+#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings'
+#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Application Logo"
+msgstr ""
+
+#. Label of the app_name (Data) field in DocType 'Installed Application'
+#. Label of the app_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Application Name"
+msgstr ""
+
+#. Label of the app_version (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Application Version"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.py:195
+msgid "Application is not installed"
+msgstr ""
+
+#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Applied On"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:103
+msgid "Apply"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2136
+msgctxt "Button in list view actions menu"
+msgid "Apply Assignment Rule"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:318
+msgid "Apply Filters"
+msgstr ""
+
+#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Apply Strict User Permissions"
+msgstr ""
+
+#. Label of the view (Select) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Apply To"
+msgstr ""
+
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "Apply To All Document Types"
+msgstr ""
+
+#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Apply User Permission On"
+msgstr ""
+
+#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Apply document permissions"
+msgstr ""
+
+#. Description of the 'If user is the owner' (Check) field in DocType 'Custom
+#. DocPerm'
+#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+msgid "Apply this rule if the User is the Owner"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:75
+msgid "Apply to all Documents Types"
+msgstr ""
+
+#: frappe/model/workflow.py:322
+msgid "Applying: {0}"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
+msgid "Approval Required"
+msgstr ""
+
+#. Label of a standard navbar item
+#. Type: Route
+#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/website/js/website.js:619 frappe/www/me.html:80
+msgid "Apps"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:41
+msgctxt "Number system"
+msgid "Ar"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
+msgid "Archive"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Archived"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
+msgid "Archived Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_invitation/user_invitation.js:18
+msgid "Are you sure you want to cancel the invitation?"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2115
+msgid "Are you sure you want to clear the assignments?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:294
+msgid "Are you sure you want to delete all rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/attach.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
+msgid "Are you sure you want to delete the attachment?"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:197
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:126
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:65
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:203
+msgid "Are you sure you want to delete this record?"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:191
+msgid "Are you sure you want to discard the changes?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:977
+msgid "Are you sure you want to generate a new report?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:120
+msgid "Are you sure you want to merge {0} with {1}?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:118
+msgid "Are you sure you want to proceed?"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:25
+msgid "Are you sure you want to re-enable scheduler?"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:163
+msgid "Are you sure you want to relink this communication to {0}?"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:10
+msgid "Are you sure you want to remove all failed jobs?"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:116
+msgid "Are you sure you want to remove the {0} filter?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
+msgid "Are you sure you want to reset all customizations?"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "Are you sure you want to save this document?"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
+msgid "Are you sure?"
+msgstr ""
+
+#. Label of the arguments (Code) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
+msgid "Arguments"
+msgstr ""
+
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Arial"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:11
+msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:107
+msgid "As document sharing is disabled, please give them the required permissions before assigning."
+msgstr ""
+
+#: frappe/templates/emails/account_deletion_notification.html:3
+msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
+msgstr ""
+
+#. Option for the 'Show External Link Warning' (Select) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Ask"
+msgstr ""
+
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assign Condition"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
+msgid "Assign To"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2097
+msgctxt "Button in list view actions menu"
+msgid "Assign To"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
+msgid "Assign To User Group"
+msgstr ""
+
+#. Label of the assign_to_users_section (Section Break) field in DocType
+#. 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assign To Users"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
+msgid "Assign a user"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
+msgid "Assign one by one, in sequence"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
+msgid "Assign to me"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
+msgid "Assign to the one who has the least assignments"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
+msgid "Assign to the user set in this field"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Assigned"
+msgstr ""
+
+#. Label of the assigned_by (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
+msgid "Assigned By"
+msgstr ""
+
+#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+msgid "Assigned By Full Name"
+msgstr ""
+
+#: frappe/model/meta.py:62
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:49
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71
+#: frappe/public/js/frappe/model/meta.js:210
+#: frappe/public/js/frappe/model/model.js:136
+#: frappe/public/js/frappe/views/interaction.js:82
+msgid "Assigned To"
+msgstr ""
+
+#: frappe/desk/report/todo/todo.py:40
+msgid "Assigned To/Owner"
+msgstr ""
+
+#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Assignee"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
+msgid "Assigning..."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Assignment"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Assignment Completed"
+msgstr ""
+
+#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
+#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assignment Days"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Tools Workspace
+#. Label of a shortcut in the Tools Workspace
+#. Label of the assignment_rule (Link) field in DocType 'ToDo'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json
+msgid "Assignment Rule"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+msgid "Assignment Rule Day"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+msgid "Assignment Rule User"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+msgid "Assignment Rule is not allowed on document type {0}"
+msgstr ""
+
+#. Label of the assignment_rules_section (Section Break) field in DocType
+#. 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assignment Rules"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:153
+msgid "Assignment Update on {0}"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:78
+msgid "Assignment for {0} {1}"
+msgstr ""
+
+#: frappe/desk/doctype/todo/todo.py:62
+msgid "Assignment of {0} removed by {1}"
+msgstr ""
+
+#. Label of the enable_email_assignment (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
+msgid "Assignments"
+msgstr ""
+
+#. Label of the asynchronous (Check) field in DocType 'Workflow Transition
+#. Task'
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Asynchronous"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:697
+msgid "At least one column is required to show in the grid."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:73
+msgid "At least one field is required in Web Form Fields Table"
+msgstr ""
+
+#: frappe/core/doctype/data_export/data_export.js:44
+msgid "At least one field of Parent Document Type is mandatory"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15
+#: frappe/public/js/frappe/form/controls/attach.js:5
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Attach"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:155
+msgid "Attach Document Print"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Attach Image"
+msgstr ""
+
+#. Label of the attach_package (Attach) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
+msgid "Attach Package"
+msgstr ""
+
+#. Label of the attach_print (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Attach Print"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
+msgid "Attach a web link"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
+msgid "Attach files / urls and add in table."
+msgstr ""
+
+#. Label of the attached_file (Code) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Attached File"
+msgstr ""
+
+#. Label of the attached_to_doctype (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Attached To DocType"
+msgstr ""
+
+#. Label of the attached_to_field (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Attached To Field"
+msgstr ""
+
+#. Label of the attached_to_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Attached To Name"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:152
+msgid "Attached To Name must be a string or an integer"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Attachment"
+msgstr ""
+
+#. Label of the attachment_limit (Int) field in DocType 'Email Account'
+#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Attachment Limit (MB)"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:338
+#: frappe/public/js/frappe/form/sidebar/attachments.js:36
+msgid "Attachment Limit Reached"
+msgstr ""
+
+#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Attachment Link"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Attachment Removed"
+msgstr ""
+
+#. Label of the attachments (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:113
+msgid "Attachments"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:119
+msgid "Attempting Connection to QZ Tray..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:135
+msgid "Attempting to launch QZ Tray..."
+msgstr ""
+
+#: frappe/www/attribution.html:9
+msgid "Attribution"
+msgstr ""
+
+#. Name of a report
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
+msgid "Audit System Hooks"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/audit_trail/audit_trail.json
+msgid "Audit Trail"
+msgstr ""
+
+#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Auth URL Data"
+msgstr ""
+
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:96
+msgid "Auth URL data should be valid JSON"
+msgstr ""
+
+#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authenticate as Service Principal"
+msgstr ""
+
+#. Label of the authentication_column (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the authentication_credential_section (Section Break) field in
+#. DocType 'Push Notification Settings'
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Authentication"
+msgstr ""
+
+#: frappe/www/qrcode.html:19
+msgid "Authentication Apps you can use are:"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:339
+msgid "Authentication failed while receiving emails from Email Account: {0}."
+msgstr ""
+
+#. Label of the author (Data) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Author"
+msgstr ""
+
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Calendar'
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Contacts'
+#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization
+#. Code'
+#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Authorization Code"
+msgstr ""
+
+#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Authorization URI"
+msgstr ""
+
+#: frappe/templates/includes/oauth_confirmation.html:35
+msgid "Authorization error for {}."
+msgstr ""
+
+#. Label of the authorize_api_access (Button) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authorize API Access"
+msgstr ""
+
+#. Label of the authorize_api_indexing_access (Button) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Authorize API Indexing Access"
+msgstr ""
+
+#. Label of the authorize_google_calendar_access (Button) field in DocType
+#. 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Authorize Google Calendar Access"
+msgstr ""
+
+#. Label of the authorize_google_contacts_access (Button) field in DocType
+#. 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Authorize Google Contacts Access"
+msgstr ""
+
+#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Authorize URL"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Authorized"
+msgstr ""
+
+#: frappe/www/attribution.html:20
+msgid "Authors"
+msgstr ""
+
+#: frappe/www/attribution.html:37
+msgid "Authors / Maintainers"
+msgstr ""
+
+#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
+#. Provider Settings'
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+msgid "Auto"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Auto Email Report"
+msgstr ""
+
+#. Label of the autoname (Data) field in DocType 'DocType'
+#. Label of the autoname (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Auto Name"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/utils/common.js:442
+msgid "Auto Repeat"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+msgid "Auto Repeat Day"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173
+msgid "Auto Repeat Day{0} {1} has been repeated."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479
+msgid "Auto Repeat Document Creation Failed"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
+msgid "Auto Repeat Schedule"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json
+msgid "Auto Repeat User"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/common.js:434
+msgid "Auto Repeat created for this document"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482
+msgid "Auto Repeat failed for {0}"
+msgstr ""
+
+#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Auto Reply"
+msgstr ""
+
+#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Auto Reply Message"
+msgstr ""
+
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
+msgid "Auto assignment failed: {0}"
+msgstr ""
+
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that are assigned to you"
+msgstr ""
+
+#. Label of the follow_shared_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that are shared with you"
+msgstr ""
+
+#. Label of the follow_liked_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that you Like"
+msgstr ""
+
+#. Label of the follow_commented_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that you comment on"
+msgstr ""
+
+#. Label of the follow_created_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that you create"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
+msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Autocomplete"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Autoincrement"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Automate processes and extend standard functionality using scripts and background jobs"
+msgstr ""
+
+#. Option for the 'Communication Type' (Select) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Automated Message"
+msgstr ""
+
+#. Option for the 'Desk Theme' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/theme_switcher.js:69
+msgid "Automatic"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:772
+msgid "Automatic Linking can be activated only for one Email Account."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:766
+msgid "Automatic Linking can be activated only if Incoming is enabled."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Automatically Assign Documents to Users"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:131
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr ""
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Automatically delete account within (hours)"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Automation"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/controls/password.js:88
+#: frappe/public/js/frappe/ui/group_by/group_by.js:21
+msgid "Average"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
+msgid "Average of {0}"
+msgstr ""
+
+#: frappe/utils/password_strength.py:130
+msgid "Avoid dates and years that are associated with you."
+msgstr ""
+
+#: frappe/utils/password_strength.py:124
+msgid "Avoid recent years."
+msgstr ""
+
+#: frappe/utils/password_strength.py:117
+msgid "Avoid sequences like abc or 6543 as they are easy to guess"
+msgstr ""
+
+#: frappe/utils/password_strength.py:124
+msgid "Avoid years that are associated with you."
+msgstr ""
+
+#. Label of the awaiting_password (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
+msgid "Awaiting Password"
+msgstr ""
+
+#. Label of the awaiting_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Awaiting password"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
+msgid "Awesome Work"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:353
+msgid "Awesome, now try making an entry yourself"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:9
+msgctxt "Number system"
+msgid "B"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B0"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B1"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B10"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B2"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B3"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B4"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B5"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B6"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B7"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B8"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B9"
+msgstr ""
+
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "BCC"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:87
+msgctxt "Email Recipients"
+msgid "BCC"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr ""
+
+#: frappe/templates/pages/integrations/gcalendar-success.html:13
+msgid "Back to Desk"
+msgstr ""
+
+#: frappe/www/404.html:26
+msgid "Back to Home"
+msgstr ""
+
+#: frappe/www/login.html:201 frappe/www/login.html:232
+msgid "Back to Login"
+msgstr ""
+
+#. Label of the background_color (Color) field in DocType 'Number Card'
+#. Label of the background_color (Color) field in DocType 'Social Link
+#. Settings'
+#. Label of the background_color (Link) field in DocType 'Website Theme'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Background Color"
+msgstr ""
+
+#. Label of the background_image (Attach Image) field in DocType 'Web Page
+#. Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "Background Image"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Label of the background_jobs_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
+msgid "Background Jobs"
+msgstr ""
+
+#. Label of the background_jobs_check (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Jobs Check"
+msgstr ""
+
+#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Background Jobs Queue"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:87
+msgid "Background Print (required for >25 documents)"
+msgstr ""
+
+#. Label of the background_workers (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the background_workers (Table) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Workers"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:28
+msgid "Backup Encryption Key"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.py:98
+msgid "Backup job is already queued. You will receive an email with the download link"
+msgstr ""
+
+#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the backups_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Backups"
+msgstr ""
+
+#. Label of the backups_size (Float) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Backups (MB)"
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
+msgid "Bad Cron Expression"
+msgstr ""
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Banker's Rounding"
+msgstr ""
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Banker's Rounding (legacy)"
+msgstr ""
+
+#. Label of the banner (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Banner"
+msgstr ""
+
+#. Label of the banner_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Banner HTML"
+msgstr ""
+
+#. Label of the banner_image (Attach Image) field in DocType 'User'
+#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Banner Image"
+msgstr ""
+
+#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Banner is above the Top Menu Bar."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Bar"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Barcode"
+msgstr ""
+
+#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Base Distinguished Name (DN)"
+msgstr ""
+
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Base URL"
+msgstr ""
+
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:286
+#: frappe/printing/page/print/print.js:340
+msgid "Based On"
+msgstr ""
+
+#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Based on Field"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Based on Permissions For User"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Basic"
+msgstr ""
+
+#. Label of the section_break_3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Basic Info"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:63
+#: frappe/public/js/frappe/ui/filters/filter.js:69
+msgid "Before"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Cancel"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Delete"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Insert"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Print"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Save"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Save (Submitted Document)"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Submit"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Validate"
+msgstr ""
+
+#. Option for the 'Level' (Select) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Beginner"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:29
+msgid "Beginning with"
+msgstr ""
+
+#. Label of the beta (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Beta"
+msgstr ""
+
+#: frappe/utils/password_strength.py:73
+msgid "Better add a few more letters or another word"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:27
+msgid "Between"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Billing"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:27
+msgid "Billing Contact"
+msgstr ""
+
+#. Label of the binary_logging (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Binary Logging"
+msgstr ""
+
+#. Label of the bio (Small Text) field in DocType 'User'
+#. Label of the bio (Small Text) field in DocType 'About Us Team Member'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "Bio"
+msgstr ""
+
+#. Label of the birth_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Birth Date"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:41
+msgid "Blank Template"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/block_module/block_module.json
+msgid "Block Module"
+msgstr ""
+
+#. Label of the block_modules (Table) field in DocType 'Module Profile'
+#. Label of the block_modules (Table) field in DocType 'User'
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json
+msgid "Block Modules"
+msgstr ""
+
+#. Label of the blocked (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Blocked"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Blue"
+msgstr ""
+
+#. Label of the bold (Check) field in DocType 'DocField'
+#. Label of the bold (Check) field in DocType 'Custom Field'
+#. Label of the bold (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Bold"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Bot"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:126
+msgid "Both DocType and Name required"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:24
+#: frappe/templates/includes/login/login.js:96
+msgid "Both login and password required"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
+msgid "Bottom"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
+msgid "Bottom Center"
+msgstr ""
+
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
+msgid "Bottom Left"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
+msgid "Bottom Right"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Bounced"
+msgstr ""
+
+#. Label of the brand (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand"
+msgstr ""
+
+#. Label of the brand_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand HTML"
+msgstr ""
+
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand Image"
+msgstr ""
+
+#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Brand Logo"
+msgstr ""
+
+#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
+"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
+msgstr ""
+
+#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
+#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Breadcrumbs"
+msgstr ""
+
+#. Label of the browser (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:36
+msgid "Browser"
+msgstr ""
+
+#. Label of the browser_version (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+msgid "Browser Version"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:19
+msgid "Browser not supported"
+msgstr ""
+
+#. Label of the brute_force_security (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Brute Force Security"
+msgstr ""
+
+#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Bufferpool Size"
+msgstr ""
+
+#. Name of a Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:18
+msgid "Build {0}"
+msgstr ""
+
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr ""
+
+#. Label of the bulk_actions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Bulk Actions"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:142
+msgid "Bulk Delete"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:321
+msgid "Bulk Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1190
+msgid "Bulk Edit {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:637
+msgid "Bulk Operation Failed"
+msgstr ""
+
+#: frappe/desk/reportview.py:641
+msgid "Bulk Operation Successful"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+msgid "Bulk Update"
+msgstr ""
+
+#: frappe/model/workflow.py:310
+msgid "Bulk approval only support up to 500 documents."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:56
+msgid "Bulk operation is enqueued in background."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+msgid "Bulk operations only support up to 500 documents."
+msgstr ""
+
+#: frappe/model/workflow.py:299
+msgid "Bulk {0} is enqueued in background."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Button"
+msgstr ""
+
+#. Label of the button_gradients (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Button Gradients"
+msgstr ""
+
+#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Button Rounded Corners"
+msgstr ""
+
+#. Label of the button_shadows (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Button Shadows"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "By \"Naming Series\" field"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:111
+#: frappe/website/doctype/web_page/web_page.js:118
+msgid "By default the title is used as meta title, adding a value here will override it."
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "By fieldname"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "By script"
+msgstr ""
+
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
+msgstr ""
+
+#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
+msgstr ""
+
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "C5E"
+msgstr ""
+
+#: frappe/templates/print_formats/standard_macros.html:220
+msgid "CANCELLED"
+msgstr ""
+
+#. Label of the cc (Code) field in DocType 'Communication'
+#. Label of the cc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "CC"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:77
+msgctxt "Email Recipients"
+msgid "CC"
+msgstr ""
+
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "CMD"
+msgstr ""
+
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "COLOR PICKER"
+msgstr ""
+
+#. Label of the css_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the css (Code) field in DocType 'Print Style'
+#. Label of the css (Code) field in DocType 'Web Page'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "CSS"
+msgstr ""
+
+#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
+msgid "CSS Class"
+msgstr ""
+
+#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "CSS selector for the element you want to highlight."
+msgstr ""
+
+#. Option for the 'File Type' (Select) field in DocType 'Data Export'
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "CSV"
+msgstr ""
+
+#. Label of the cache_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Cache"
+msgstr ""
+
+#: frappe/sessions.py:35
+msgid "Cache Cleared"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
+msgid "Calculate"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Calendar"
+msgstr ""
+
+#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Calendar Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/public/js/frappe/list/base_list.js:207
+msgid "Calendar View"
+msgstr ""
+
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/contacts/doctype/contact/contact.js:55
+#: frappe/desk/doctype/event/event.json
+msgid "Call"
+msgstr ""
+
+#. Label of the call_to_action (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Call To Action"
+msgstr ""
+
+#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Call To Action URL"
+msgstr ""
+
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Callback Message"
+msgstr ""
+
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Callback Title"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
+msgid "Camera"
+msgstr ""
+
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/public/js/frappe/utils/utils.js:1766
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
+msgid "Campaign"
+msgstr ""
+
+#. Label of the campaign_description (Small Text) field in DocType 'UTM
+#. Campaign'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+msgid "Campaign Description (Optional)"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:4
+#: frappe/public/js/frappe/form/templates/set_sharing.html:50
+msgid "Can Read"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:7
+#: frappe/public/js/frappe/form/templates/set_sharing.html:53
+msgid "Can Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:6
+#: frappe/public/js/frappe/form/templates/set_sharing.html:52
+msgid "Can Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:5
+#: frappe/public/js/frappe/form/templates/set_sharing.html:51
+msgid "Can Write"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:410
+msgid "Can not rename as column {0} is already present on DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1164
+msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
+msgstr ""
+
+#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Can only list down the document types which has been linked to the User document type."
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:48
+msgid "Can't follow since changes are not tracked."
+msgstr ""
+
+#: frappe/model/rename_doc.py:366
+msgid "Can't rename {0} to {1} because {0} doesn't exist."
+msgstr ""
+
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:131
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_invitation/user_invitation.js:17
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
+msgid "Cancel"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2206
+msgctxt "Button in list view actions menu"
+msgid "Cancel"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:68
+msgctxt "Secondary button in warning dialog"
+msgid "Cancel"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:979
+msgid "Cancel All"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:966
+msgid "Cancel All Documents"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2211
+msgctxt "Title of confirmation dialog"
+msgid "Cancel {0} documents?"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'ToDo'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/form/save.py:64
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/model/indicator.js:78
+#: frappe/public/js/frappe/ui/filters/filter.js:540
+msgid "Cancelled"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:52
+msgid "Cancelled Document restored as Draft"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:13
+msgctxt "Freeze message while cancelling a document"
+msgid "Cancelling"
+msgstr ""
+
+#: frappe/desk/form/linked_with.py:381
+msgid "Cancelling documents"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+msgid "Cancelling {0}"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.py:265
+msgid "Cannot Download Report due to insufficient permissions"
+msgstr ""
+
+#: frappe/client.py:452
+msgid "Cannot Fetch Values"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.py:156
+msgid "Cannot Remove"
+msgstr ""
+
+#: frappe/model/base_document.py:1222
+msgid "Cannot Update After Submit"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:646
+msgid "Cannot access file path {0}"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/utils.js:183
+msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:110
+msgid "Cannot cancel before submitting. See Transition {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:294
+msgid "Cannot cancel {0}."
+msgstr ""
+
+#: frappe/model/document.py:1017
+msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
+msgstr ""
+
+#: frappe/model/document.py:1031
+msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/utils.js:170
+msgid "Cannot change state of Cancelled Document ({0} State)"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:99
+msgid "Cannot change state of Cancelled Document. Transition row {0}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1154
+msgid "Cannot change to/from autoincrement autoname in Customize Form"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.py:169
+msgid "Cannot create a {0} against a child document: {1}"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:272
+msgid "Cannot create private workspace of other users"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:165
+msgid "Cannot delete Home and Attachments folders"
+msgstr ""
+
+#: frappe/model/delete_doc.py:419
+msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:369
+msgid "Cannot delete standard action. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:391
+msgid "Cannot delete standard document state."
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:321
+msgid "Cannot delete standard field {0}. You can hide it instead."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:38
+#: frappe/public/js/form_builder/components/Section.vue:117
+#: frappe/public/js/form_builder/components/Section.vue:190
+#: frappe/public/js/form_builder/components/Tabs.vue:56
+msgid "Cannot delete standard field. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:347
+msgid "Cannot delete standard link. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:313
+msgid "Cannot delete system generated field {0}. You can hide it instead."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:215
+msgid "Cannot delete {0}"
+msgstr ""
+
+#: frappe/utils/nestedset.py:312
+msgid "Cannot delete {0} as it has child nodes"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard/dashboard.py:48
+msgid "Cannot edit Standard Dashboards"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:202
+msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
+msgid "Cannot edit Standard charts"
+msgstr ""
+
+#: frappe/core/doctype/report/report.py:72
+msgid "Cannot edit a standard report. Please duplicate and create a new report"
+msgstr ""
+
+#: frappe/model/document.py:1037
+msgid "Cannot edit cancelled document"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
+msgid "Cannot edit filters for standard charts"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:289
+#: frappe/desk/doctype/number_card/number_card.js:381
+msgid "Cannot edit filters for standard number cards"
+msgstr ""
+
+#: frappe/client.py:166
+msgid "Cannot edit standard fields"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131
+msgid "Cannot enable {0} for a non-submittable doctype"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:264
+msgid "Cannot find file {} on disk"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:586
+msgid "Cannot get file contents of a Folder"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:884
+msgid "Cannot have multiple printers mapped to a single print format."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1134
+msgid "Cannot import table with more than 5000 rows."
+msgstr ""
+
+#: frappe/model/document.py:1105
+msgid "Cannot link cancelled document: {0}"
+msgstr ""
+
+#: frappe/model/mapper.py:175
+msgid "Cannot map because following condition fails:"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:971
+msgid "Cannot match column {0} with any field"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:176
+msgid "Cannot move row"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:932
+msgid "Cannot remove ID field"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.py:132
+msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:235
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:67
+msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:291
+msgid "Cannot submit {0}."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
+msgid "Cannot update {0}"
+msgstr ""
+
+#: frappe/model/db_query.py:1136
+msgid "Cannot use sub-query here."
+msgstr ""
+
+#: frappe/model/db_query.py:1168
+msgid "Cannot use {0} in order/group by"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:297
+msgid "Cannot {0} {1}."
+msgstr ""
+
+#: frappe/utils/password_strength.py:181
+msgid "Capitalization doesn't help very much."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:294
+msgid "Capture"
+msgstr ""
+
+#. Label of the card (Link) field in DocType 'Number Card Link'
+#: frappe/desk/doctype/number_card_link/number_card_link.json
+msgid "Card"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+msgid "Card Break"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:262
+msgid "Card Label"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:262
+msgid "Card Links"
+msgstr ""
+
+#. Label of the cards (Table) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
+msgid "Cards"
+msgstr ""
+
+#. Label of the category (Data) field in DocType 'Desktop Icon'
+#. Label of the category (Link) field in DocType 'Help Article'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/views/interaction.js:72
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Category"
+msgstr ""
+
+#. Label of the category_description (Text) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
+msgid "Category Description"
+msgstr ""
+
+#. Label of the category_name (Data) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
+msgid "Category Name"
+msgstr ""
+
+#. Option for the 'Align' (Select) field in DocType 'Letter Head'
+#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Center"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:16
+msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
+#: frappe/tests/test_translate.py:111
+msgid "Change"
+msgstr ""
+
+#: frappe/tests/test_translate.py:112
+msgctxt "Coins"
+msgid "Change"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38
+msgid "Change Image"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Change Label (via Custom Translation)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
+msgid "Change Letter Head"
+msgstr ""
+
+#. Label of the change_password (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Change Password"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
+msgid "Change Print Format"
+msgstr ""
+
+#. Description of the 'Update Series Counter' (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Change the starting / current sequence number of an existing series.
\n\n"
+"Warning: Incorrectly updating counters can prevent documents from getting created."
+msgstr ""
+
+#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed at"
+msgstr ""
+
+#. Label of the changed_by (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed by"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Changelog Feed"
+msgstr ""
+
+#. Label of the changed_values (HTML) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changes"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.js:5
+msgid "Changing any setting will reflect on all the email accounts associated with this domain."
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.js:67
+msgid "Changing rounding method on site with data can result in unexpected behaviour."
+msgstr ""
+
+#. Label of the channel (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Channel"
+msgstr ""
+
+#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Chart"
+msgstr ""
+
+#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+msgid "Chart Configuration"
+msgstr ""
+
+#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
+#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/public/js/frappe/views/reports/query_report.js:289
+#: frappe/public/js/frappe/widgets/widget_dialog.js:137
+msgid "Chart Name"
+msgstr ""
+
+#. Label of the chart_options (Code) field in DocType 'Dashboard'
+#. Label of the chart_options_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Chart Options"
+msgstr ""
+
+#. Label of the source (Link) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Chart Source"
+msgstr ""
+
+#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/views/reports/report_view.js:510
+msgid "Chart Type"
+msgstr ""
+
+#. Label of the charts (Table) field in DocType 'Dashboard'
+#. Label of the charts (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Charts"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Chat"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Check"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:99
+msgid "Check Request URL"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485
+msgid "Check the Error Log for more information: {0}"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:147
+msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
+msgstr ""
+
+#. Description of the 'User must always select' (Check) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
+msgstr ""
+
+#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:235
+msgid "Checking one moment"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:140
+msgid "Checking this will enable tracking page views for blogs, web pages, etc."
+msgstr ""
+
+#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
+#. DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Checking this will hide custom doctypes and reports cards in Links section"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:78
+msgid "Checking this will publish the page on your website and it'll be visible to everyone."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:104
+msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
+msgstr ""
+
+#: frappe/www/list.py:85
+msgid "Child DocTypes are not allowed"
+msgstr ""
+
+#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Child Doctype"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1648
+msgid "Child Table {0} for field {1}"
+msgstr ""
+
+#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:53
+msgid "Child Tables are shown as a Grid in other DocTypes"
+msgstr ""
+
+#: frappe/database/query.py:662
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
+msgid "Choose Existing Card or create New Card"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:571
+msgid "Choose a block or continue typing"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
+#: frappe/public/js/frappe/form/controls/color.js:5
+msgid "Choose a color"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
+#: frappe/public/js/frappe/form/controls/icon.js:5
+msgid "Choose an icon"
+msgstr ""
+
+#. Description of the 'Two Factor Authentication method' (Select) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Choose authentication method to be used by all users"
+msgstr ""
+
+#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "City"
+msgstr ""
+
+#. Label of the city (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "City/Town"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:12
+#: frappe/public/js/frappe/form/controls/attach.js:16
+msgid "Clear"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:438
+msgid "Clear & Add Template"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:114
+msgid "Clear & Add template"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2112
+msgctxt "Button in list view actions menu"
+msgid "Clear Assignment"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:287
+msgid "Clear Cache and Reload"
+msgstr ""
+
+#: frappe/core/doctype/error_log/error_log_list.js:12
+msgid "Clear Error Logs"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Clear Filters"
+msgstr ""
+
+#. Label of the days (Int) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
+msgid "Clear Logs After (days)"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:144
+msgid "Clear User Permissions"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:439
+msgid "Clear the email message and add the template"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.py:215
+msgid "Clearing end date, as it cannot be in the past for published pages."
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
+msgid "Click On Customize to add your first widget"
+msgstr ""
+
+#: frappe/templates/emails/user_invitation.html:8
+msgid "Click below to get started:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:154
+msgid "Click here"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538
+msgid "Click on a file to select it."
+msgstr ""
+
+#: frappe/templates/emails/login_with_email_link.html:19
+msgid "Click on the button to log in to {0}"
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:2
+msgid "Click on the link below to approve the request"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:7
+msgid "Click on the link below to complete your registration and set a new password"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:3
+msgid "Click on the link below to download your data"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:4
+msgid "Click on the link below to verify your request"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
+#: frappe/website/doctype/website_settings/website_settings.py:161
+msgid "Click on {0} to generate Refresh Token."
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:222
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
+msgid "Click table to edit"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:419
+msgid "Click to Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:278
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:741
+msgid "Click to sort by {0}"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Clicked"
+msgstr ""
+
+#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "Client"
+msgstr ""
+
+#. Label of the client_code_section (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Client Code"
+msgstr ""
+
+#. Label of the sb_client_credentials_section (Section Break) field in DocType
+#. 'Connected App'
+#. Label of the client_credentials (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client Credentials"
+msgstr ""
+
+#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
+#. Label of the client_id (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client ID"
+msgstr ""
+
+#. Label of the client_id (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Client Id"
+msgstr ""
+
+#. Label of the client_information (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client Information"
+msgstr ""
+
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#. Label of the client_script (Code) field in DocType 'DocType Layout'
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/website/doctype/web_page/web_page.js:103
+msgid "Client Script"
+msgstr ""
+
+#. Label of the client_secret (Password) field in DocType 'Connected App'
+#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#. Label of the client_secret (Password) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client Secret"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client URLs"
+msgstr ""
+
+#. Label of the client_script (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Client script"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:39
+#: frappe/desk/doctype/todo/todo.js:23
+#: frappe/public/js/frappe/form/form_tour.js:17
+#: frappe/public/js/frappe/ui/messages.js:251
+#: frappe/website/js/bootstrap-4.js:24
+msgid "Close"
+msgstr ""
+
+#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Close Condition"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+msgid "Close properties"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Activity Log'
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'ToDo'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+msgid "Closed"
+msgstr ""
+
+#: frappe/templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
+msgid "Cmd+Enter to add comment"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the code (Data) field in DocType 'Country'
+#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Code"
+msgstr ""
+
+#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Code Challenge"
+msgstr ""
+
+#. Label of the code_editor_type (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Code Editor Type"
+msgstr ""
+
+#. Label of the code_challenge_method (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+msgid "Code challenge method"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:276
+#: frappe/public/js/frappe/ui/sidebar.html:11
+#: frappe/public/js/frappe/widgets/base_widget.js:159
+msgid "Collapse"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/code.js:184
+msgctxt "Shrink code field."
+msgid "Collapse"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
+#: frappe/public/js/frappe/views/treeview.js:123
+msgid "Collapse All"
+msgstr ""
+
+#. Label of the collapsible (Check) field in DocType 'DocField'
+#. Label of the collapsible (Check) field in DocType 'Custom Field'
+#. Label of the collapsible (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Collapsible"
+msgstr ""
+
+#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Collapsible Depends On"
+msgstr ""
+
+#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Collapsible Depends On (JS)"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the color (Data) field in DocType 'DocType'
+#. Label of the color (Select) field in DocType 'DocType State'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the color (Color) field in DocType 'Dashboard Chart'
+#. Label of the color (Color) field in DocType 'Dashboard Chart Field'
+#. Label of the color (Data) field in DocType 'Desktop Icon'
+#. Label of the color (Color) field in DocType 'Event'
+#. Label of the color (Color) field in DocType 'Number Card'
+#. Label of the color (Color) field in DocType 'ToDo'
+#. Label of the color (Color) field in DocType 'Workspace Shortcut'
+#. Name of a DocType
+#. Label of the color (Color) field in DocType 'Color'
+#. Label of the color (Color) field in DocType 'Social Link Settings'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1241
+#: frappe/public/js/frappe/widgets/widget_dialog.js:546
+#: frappe/public/js/frappe/widgets/widget_dialog.js:694
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Color"
+msgstr ""
+
+#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/public/js/form_builder/components/Section.vue:270
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
+msgid "Column"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:28
+msgid "Column 1"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
+msgid "Column {0} already exist."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Column Break"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:140
+msgid "Column Labels:"
+msgstr ""
+
+#. Label of the column_name (Data) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/data_export/exporter.py:25
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Column Name"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:45
+msgid "Column Name cannot be empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:455
+msgid "Column Width"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:662
+msgid "Column width cannot be zero."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr ""
+
+#. Label of the columns (Int) field in DocType 'DocField'
+#. Label of the columns_section (Section Break) field in DocType 'Report'
+#. Label of the columns (Table) field in DocType 'Report'
+#. Label of the columns (Int) field in DocType 'Custom Field'
+#. Label of the columns (Int) field in DocType 'Customize Form Field'
+#. Label of the columns (Table) field in DocType 'Kanban Board'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+msgid "Columns"
+msgstr ""
+
+#. Label of the columns (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Columns / Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
+msgid "Columns based on"
+msgstr ""
+
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
+msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Comm10E"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/version/version_view.html:3
+#: frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:237
+#: frappe/templates/includes/comments/comments.html:34
+msgid "Comment"
+msgstr ""
+
+#. Label of the comment_by (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Comment By"
+msgstr ""
+
+#. Label of the comment_email (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Comment Email"
+msgstr ""
+
+#. Label of the comment_type (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+msgid "Comment Type"
+msgstr ""
+
+#: frappe/desk/form/utils.py:58
+msgid "Comment can only be edited by the owner"
+msgstr ""
+
+#: frappe/desk/form/utils.py:75
+msgid "Comment publicity can only be updated by the original author or a System Manager."
+msgstr ""
+
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:129
+msgid "Comments"
+msgstr ""
+
+#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Comments and Communications will be associated with this linked document"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:52
+msgid "Comments cannot have links or email addresses"
+msgstr ""
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Commercial Rounding"
+msgstr ""
+
+#. Label of the commit (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Commit"
+msgstr ""
+
+#. Label of the committed (Check) field in DocType 'Console Log'
+#: frappe/desk/doctype/console_log/console_log.json
+msgid "Committed"
+msgstr ""
+
+#: frappe/utils/password_strength.py:176
+msgid "Common names and surnames are easy to guess."
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Communication Type' (Select) field in DocType
+#. 'Communication'
+#. Label of the communication (Data) field in DocType 'Email Flag Queue'
+#. Label of the communication (Link) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119
+msgid "Communication"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/communication_link/communication_link.json
+msgid "Communication Link"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Communication Logs"
+msgstr ""
+
+#. Label of the communication_type (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Communication Type"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
+msgid "Communication secret not set"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/company_history/company_history.json
+#: frappe/www/about.html:29
+msgid "Company History"
+msgstr ""
+
+#. Label of the company_introduction (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Company Introduction"
+msgstr ""
+
+#. Label of the company_name (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Company Name"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.js:14
+#: frappe/custom/doctype/client_script/client_script.js:56
+#: frappe/public/js/frappe/utils/diffview.js:28
+msgid "Compare Versions"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.py:159
+msgid "Compilation warning"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.py:123
+msgid "Compiled Successfully"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/www/complete_signup.html:21
+msgid "Complete"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
+msgid "Complete By"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:479
+#: frappe/templates/emails/new_user.html:10
+msgid "Complete Registration"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/slides.js:355
+msgctxt "Finish the setup wizard"
+msgid "Complete Setup"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/utils/goal.py:117
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Completed"
+msgstr ""
+
+#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Completed By Role"
+msgstr ""
+
+#. Label of the completed_by (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Completed By User"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Web Template'
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Component"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:184
+msgid "Compose Email"
+msgstr ""
+
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Compressed"
+msgstr ""
+
+#. Label of the condition (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the condition (Code) field in DocType 'Navbar Item'
+#. Label of the condition (Small Text) field in DocType 'Bulk Update'
+#. Label of the condition (Code) field in DocType 'Notification'
+#. Label of the condition (Data) field in DocType 'Notification Recipient'
+#. Label of the condition (Small Text) field in DocType 'Webhook'
+#. Label of the condition (Code) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition JSON"
+msgstr ""
+
+#. Label of the condition_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Type"
+msgstr ""
+
+#. Label of the condition_description (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition description"
+msgstr ""
+
+#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
+#. Label of the conditions (Section Break) field in DocType 'Workflow
+#. Transition'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Conditions"
+msgstr ""
+
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
+#. Label of the configuration_section (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Configuration"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:492
+msgid "Configure Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:407
+msgid "Configure Columns"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
+#. Description of the 'Amended Documents' (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.
\n\n"
+"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n"
+"Default Naming will make the amended document to behave same as new documents."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure various aspects of how document naming works like naming series, current counter."
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:66
+msgid "Confirm"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:31
+msgctxt "Title of confirmation dialog"
+msgid "Confirm"
+msgstr ""
+
+#: frappe/integrations/oauth2.py:138
+msgid "Confirm Access"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
+msgid "Confirm Deletion of Account"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:184
+msgid "Confirm New Password"
+msgstr ""
+
+#: frappe/www/update-password.html:55
+msgid "Confirm Password"
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
+msgid "Confirm Request"
+msgstr ""
+
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Confirmation Email Template"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
+msgid "Confirmed"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
+msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.js:20
+msgid "Connect to {}"
+msgstr ""
+
+#. Label of the connected_app (Link) field in DocType 'Email Account'
+#. Name of a DocType
+#. Label of the connected_app (Link) field in DocType 'Token Cache'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Connected App"
+msgstr ""
+
+#. Label of the connected_user (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Connected User"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:125
+#: frappe/public/js/frappe/form/print_utils.js:149
+msgid "Connected to QZ Tray!"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:36
+msgid "Connection Lost"
+msgstr ""
+
+#: frappe/templates/pages/integrations/gcalendar-success.html:3
+msgid "Connection Success"
+msgstr ""
+
+#: frappe/public/js/frappe/dom.js:446
+msgid "Connection lost. Some features might not work."
+msgstr ""
+
+#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
+#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the connections_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:54
+msgid "Connections"
+msgstr ""
+
+#. Label of the console (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Console"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/console_log/console_log.json
+msgid "Console Log"
+msgstr ""
+
+#: frappe/desk/doctype/console_log/console_log.py:24
+msgid "Console Logs can not be deleted"
+msgstr ""
+
+#. Label of the constraints_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Constraints"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.js:113
+msgid "Contact"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:812
+msgid "Contact / email not found. Did not add attendee for -
{0}"
+msgstr ""
+
+#. Label of the sb_01 (Section Break) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Contact Details"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/contact_email/contact_email.json
+msgid "Contact Email"
+msgstr ""
+
+#. Label of the phone_nos (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Contact Numbers"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
+msgid "Contact Phone"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
+msgid "Contact Synced with Google Contacts."
+msgstr ""
+
+#: frappe/www/contact.html:4
+msgid "Contact Us"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/workspace/website/website.json
+msgid "Contact Us Settings"
+msgstr ""
+
+#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
+msgstr ""
+
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
+#: frappe/utils/change_log.py:362
+msgid "Contains {0} security fix"
+msgstr ""
+
+#: frappe/utils/change_log.py:360
+msgid "Contains {0} security fixes"
+msgstr ""
+
+#. Label of the content (HTML Editor) field in DocType 'Comment'
+#. Label of the content (Text Editor) field in DocType 'Note'
+#. Label of the content (Long Text) field in DocType 'Workspace'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. Label of the sb1 (Section Break) field in DocType 'Web Page'
+#. Label of the content (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/utils/utils.js:1782
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:41
+msgid "Content"
+msgstr ""
+
+#. Label of the content_hash (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Content Hash"
+msgstr ""
+
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Content Type"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:86
+msgid "Content data shoud be a list"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:91
+msgid "Content type for building the page"
+msgstr ""
+
+#. Label of the context (Data) field in DocType 'Translation'
+#. Label of the context_section (Section Break) field in DocType 'Web Page'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Context"
+msgstr ""
+
+#. Label of the context_script (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Context Script"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:204
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:232
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:272
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:312
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:361
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:383
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:423
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:531
+msgid "Continue"
+msgstr ""
+
+#. Label of the contributed (Check) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contributed"
+msgstr ""
+
+#. Label of the contribution_docname (Data) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contribution Document Name"
+msgstr ""
+
+#. Label of the contribution_status (Select) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contribution Status"
+msgstr ""
+
+#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1036
+msgid "Copied to clipboard."
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93
+msgid "Copy Link"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:29
+msgid "Copy embed code"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:621
+msgid "Copy error to clipboard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:507
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:487
+msgid "Copy token to clipboard"
+msgstr ""
+
+#. Label of the copyright (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Copyright"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:125
+msgid "Core DocTypes cannot be customized."
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
+msgid "Core Modules {0} cannot be searched in Global Search."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:660
+msgid "Correct version :"
+msgstr ""
+
+#: frappe/email/smtp.py:78
+msgid "Could not connect to outgoing email server"
+msgstr ""
+
+#: frappe/model/document.py:1101
+msgid "Could not find {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:933
+msgid "Could not map column {0} to field {1}"
+msgstr ""
+
+#: frappe/database/query.py:566
+msgid "Could not parse field: {0}"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up:"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:383
+msgid "Couldn't save, please check the data you have entered"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Function' (Select) field in DocType 'Number Card'
+#. Label of the count (Int) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:19
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
+#: frappe/workflow/doctype/workflow/workflow.js:162
+msgid "Count"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
+msgid "Count Customizations"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
+#. Shortcut'
+#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
+msgid "Count Filter"
+msgstr ""
+
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr ""
+
+#. Label of the counter (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Counter"
+msgstr ""
+
+#. Label of the country (Link) field in DocType 'Address'
+#. Label of the country (Link) field in DocType 'Address Template'
+#. Label of the country (Link) field in DocType 'System Settings'
+#. Name of a DocType
+#. Label of the country (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Country"
+msgstr ""
+
+#: frappe/utils/__init__.py:132
+msgid "Country Code Required"
+msgstr ""
+
+#. Label of the country_name (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "Country Name"
+msgstr ""
+
+#. Label of the county (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "County"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:23
+#: frappe/public/js/frappe/utils/number_systems.js:45
+msgctxt "Number system"
+msgid "Cr"
+msgstr ""
+
+#. Label of the create (Check) field in DocType 'Custom DocPerm'
+#. Label of the create (Check) field in DocType 'DocPerm'
+#. Label of the create (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/communication/communication.js:117
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/public/js/frappe/form/reminders.js:49
+#: frappe/public/js/frappe/views/file/file_view.js:112
+#: frappe/public/js/frappe/views/interaction.js:18
+#: frappe/public/js/frappe/views/reports/query_report.js:1273
+#: frappe/public/js/frappe/views/workspace/workspace.js:469
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+msgid "Create"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:103
+msgid "Create & Continue"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
+msgid "Create Address"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
+msgid "Create Card"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1200
+msgid "Create Chart"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:62
+msgid "Create Child Doctype"
+msgstr ""
+
+#. Label of the create_contact (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Create Contacts from Incoming Emails"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Create Entry"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
+msgid "Create Letter Head"
+msgstr ""
+
+#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Create Log"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
+#: frappe/public/js/frappe/views/treeview.js:378
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:41
+msgid "Create New"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:514
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:101
+msgid "Create New DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:204
+msgid "Create New Kanban Board"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:264
+msgid "Create User Email"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16
+msgid "Create a New Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/reminders.js:9
+msgid "Create a Reminder"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
+msgid "Create a new ..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
+msgid "Create a new record"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:315
+#: frappe/public/js/frappe/form/controls/link.js:317
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:506
+#: frappe/public/js/frappe/web_form/web_form_list.js:226
+msgid "Create a new {0}"
+msgstr ""
+
+#: frappe/www/login.html:162
+msgid "Create a {0} Account"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+msgid "Create or Edit Print Format"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
+msgid "Create or Edit Workflow"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:509
+msgid "Create your first {0}"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:16
+msgid "Create your workflow visually using the Workflow Builder."
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/views/file/file_view.js:370
+msgid "Created"
+msgstr ""
+
+#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Created At"
+msgstr ""
+
+#: frappe/model/meta.py:58
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73
+#: frappe/public/js/frappe/model/meta.js:206
+#: frappe/public/js/frappe/model/model.js:123
+msgid "Created By"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:65
+msgid "Created Custom Field {0} in {1}"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
+#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53
+#: frappe/public/js/frappe/model/meta.js:201
+#: frappe/public/js/frappe/model/model.js:125
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479
+msgid "Created On"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:517
+#: frappe/public/js/frappe/views/treeview.js:393
+msgid "Creating {0}"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
+msgid "Creation of this document is only permitted in developer mode."
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Cron"
+msgstr ""
+
+#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
+#. Label of the cron_format (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Cron Format"
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
+msgid "Cron format is required for job types with Cron frequency."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
+msgid "Crop"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Down"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:32
+msgid "Ctrl+Enter to add comment"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Label of the currency (Link) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the currency (Link) field in DocType 'Dashboard Chart'
+#. Label of the currency (Link) field in DocType 'Number Card'
+#. Name of a DocType
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:414
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Currency"
+msgstr ""
+
+#. Label of the currency_name (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency Name"
+msgstr ""
+
+#. Label of the currency_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Currency Precision"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency list stores the currency value, its symbol and fraction unit"
+msgstr ""
+
+#. Option for the 'Address Type' (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Current"
+msgstr ""
+
+#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Current Job ID"
+msgstr ""
+
+#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Current Value"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Current status"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_viewers.js:5
+msgid "Currently Viewing"
+msgstr ""
+
+#. Label of the custom (Check) field in DocType 'DocType Action'
+#. Label of the custom (Check) field in DocType 'DocType Link'
+#. Label of the custom (Check) field in DocType 'DocType State'
+#. Label of the custom (Check) field in DocType 'Module Def'
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Label of the custom (Check) field in DocType 'Desktop Icon'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_type/user_type_list.js:7
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/frappe/form/reminders.js:20
+msgid "Custom"
+msgstr ""
+
+#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Custom Base URL"
+msgstr ""
+
+#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
+#. Block'
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+msgid "Custom Block Name"
+msgstr ""
+
+#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the custom_blocks (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Custom Blocks"
+msgstr ""
+
+#. Label of the css (Code) field in DocType 'Print Format'
+#. Label of the custom_css (Code) field in DocType 'Web Form'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Custom CSS"
+msgstr ""
+
+#. Label of the custom_configuration_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Custom Configuration"
+msgstr ""
+
+#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Custom Delimiters"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+msgid "Custom DocPerm"
+msgstr ""
+
+#. Label of the custom_select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Custom Document Types (Select Permission)"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:105
+msgid "Custom Document Types Limit Exceeded"
+msgstr ""
+
+#: frappe/desk/desktop.py:524
+msgid "Custom Documents"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Custom Field"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:220
+msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:277
+msgid "Custom Fields can only be added to a standard DocType."
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:274
+msgid "Custom Fields cannot be added to core DocTypes."
+msgstr ""
+
+#. Label of the custom_footer_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Custom Footer"
+msgstr ""
+
+#. Label of the custom_format (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom Format"
+msgstr ""
+
+#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Custom Group Search"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
+msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:190
+#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
+msgid "Custom HTML"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "Custom HTML Block"
+msgstr ""
+
+#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom HTML Help"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
+msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Web Form Field'
+#. Label of the label (Data) field in DocType 'Web Form List Column'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+msgid "Custom Label"
+msgstr ""
+
+#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Custom Menu Items"
+msgstr ""
+
+#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Custom Options"
+msgstr ""
+
+#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom Overrides"
+msgstr ""
+
+#. Option for the 'Report Type' (Select) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Custom Report"
+msgstr ""
+
+#: frappe/desk/desktop.py:525
+msgid "Custom Reports"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/custom_role/custom_role.json
+msgid "Custom Role"
+msgstr ""
+
+#. Label of the custom_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom SCSS"
+msgstr ""
+
+#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Custom Sidebar Menu"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Custom Translation"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:423
+msgid "Custom field renamed to {0} successfully."
+msgstr ""
+
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
+#. Label of the custom (Check) field in DocType 'DocType'
+#. Label of the custom (Check) field in DocType 'Website Theme'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:83
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom?"
+msgstr ""
+
+#. Group in DocType's connections
+#. Group in Module Def's connections
+#. Label of a Card Break in the Build Workspace
+#. Label of the customization_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Customization"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:358
+msgid "Customizations Discarded"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:465
+msgid "Customizations Reset"
+msgstr ""
+
+#: frappe/modules/utils.py:96
+msgid "Customizations for {0} exported to:
{1}"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:184
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:600
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
+msgid "Customize"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1949
+msgctxt "Button in list view menu"
+msgid "Customize"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:89
+msgid "Customize Child Table"
+msgstr ""
+
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
+msgid "Customize Dashboard"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33
+#: frappe/core/doctype/doctype/doctype.js:61
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
+msgid "Customize Form"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:100
+msgid "Customize Form - {0}"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Customize Form Field"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Customize properties, naming, fields and more for standard doctypes"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:144
+msgid "Cut"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Cyan"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "DELETE"
+msgstr ""
+
+#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "DESC"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "DLE"
+msgstr ""
+
+#: frappe/templates/print_formats/standard_macros.html:215
+msgid "DRAFT"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Frequency' (Select) field in DocType 'User'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:398
+#: frappe/website/report/website_analytics/website_analytics.js:23
+msgid "Daily"
+msgstr ""
+
+#: frappe/templates/emails/upcoming_events.html:8
+msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
+msgstr ""
+
+#: frappe/desk/doctype/event/event.py:104
+msgid "Daily Events should finish on the Same Day."
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Daily Long"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Daily Maintenance"
+msgstr ""
+
+#. Option for the 'Style' (Select) field in DocType 'Workflow State'
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Danger"
+msgstr ""
+
+#. Option for the 'Desk Theme' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Dark"
+msgstr ""
+
+#. Label of the dark_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Dark Color"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:65
+msgid "Dark Theme"
+msgstr ""
+
+#. Label of the dashboard (Check) field in DocType 'User'
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:10
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
+#: frappe/public/js/frappe/utils/utils.js:935
+msgid "Dashboard"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
+msgid "Dashboard Chart"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+msgid "Dashboard Chart Field"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Dashboard Chart Link"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+msgid "Dashboard Chart Source"
+msgstr ""
+
+#. Name of a role
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dashboard Manager"
+msgstr ""
+
+#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
+msgid "Dashboard Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+msgid "Dashboard Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:204
+msgid "Dashboard View"
+msgstr ""
+
+#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Dashboards"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#. Label of the data (Code) field in DocType 'Deleted Document'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Data"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/data.js:59
+msgid "Data Clipped"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Data Export"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the data_import (Link) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Data Import"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/data_import_log/data_import_log.json
+msgid "Data Import Log"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:174
+msgid "Data Import Template"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:619
+msgid "Data Too Long"
+msgstr ""
+
+#. Label of the database (Data) field in DocType 'System Health Report'
+#. Label of the database_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database"
+msgstr ""
+
+#. Label of the engine (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Database Engine"
+msgstr ""
+
+#. Label of the database_processes_section (Section Break) field in DocType
+#. 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Database Processes"
+msgstr ""
+
+#: frappe/public/js/frappe/doctype/index.js:38
+msgid "Database Row Size Utilization"
+msgstr ""
+
+#. Name of a report
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
+msgid "Database Storage Usage By Tables"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:251
+msgid "Database Table Row Size Limit"
+msgstr ""
+
+#: frappe/public/js/frappe/doctype/index.js:40
+msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
+msgstr ""
+
+#. Label of the database_version (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database Version"
+msgstr ""
+
+#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
+#. Label of the communication_date (Datetime) field in DocType 'Communication'
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/report/todo/todo.py:38
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Date"
+msgstr ""
+
+#. Label of the date_format (Select) field in DocType 'Language'
+#. Label of the date_format (Select) field in DocType 'System Settings'
+#. Label of the date_format (Data) field in DocType 'Country'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+msgid "Date Format"
+msgstr ""
+
+#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/widgets/chart_widget.js:237
+msgid "Date Range"
+msgstr ""
+
+#. Label of the date_and_number_format (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Date and Number Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/date.js:247
+msgid "Date {0} must be in format: {1}"
+msgstr ""
+
+#: frappe/utils/password_strength.py:129
+msgid "Dates are often easy to guess."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Datetime"
+msgstr ""
+
+#. Label of the day (Select) field in DocType 'Assignment Rule Day'
+#. Label of the day (Select) field in DocType 'Auto Repeat Day'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/public/js/frappe/views/calendar/calendar.js:277
+msgid "Day"
+msgstr ""
+
+#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Day of Week"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Days After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Days Before"
+msgstr ""
+
+#. Label of the days_in_advance (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Days Before or After"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
+msgid "Deadlock Occurred"
+msgstr ""
+
+#: frappe/templates/emails/password_reset.html:1
+msgid "Dear"
+msgstr ""
+
+#: frappe/templates/emails/administrator_logged_in.html:1
+msgid "Dear System Manager,"
+msgstr ""
+
+#: frappe/templates/emails/account_deletion_notification.html:1
+#: frappe/templates/emails/delete_data_confirmation.html:1
+msgid "Dear User,"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:1
+msgid "Dear {0}"
+msgstr ""
+
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+msgid "Debug Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:318
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:310
+msgid "Decimal Separator must be a single character"
+msgstr ""
+
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#. Label of the default (Data) field in DocType 'Web Form Field'
+#. Label of the default (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/templates/form_grid/fields.html:30
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Default"
+msgstr ""
+
+#: frappe/contacts/doctype/address_template/address_template.py:41
+msgid "Default Address Template cannot be deleted"
+msgstr ""
+
+#. Label of the default_amend_naming (Select) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Default Amendment Naming"
+msgstr ""
+
+#. Label of the default_app (Select) field in DocType 'System Settings'
+#. Label of the default_app (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Default App"
+msgstr ""
+
+#. Label of the default_email_template (Link) field in DocType 'DocType'
+#. Label of the default_email_template (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Default Email Template"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account_list.js:13
+msgid "Default Inbox"
+msgstr ""
+
+#. Label of the default_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:224
+msgid "Default Incoming"
+msgstr ""
+
+#. Label of the is_default (Check) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Default Letter Head"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
+#. Settings'
+#. Option for the 'Default Amendment Naming' (Select) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Default Naming"
+msgstr ""
+
+#. Label of the default_outgoing (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:232
+msgid "Default Outgoing"
+msgstr ""
+
+#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Default Portal Home"
+msgstr ""
+
+#. Label of the default_print_format (Data) field in DocType 'DocType'
+#. Label of the default_print_format (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Default Print Format"
+msgstr ""
+
+#. Label of the default_print_language (Link) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Default Print Language"
+msgstr ""
+
+#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Default Redirect URI"
+msgstr ""
+
+#. Label of the default_role (Link) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Default Role at Time of Signup"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account_list.js:16
+msgid "Default Sending"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account_list.js:7
+msgid "Default Sending and Inbox"
+msgstr ""
+
+#. Label of the sort_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Default Sort Field"
+msgstr ""
+
+#. Label of the sort_order (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Default Sort Order"
+msgstr ""
+
+#. Label of the field (Data) field in DocType 'Print Format Field Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+msgid "Default Template For Field"
+msgstr ""
+
+#: frappe/website/doctype/website_theme/website_theme.js:28
+msgid "Default Theme"
+msgstr ""
+
+#. Label of the default_role (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Default User Role"
+msgstr ""
+
+#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Default User Type"
+msgstr ""
+
+#. Label of the default (Text) field in DocType 'Custom Field'
+#. Label of the default_value (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Default Value"
+msgstr ""
+
+#. Label of the default_view (Select) field in DocType 'DocType'
+#. Label of the default_view (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Default View"
+msgstr ""
+
+#. Label of the default_workspace (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Default Workspace"
+msgstr ""
+
+#. Description of the 'Currency' (Link) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Default display currency"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1377
+msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1390
+msgid "Default value for {0} must be in the list of options."
+msgstr ""
+
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
+msgid "Default {0}"
+msgstr ""
+
+#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Default: \"Contact Us\""
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+msgid "DefaultValue"
+msgstr ""
+
+#. Label of the defaults_section (Section Break) field in DocType 'DocField'
+#. Label of the sb2 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
+msgid "Defaults"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:243
+msgid "Defaults Updated"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Defines actions on states and the next step and allowed roles."
+msgstr ""
+
+#. Description of the 'Delete Background Exported Reports After (Hours)' (Int)
+#. field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Defines workflow states and rules for a document."
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Delayed"
+msgstr ""
+
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:627
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:1749
+#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:283
+#: frappe/templates/discussions/reply_card.html:35
+#: frappe/templates/discussions/reply_section.html:29
+msgid "Delete"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2174
+msgctxt "Button in list view actions menu"
+msgid "Delete"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:52
+msgctxt "Button in web form"
+msgid "Delete"
+msgstr ""
+
+#: frappe/www/me.html:65
+msgid "Delete Account"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr ""
+
+#. Label of the delete_background_exported_reports_after (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Delete Background Exported Reports After (Hours)"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:196
+msgctxt "Title of confirmation dialog"
+msgid "Delete Column"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
+msgid "Delete Data"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:116
+msgid "Delete Kanban Board"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:125
+msgctxt "Title of confirmation dialog"
+msgid "Delete Section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:64
+msgctxt "Title of confirmation dialog"
+msgid "Delete Tab"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:944
+msgid "Delete and Generate New"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:203
+msgctxt "Button text"
+msgid "Delete column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:742
+msgid "Delete comment?"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:205
+msgctxt "Button text"
+msgid "Delete entire column with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:134
+msgctxt "Button text"
+msgid "Delete entire section with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:73
+msgctxt "Button text"
+msgid "Delete entire tab with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:132
+msgctxt "Button text"
+msgid "Delete section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:71
+msgctxt "Button text"
+msgid "Delete tab"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
+msgid "Delete this record to allow sending to this email address"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2179
+msgctxt "Title of confirmation dialog"
+msgid "Delete {0} item permanently?"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2185
+msgctxt "Title of confirmation dialog"
+msgid "Delete {0} items permanently?"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Deleted"
+msgstr ""
+
+#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Deleted DocType"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Deleted Document"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Deleted Documents"
+msgstr ""
+
+#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+msgid "Deleted Name"
+msgstr ""
+
+#: frappe/desk/reportview.py:641
+msgid "Deleted all documents successfully"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:211
+msgid "Deleted!"
+msgstr ""
+
+#: frappe/desk/reportview.py:618
+msgid "Deleting {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:202
+msgid "Deleting {0} records..."
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:692
+msgid "Deleting {0}..."
+msgstr ""
+
+#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+msgid "Deletion Steps"
+msgstr ""
+
+#: frappe/core/doctype/page/page.py:110
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
+msgid "Deletion of this document is only permitted in developer mode."
+msgstr ""
+
+#. Label of the delimiter_options (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Delimiter Options"
+msgstr ""
+
+#: frappe/utils/csvutils.py:76
+msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:306
+msgid "Delimiter must be a single character"
+msgstr ""
+
+#. Label of the delivery_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Delivery Status"
+msgstr ""
+
+#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:17
+msgid "Deny"
+msgstr ""
+
+#. Label of the department (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Department"
+msgstr ""
+
+#. Label of the dependencies (Data) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
+#: frappe/www/attribution.html:29
+msgid "Dependencies"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Dependencies & Licenses"
+msgstr ""
+
+#. Label of the depends_on (Code) field in DocType 'Custom Field'
+#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Depends On"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:32
+msgid "Descendants Of"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:33
+msgid "Descendants Of (inclusive)"
+msgstr ""
+
+#. Label of the description (Small Text) field in DocType 'Assignment Rule'
+#. Label of the description (Small Text) field in DocType 'Reminder'
+#. Label of the description (Small Text) field in DocType 'DocField'
+#. Label of the description (Small Text) field in DocType 'DocType'
+#. Label of the description (Text) field in DocType 'Customize Form Field'
+#. Label of the description (Small Text) field in DocType 'Desktop Icon'
+#. Label of the description (Text Editor) field in DocType 'Event'
+#. Label of the description (HTML Editor) field in DocType 'Form Tour Step'
+#. Label of the description_section (Section Break) field in DocType
+#. 'Onboarding Step'
+#. Label of the description (Markdown Editor) field in DocType 'Onboarding
+#. Step'
+#. Label of the description (Small Text) field in DocType 'Tag'
+#. Label of the description (Text Editor) field in DocType 'ToDo'
+#. Label of the description (HTML Editor) field in DocType 'Workspace Link'
+#. Label of the description (Small Text) field in DocType 'Print Heading'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
+msgid "Description"
+msgstr ""
+
+#. Description of the 'Description' (Section Break) field in DocType
+#. 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Description to inform the user about any action that is going to be performed"
+msgstr ""
+
+#. Label of the designation (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Designation"
+msgstr ""
+
+#. Label of the desk_access (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
+msgid "Desk Access"
+msgstr ""
+
+#. Label of the desk_settings_section (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Desk Settings"
+msgstr ""
+
+#. Label of the desk_theme (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Desk Theme"
+msgstr ""
+
+#. Name of a role
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Desk User"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Desktop Icon"
+msgstr ""
+
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225
+msgid "Desktop Icon already exists"
+msgstr ""
+
+#. Label of the details_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the details (Code) field in DocType 'Scheduled Job Log'
+#. Label of the details_tab (Tab Break) field in DocType 'Customize Form'
+#. Label of the details (Section Break) field in DocType 'Event'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/form_builder/components/Tabs.vue:92
+#: frappe/public/js/form_builder/store.js:259
+#: frappe/public/js/form_builder/utils.js:38
+#: frappe/public/js/frappe/form/layout.js:152
+#: frappe/public/js/frappe/views/treeview.js:292
+msgid "Details"
+msgstr ""
+
+#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Detect CSV type"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:494
+msgid "Did not add"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:388
+msgid "Did not remove"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:57
+msgid "Diff"
+msgstr ""
+
+#. Description of the 'States' (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc."
+msgstr ""
+
+#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Digits"
+msgstr ""
+
+#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Directory Server"
+msgstr ""
+
+#. Label of the disable_auto_refresh (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Auto Refresh"
+msgstr ""
+
+#. Label of the disable_automatic_recency_filters (Check) field in DocType
+#. 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Automatic Recency Filters"
+msgstr ""
+
+#. Label of the disable_change_log_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Change Log Notification"
+msgstr ""
+
+#. Label of the disable_comment_count (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Comment Count"
+msgstr ""
+
+#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Disable Contact Us Page"
+msgstr ""
+
+#. Label of the disable_count (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Count"
+msgstr ""
+
+#. Label of the disable_document_sharing (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Document Sharing"
+msgstr ""
+
+#: frappe/core/doctype/report/report.js:39
+msgid "Disable Report"
+msgstr ""
+
+#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Disable SMTP server authentication"
+msgstr ""
+
+#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Scrolling"
+msgstr ""
+
+#. Label of the disable_sidebar_stats (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Sidebar Stats"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:146
+msgid "Disable Signup for your site"
+msgstr ""
+
+#. Label of the disable_standard_email_footer (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Standard Email Footer"
+msgstr ""
+
+#. Label of the disable_system_update_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable System Update Notification"
+msgstr ""
+
+#. Label of the disable_user_pass_login (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Disable Username/Password Login"
+msgstr ""
+
+#. Label of the disable_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Disable signups"
+msgstr ""
+
+#. Label of the disabled (Check) field in DocType 'Assignment Rule'
+#. Label of the disabled (Check) field in DocType 'Auto Repeat'
+#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
+#. Label of the disabled (Check) field in DocType 'Milestone Tracker'
+#. Label of the disabled (Check) field in DocType 'Address'
+#. Label of the disabled (Check) field in DocType 'Document Naming Rule'
+#. Label of the disabled (Check) field in DocType 'Report'
+#. Label of the disabled (Check) field in DocType 'Role'
+#. Label of the disabled (Check) field in DocType 'Server Script'
+#. Label of the disabled (Check) field in DocType 'Letter Head'
+#. Label of the disabled (Check) field in DocType 'Print Format'
+#. Label of the disabled (Check) field in DocType 'Print Style'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
+msgid "Disabled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:300
+msgid "Disabled Auto Reply"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:338
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:193
+msgid "Discard"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:44
+msgctxt "Button in web form"
+msgid "Discard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:30
+msgctxt "Discard Email"
+msgid "Discard"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:848
+msgid "Discard {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:190
+msgid "Discard?"
+msgstr ""
+
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr ""
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+msgid "Discussion Reply"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+msgid "Discussion Topic"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:639
+#: frappe/templates/discussions/reply_card.html:16
+#: frappe/templates/discussions/reply_section.html:29
+msgid "Dismiss"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:572
+msgctxt "Stop showing the onboarding widget."
+msgid "Dismiss"
+msgstr ""
+
+#. Label of the display (Section Break) field in DocType 'DocField'
+#. Label of the updates_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the display (Section Break) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Display"
+msgstr ""
+
+#. Label of the depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Display Depends On"
+msgstr ""
+
+#. Label of the depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Display Depends On (JS)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
+msgid "Divider"
+msgstr ""
+
+#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Do Not Create New User"
+msgstr ""
+
+#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Do not create new user if user with email does not exist in the system"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1195
+msgid "Do not edit headers which are preset in the template"
+msgstr ""
+
+#: frappe/public/js/frappe/router.js:624
+msgid "Do not warn me again about {0}"
+msgstr ""
+
+#: frappe/core/doctype/system_settings/system_settings.js:71
+msgid "Do you still want to proceed?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:958
+msgid "Do you want to cancel all linked documents?"
+msgstr ""
+
+#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Doc Event"
+msgstr ""
+
+#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Doc Events"
+msgstr ""
+
+#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Doc Status"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocField"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/docperm/docperm.json
+msgid "DocPerm"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/docshare/docshare.json
+msgid "DocShare"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:264
+msgid "DocStatus of the following states have changed:
{0}
\n"
+"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n"
+"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n"
+"\t\t\t\t"
+msgstr ""
+
+#. Label of the document_type (Link) field in DocType 'Amended Document Naming
+#. Settings'
+#. Label of the doctype_name (Link) field in DocType 'Audit Trail'
+#. Name of a DocType
+#. Group in Module Def's connections
+#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector'
+#. Label of the ref_doctype (Link) field in DocType 'Version'
+#. Label of a shortcut in the Build Workspace
+#. Label of the dt (Link) field in DocType 'Client Script'
+#. Label of the dt (Link) field in DocType 'Custom Field'
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#. Label of the doc_type (Link) field in DocType 'Property Setter'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
+#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
+#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
+#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
+#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/data_export/exporter.py:26
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:164
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
+msgid "DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1578
+msgid "DocType {0} provided for the field {1} must have atleast one Link field"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocType Action"
+msgstr ""
+
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#. Label of the doctype_event (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "DocType Event"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+msgid "DocType Layout"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+msgid "DocType Layout Field"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocType Link"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "DocType State"
+msgstr ""
+
+#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
+msgid "DocType View"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:657
+msgid "DocType can not be merged"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:651
+msgid "DocType can only be renamed by Administrator"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:83
+msgid "DocType must be Submittable for the selected Doc Event"
+msgstr ""
+
+#: frappe/client.py:403
+msgid "DocType must be a string"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:154
+msgid "DocType must have atleast one field"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:57
+msgid "DocType not supported by Log Settings."
+msgstr ""
+
+#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "DocType on which this Workflow is applicable."
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
+msgid "DocType required"
+msgstr ""
+
+#: frappe/modules/utils.py:175
+msgid "DocType {0} does not exist."
+msgstr ""
+
+#: frappe/modules/utils.py:238
+msgid "DocType {} not found"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1029
+msgid "DocType's name should not start or end with whitespace"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
+msgstr ""
+
+#. Label of the ref_doctype (Link) field in DocType 'Document Follow'
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
+msgid "Doctype"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1023
+msgid "Doctype name is limited to {0} characters ({1})"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:3
+msgid "Doctype required"
+msgstr ""
+
+#. Label of the reference_name (Data) field in DocType 'Milestone'
+#. Label of the document (Dynamic Link) field in DocType 'Audit Trail'
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector'
+#. Label of the document (Link) field in DocType 'Notification Subscribed
+#. Document'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+#: frappe/public/js/frappe/views/render_preview.js:42
+msgid "Document"
+msgstr ""
+
+#. Label of the actions (Table) field in DocType 'DocType'
+#. Label of the document_actions_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Document Actions"
+msgstr ""
+
+#. Label of the document_follow_notifications_section (Section Break) field in
+#. DocType 'User'
+#. Name of a DocType
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/document_follow/document_follow.json
+msgid "Document Follow"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:94
+msgid "Document Follow Notification"
+msgstr ""
+
+#. Label of the document_name (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Document Link"
+msgstr ""
+
+#. Label of the section_break_12 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Document Linking"
+msgstr ""
+
+#. Label of the links (Table) field in DocType 'DocType'
+#. Label of the document_links_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Document Links"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1212
+msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1232
+msgid "Document Links Row #{0}: Invalid doctype or fieldname."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1195
+msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1201
+msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
+msgstr ""
+
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
+msgid "Document Name"
+msgstr ""
+
+#: frappe/client.py:406
+msgid "Document Name must be a string"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Document Naming Rule"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+msgid "Document Naming Rule Condition"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Document Naming Settings"
+msgstr ""
+
+#: frappe/model/document.py:478
+msgid "Document Queued"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:38
+msgid "Document Restoration Summary"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:68
+msgid "Document Restored"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:354
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:396
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:415
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
+msgid "Document Saved"
+msgstr ""
+
+#. Label of the enable_email_share (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Document Share"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/document_share_key/document_share_key.json
+msgid "Document Share Key"
+msgstr ""
+
+#. Label of the document_share_key_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Document Share Key Expiry (in Days)"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Users Workspace
+#: frappe/core/report/document_share_report/document_share_report.json
+#: frappe/core/workspace/users/users.json
+msgid "Document Share Report"
+msgstr ""
+
+#. Label of the states (Table) field in DocType 'DocType'
+#. Label of the document_states_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the states (Table) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Document States"
+msgstr ""
+
+#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202
+#: frappe/public/js/frappe/model/model.js:137
+msgid "Document Status"
+msgstr ""
+
+#. Label of the tag (Link) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
+msgid "Document Tag"
+msgstr ""
+
+#. Label of the title (Data) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
+msgid "Document Title"
+msgstr ""
+
+#. Label of the document_type (Link) field in DocType 'Assignment Rule'
+#. Label of the reference_type (Link) field in DocType 'Milestone'
+#. Label of the reminder_doctype (Link) field in DocType 'Reminder'
+#. Label of the reference_doctype (Link) field in DocType 'Data Import'
+#. Label of the share_doctype (Link) field in DocType 'DocShare'
+#. Label of the document_type (Link) field in DocType 'Document Naming Rule'
+#. Label of the ref_doctype (Link) field in DocType 'Session Default'
+#. Label of the document_type (Link) field in DocType 'User Document Type'
+#. Label of the document_type (Link) field in DocType 'User Select Document
+#. Type'
+#. Label of the document_type (Link) field in DocType 'DocType Layout'
+#. Label of the document_type (Link) field in DocType 'Bulk Update'
+#. Label of the document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the document_type (Link) field in DocType 'Global Search DocType'
+#. Label of the document_type (Link) field in DocType 'Notification Log'
+#. Label of the document_type (Link) field in DocType 'Number Card'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Label of the document_type (Link) field in DocType 'Tag Link'
+#. Label of the document_type (Link) field in DocType 'Notification'
+#. Label of the document_type (Link) field in DocType 'Print Format Field
+#. Template'
+#. Label of the document_type (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the document_type (Link) field in DocType 'Workflow'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/session_default/session_default.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:26
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/page/permission_manager/permission_manager.js:49
+#: frappe/core/page/permission_manager/permission_manager.js:218
+#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/roles_editor.js:68
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Document Type"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:60
+msgid "Document Type and Function are required to create a number card"
+msgstr ""
+
+#: frappe/permissions.py:149
+msgid "Document Type is not importable"
+msgstr ""
+
+#: frappe/permissions.py:145
+msgid "Document Type is not submittable"
+msgstr ""
+
+#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Document Type to Track"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
+msgid "Document Type {0} has been repeated."
+msgstr ""
+
+#. Label of the user_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Document Types"
+msgstr ""
+
+#. Label of the select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Document Types (Select Permissions Only)"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
+msgid "Document Types and Permissions"
+msgstr ""
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:163
+#: frappe/model/document.py:1959
+msgid "Document Unlocked"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:56
+msgid "Document follow is not enabled for this user."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1302
+msgid "Document has been cancelled"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1301
+msgid "Document has been submitted"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1300
+msgid "Document is in draft state"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Document is only editable by users with role"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:182
+msgid "Document not Relinked"
+msgstr ""
+
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
+msgid "Document renamed from {0} to {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:164
+msgid "Document renaming from {0} to {1} has been queued"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
+msgid "Document type is required to create a dashboard chart"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document.py:45
+msgid "Document {0} Already Restored"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
+msgid "Document {0} has been set to state {1} by {2}"
+msgstr ""
+
+#: frappe/client.py:430
+msgid "Document {0} {1} does not exist"
+msgstr ""
+
+#. Label of the documentation (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Documentation Link"
+msgstr ""
+
+#. Label of the documentation_url (Data) field in DocType 'DocField'
+#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+msgid "Documentation URL"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
+msgid "Documents"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
+msgid "Documents restored successfully"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
+msgid "Documents that failed to restore"
+msgstr ""
+
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
+msgid "Documents that were already restored"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the domain (Data) field in DocType 'Domain'
+#. Label of the domain (Link) field in DocType 'Has Domain'
+#. Label of the domain (Link) field in DocType 'Email Account'
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Domain"
+msgstr ""
+
+#. Label of the domain_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Domain Name"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/domain_settings/domain_settings.json
+msgid "Domain Settings"
+msgstr ""
+
+#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
+msgid "Domains HTML"
+msgstr ""
+
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:272
+msgid "Don't Import"
+msgstr ""
+
+#. Label of the override_status (Check) field in DocType 'Workflow'
+#. Label of the avoid_status_override (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Don't Override Status"
+msgstr ""
+
+#. Label of the mute_emails (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Don't Send Emails"
+msgstr ""
+
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
+msgstr ""
+
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:70
+msgid "Don't have an account?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:16
+#: frappe/public/js/frappe/ui/messages.js:238
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
+msgid "Done"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Donut"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/EditableInput.vue:43
+msgid "Double click to edit label"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Download"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:247
+msgctxt "Export report"
+msgid "Download"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/page/backups/backups.js:4
+msgid "Download Backups"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:6
+msgid "Download Data"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:14
+msgid "Download Files Backup"
+msgstr ""
+
+#: frappe/templates/emails/download_data.html:9
+msgid "Download Link"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:134
+msgid "Download PDF"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:840
+msgid "Download Report"
+msgstr ""
+
+#. Label of the download_template (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Download Template"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
+msgid "Download Your Data"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:49
+msgid "Download as CSV"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:46
+msgid "Dr"
+msgstr ""
+
+#: frappe/public/js/frappe/model/indicator.js:73
+#: frappe/public/js/frappe/ui/filters/filter.js:538
+msgid "Draft"
+msgstr ""
+
+#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
+#: frappe/public/js/frappe/widgets/base_widget.js:33
+msgid "Drag"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:189
+msgid "Drag & Drop a section here from another tab"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14
+msgid "Drag and drop files here or upload from"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76
+msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
+msgid "Drag elements from the sidebar to add. Drag them back to trash."
+msgstr ""
+
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
+msgid "Drag to add state"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189
+msgid "Drop files here"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Dropdowns"
+msgstr ""
+
+#. Label of the date (Date) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
+msgid "Due Date"
+msgstr ""
+
+#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Due Date Based On"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+#: frappe/public/js/frappe/form/toolbar.js:422
+msgid "Duplicate"
+msgstr ""
+
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
+msgid "Duplicate Entry"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:144
+msgid "Duplicate Filter Name"
+msgstr ""
+
+#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111
+msgid "Duplicate Name"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate Row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:209
+msgid "Duplicate current row"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:245
+msgid "Duplicate field"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Label of the duration (Float) field in DocType 'Recorder'
+#. Label of the duration (Float) field in DocType 'Recorder Query'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Duration"
+msgstr ""
+
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Dynamic"
+msgstr ""
+
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Dynamic Filters"
+msgstr ""
+
+#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters JSON"
+msgstr ""
+
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters Section"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Name of a DocType
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Dynamic Link"
+msgstr ""
+
+#. Label of the dynamic_report_filters_section (Section Break) field in DocType
+#. 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Dynamic Report Filters"
+msgstr ""
+
+#. Label of the dynamic_route (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Dynamic Route"
+msgstr ""
+
+#. Label of the dynamic_template (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Dynamic Template"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "ESC"
+msgstr ""
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:169
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/form/footer/form_timeline.js:670
+#: frappe/public/js/frappe/form/footer/form_timeline.js:678
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:888
+#: frappe/public/js/frappe/views/reports/query_report.js:1791
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:359
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2260
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:350
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:63
+msgid "Edit Auto Email Report Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:38
+msgid "Edit Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:50
+msgid "Edit Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+msgid "Edit Custom HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:619
+msgid "Edit DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1976
+msgctxt "Button in list view menu"
+msgid "Edit DocType"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
+msgid "Edit Existing"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:29
+msgid "Edit Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:326
+msgid "Edit Full Form"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27
+#: frappe/public/js/print_format_builder/Field.vue:83
+msgid "Edit HTML"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:9
+msgid "Edit Header"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:609
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8
+msgid "Edit Heading"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
+msgid "Edit Letter Head"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:35
+msgid "Edit Letter Head Footer"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:42
+msgid "Edit Links"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:44
+msgid "Edit Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:46
+msgid "Edit Onboarding"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24
+msgid "Edit Print Format"
+msgstr ""
+
+#: frappe/www/me.html:38
+msgid "Edit Profile"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:173
+msgid "Edit Properties"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:48
+msgid "Edit Quick List"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:40
+msgid "Edit Shortcut"
+msgstr ""
+
+#. Label of the edit_values (Button) field in DocType 'Web Page Block'
+#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
+#. Settings'
+#. Label of the edit_footer_template_values (Button) field in DocType 'Website
+#. Settings'
+#: frappe/public/js/frappe/utils/web_template.js:5
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Edit Values"
+msgstr ""
+
+#: frappe/desk/doctype/note/note.js:11
+msgid "Edit mode"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:254
+msgid "Edit the {0} Doctype"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+msgid "Edit to add content"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:470
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
+msgid "Edit your workflow visually using the Workflow Builder."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:683
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
+msgid "Edit {0}"
+msgstr ""
+
+#. Label of the editable_grid (Check) field in DocType 'DocType'
+#. Label of the editable_grid (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:58
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Editable Grid"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Editing Row"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
+msgid "Editing {0}"
+msgstr ""
+
+#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Eg. smsgateway.com/api/send_sms.cgi"
+msgstr ""
+
+#: frappe/rate_limiter.py:152
+msgid "Either key or IP flag is required."
+msgstr ""
+
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Element Selector"
+msgstr ""
+
+#. Label of a Card Break in the Tools Workspace
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Label of the email (Check) field in DocType 'Custom DocPerm'
+#. Label of the email (Check) field in DocType 'DocPerm'
+#. Option for the 'Two Factor Authentication method' (Select) field in DocType
+#. 'System Settings'
+#. Label of the email_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the email (Data) field in DocType 'User'
+#. Label of the email_settings (Section Break) field in DocType 'User'
+#. Label of the email (Check) field in DocType 'User Document Type'
+#. Label of the email (Data) field in DocType 'User Invitation'
+#. Label of the email (Data) field in DocType 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#. Label of a field in the request-data Web Form
+#. Label of a field in the request-to-delete-data Web Form
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:382
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/web_form/request_data/request_data.json
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
+msgid "Email"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the email_account (Link) field in DocType 'Communication'
+#. Label of the email_account (Link) field in DocType 'User Email'
+#. Name of a DocType
+#. Label of the email_account (Data) field in DocType 'Email Flag Queue'
+#. Label of the email_account (Link) field in DocType 'Email Queue'
+#. Label of the email_account (Link) field in DocType 'Unhandled Email'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.js:199
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Email Account"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:343
+msgid "Email Account Disabled."
+msgstr ""
+
+#. Label of the email_account_name (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Email Account Name"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:749
+msgid "Email Account added multiple times"
+msgstr ""
+
+#: frappe/email/smtp.py:43
+msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:576
+msgid "Email Account {0} Disabled"
+msgstr ""
+
+#. Label of the email_id (Data) field in DocType 'Address'
+#. Label of the email_id (Data) field in DocType 'Contact'
+#. Label of the email_id (Data) field in DocType 'Email Account'
+#. Label of the email_id (Data) field in DocType 'Google Contacts'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/www/complete_signup.html:11 frappe/www/login.html:184
+#: frappe/www/login.html:216
+msgid "Email Address"
+msgstr ""
+
+#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+msgid "Email Address whose Google Contacts are to be synced."
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:43
+msgid "Email Addresses"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Email Domain"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+msgid "Email Flag Queue"
+msgstr ""
+
+#. Label of the email_footer_address (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Email Footer Address"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Name of a DocType
+#. Label of the email_group (Link) field in DocType 'Email Group Member'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+msgid "Email Group"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_group_member/email_group_member.json
+msgid "Email Group Member"
+msgstr ""
+
+#. Label of the email_header (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Email Header"
+msgstr ""
+
+#. Label of the email_id (Data) field in DocType 'Contact Email'
+#. Label of the email_id (Data) field in DocType 'User Email'
+#. Label of the email_id (Data) field in DocType 'Email Rule'
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact_email/contact_email.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_rule/email_rule.json
+msgid "Email ID"
+msgstr ""
+
+#. Label of the email_ids (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Email IDs"
+msgstr ""
+
+#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Email Id"
+msgstr ""
+
+#. Label of the email_inbox (Section Break) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Email Inbox"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+msgid "Email Queue Recipient"
+msgstr ""
+
+#: frappe/email/queue.py:161
+msgid "Email Queue flushing aborted due to too many failures."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue records."
+msgstr ""
+
+#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Help"
+msgstr ""
+
+#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Email Retry Limit"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_rule/email_rule.json
+msgid "Email Rule"
+msgstr ""
+
+#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation'
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Email Sent At"
+msgstr ""
+
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the column_break_3 (Section Break) field in DocType 'Notification
+#. Settings'
+#. Label of the email_settings (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Email Settings"
+msgstr ""
+
+#. Label of the email_signature (Text Editor) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Email Signature"
+msgstr ""
+
+#. Label of the email_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Email Status"
+msgstr ""
+
+#. Label of the email_sync_option (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Email Sync Option"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the email_template (Link) field in DocType 'Communication'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:107
+msgid "Email Template"
+msgstr ""
+
+#. Label of the enable_email_threads_on_assigned_document (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Email Threads on Assigned Document"
+msgstr ""
+
+#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Email To"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+msgid "Email Unsubscribe"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:342
+msgid "Email has been marked as spam"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:355
+msgid "Email has been moved to trash"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:266
+msgid "Email is mandatory to create User Email"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:822
+msgid "Email not sent to {0} (unsubscribed / disabled)"
+msgstr ""
+
+#: frappe/utils/oauth.py:163
+msgid "Email not verified with {0}"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.js:19
+msgid "Email queue is currently suspended. Resume to automatically send other emails."
+msgstr ""
+
+#. Label of the section_break_udjs (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Emails"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:216
+msgid "Emails Pulled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:934
+msgid "Emails are already being pulled from this account."
+msgstr ""
+
+#: frappe/email/queue.py:138
+msgid "Emails are muted"
+msgstr ""
+
+#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Emails will be sent with next possible workflow actions"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:34
+msgid "Embed code copied"
+msgstr ""
+
+#: frappe/database/query.py:1539
+msgid "Empty alias is not allowed"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+msgstr ""
+
+#: frappe/database/query.py:1457
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
+#. Label of the enable (Check) field in DocType 'Google Calendar'
+#. Label of the enable (Check) field in DocType 'Google Contacts'
+#. Label of the enable (Check) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "Enable"
+msgstr ""
+
+#. Label of the enable_address_autocompletion (Check) field in DocType
+#. 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Enable Address Autocompletion"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123
+msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
+msgstr ""
+
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Enable Auto Reply"
+msgstr ""
+
+#. Label of the enable_automatic_linking (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Enable Automatic Linking in Documents"
+msgstr ""
+
+#. Label of the enable_comments (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Enable Comments"
+msgstr ""
+
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
+#. Label of the enable_email_notifications (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Enable Email Notifications"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
+#: frappe/website/doctype/website_settings/website_settings.py:129
+msgid "Enable Google API in Google Settings."
+msgstr ""
+
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Enable Google indexing"
+msgstr ""
+
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
+msgid "Enable Incoming"
+msgstr ""
+
+#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Enable Onboarding"
+msgstr ""
+
+#. Label of the enable_outgoing (Check) field in DocType 'User Email'
+#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:233
+msgid "Enable Outgoing"
+msgstr ""
+
+#. Label of the enable_password_policy (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Enable Password Policy"
+msgstr ""
+
+#. Label of the enable_prepared_report (Check) field in DocType 'Role
+#. Permission for Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+msgid "Enable Prepared Report"
+msgstr ""
+
+#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Enable Print Server"
+msgstr ""
+
+#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enable Push Notification Relay"
+msgstr ""
+
+#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Enable Rate Limit"
+msgstr ""
+
+#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Enable Raw Printing"
+msgstr ""
+
+#: frappe/core/doctype/report/report.js:39
+msgid "Enable Report"
+msgstr ""
+
+#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Enable Scheduled Jobs"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:23
+msgid "Enable Scheduler"
+msgstr ""
+
+#. Label of the enable_security (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Enable Security"
+msgstr ""
+
+#. Label of the enable_social_login (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Enable Social Login"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:139
+msgid "Enable Tracking Page Views"
+msgstr ""
+
+#. Label of the enable_two_factor_auth (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/twofactor.py:438
+msgid "Enable Two Factor Auth"
+msgstr ""
+
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28
+msgid "Enable developer mode to create a standard Print Template"
+msgstr ""
+
+#: frappe/website/doctype/web_template/web_template.py:33
+msgid "Enable developer mode to create a standard Web Template"
+msgstr ""
+
+#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Enable if on click\n"
+"opens modal."
+msgstr ""
+
+#. Label of the enable_view_tracking (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Enable in-app website tracking"
+msgstr ""
+
+#. Label of the enabled (Check) field in DocType 'Language'
+#. Label of the enabled (Check) field in DocType 'User'
+#. Label of the enabled (Check) field in DocType 'Client Script'
+#. Label of the enabled (Check) field in DocType 'Notification Settings'
+#. Label of the enabled (Check) field in DocType 'Auto Email Report'
+#. Label of the enabled (Check) field in DocType 'Notification'
+#. Label of the enabled (Check) field in DocType 'Currency'
+#. Label of the enabled (Check) field in DocType 'LDAP Settings'
+#. Label of the enabled (Check) field in DocType 'Webhook'
+#. Label of the enabled (Check) field in DocType 'Portal Menu Item'
+#. Label of the enabled (Check) field in DocType 'Workflow Transition Task'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json
+msgid "Enabled"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:29
+msgid "Enabled Scheduler"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:1010
+msgid "Enabled email inbox for user {0}"
+msgstr ""
+
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Enables Calendar and Gantt views."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:295
+msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
+msgstr ""
+
+#. Description of a DocType
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr ""
+
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Enabling this will submit documents in background"
+msgstr ""
+
+#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Encrypt Backups"
+msgstr ""
+
+#: frappe/utils/password.py:196
+msgid "Encryption key is in invalid format!"
+msgstr ""
+
+#: frappe/utils/password.py:211
+msgid "Encryption key is invalid! Please check site_config.json"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr ""
+
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
+msgid "End Date"
+msgstr ""
+
+#. Label of the end_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+msgid "End Date Field"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.py:208
+msgid "End Date cannot be before Start Date!"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146
+msgid "End Date cannot be today."
+msgstr ""
+
+#. Label of the ended_at (Datetime) field in DocType 'RQ Job'
+#. Label of the ended_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Ended At"
+msgstr ""
+
+#. Label of the sb_endpoints_section (Section Break) field in DocType
+#. 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Endpoints"
+msgstr ""
+
+#. Label of the ends_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Ends on"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Energy Point"
+msgstr ""
+
+#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Enqueued By"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder.py:125
+msgid "Enqueued creation of indexes"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+msgid "Ensure the user and group search paths are correct."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
+msgid "Enter Client Id and Client Secret in Google Settings."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:777
+msgid "Enter Email Recipient(s)"
+msgstr ""
+
+#. Label of the doc_type (Link) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Enter Form Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:94
+msgctxt "Title of prompt dialog"
+msgid "Enter Value"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:60
+msgid "Enter a name for this {0}"
+msgstr ""
+
+#. Description of the 'User Defaults' (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"."
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:111
+msgid "Enter folder name"
+msgstr ""
+
+#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
+msgstr ""
+
+#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter url parameter for message"
+msgstr ""
+
+#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter url parameter for receiver nos"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:341
+msgid "Enter your password"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
+msgid "Entity Name"
+msgstr ""
+
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
+msgid "Entity Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:16
+msgid "Equals"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Label of the error (Code) field in DocType 'Error Log'
+#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue Recipient'
+#. Label of the error (Code) field in DocType 'Integration Request'
+#. Label of the error (Text) field in DocType 'Webhook Request Log'
+#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78
+#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/user_invitation/user_invitation.py:95
+#: frappe/core/doctype/user_invitation/user_invitation.py:99
+#: frappe/core/doctype/user_invitation/user_invitation.py:102
+#: frappe/core/doctype/user_invitation/user_invitation.py:125
+#: frappe/core/doctype/user_invitation/user_invitation.py:127
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
+msgid "Error"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:264
+msgctxt "Title of error message in web form"
+msgid "Error"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/error_log/error_log.json
+msgid "Error Log"
+msgstr ""
+
+#. Label of a Link in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Error Logs"
+msgstr ""
+
+#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Error Message"
+msgstr ""
+
+#: frappe/public/js/frappe/form/print_utils.js:156
+msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:32
+msgid "Error connecting via IMAP/POP3: {e}"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:33
+msgid "Error connecting via SMTP: {e}"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.py:101
+msgid "Error has occurred in {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/script_manager.js:199
+msgid "Error in Client Script"
+msgstr ""
+
+#: frappe/public/js/frappe/form/script_manager.js:256
+msgid "Error in Client Script."
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:21
+msgid "Error in Header/Footer Script"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:642
+#: frappe/email/doctype/notification/notification.py:782
+#: frappe/email/doctype/notification/notification.py:788
+msgid "Error in Notification"
+msgstr ""
+
+#: frappe/utils/pdf.py:59
+msgid "Error in print format on line {0}: {1}"
+msgstr ""
+
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:670
+msgid "Error while connecting to email account {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:779
+msgid "Error while evaluating Notification {0}. Please fix your template."
+msgstr ""
+
+#: frappe/model/base_document.py:860
+msgid "Error: Data missing in table {0}"
+msgstr ""
+
+#: frappe/model/base_document.py:870
+msgid "Error: Value missing for {0}: {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:864
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr ""
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#. Name of a DocType
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
+msgid "Event"
+msgstr ""
+
+#. Label of the event_category (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Event Category"
+msgstr ""
+
+#. Label of the event_frequency (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Event Frequency"
+msgstr ""
+
+#. Label of the event_participants (Table) field in DocType 'Event'
+#. Name of a DocType
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Event Participants"
+msgstr ""
+
+#. Label of the enable_email_event_reminders (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Event Reminders"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
+msgid "Event Synced with Google Calendar."
+msgstr ""
+
+#. Label of the event_type (Data) field in DocType 'Recorder'
+#. Label of the event_type (Select) field in DocType 'Event'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/event/event.json
+msgid "Event Type"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:56
+msgid "Events"
+msgstr ""
+
+#: frappe/desk/doctype/event/event.py:278
+msgid "Events in Today's Calendar"
+msgstr ""
+
+#. Label of the everyone (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:11
+msgid "Everyone"
+msgstr ""
+
+#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
+msgstr ""
+
+#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+msgid "Exact Copies"
+msgstr ""
+
+#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Example"
+msgstr ""
+
+#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
+msgid "Example: \"/desk\""
+msgstr ""
+
+#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Example: #Tree/Account"
+msgstr ""
+
+#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+msgid "Example: 00001"
+msgstr ""
+
+#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
+msgstr ""
+
+#. Description of the 'Description' (Small Text) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Example: {{ subject }}"
+msgstr ""
+
+#. Option for the 'File Type' (Select) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Excel"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:90
+msgid "Excellent"
+msgstr ""
+
+#. Label of the exception (Text) field in DocType 'Data Import Log'
+#. Label of the exc_info (Code) field in DocType 'RQ Job'
+#. Label of the exception (Long Text) field in DocType 'Submission Queue'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Exception"
+msgstr ""
+
+#. Label of the execute_section (Section Break) field in DocType 'System
+#. Console'
+#: frappe/desk/doctype/system_console/system_console.js:17
+#: frappe/desk/doctype/system_console/system_console.js:22
+#: frappe/desk/doctype/system_console/system_console.json
+msgid "Execute"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:10
+msgid "Execute Console script"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/dropdown_console.js:132
+msgid "Executing Code"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:18
+msgid "Executing..."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2140
+msgid "Execution Time: {0} sec"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Executive"
+msgstr ""
+
+#. Label of the existing_role (Link) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Existing Role"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:115
+#: frappe/public/js/frappe/views/treeview.js:127
+#: frappe/public/js/frappe/views/treeview.js:137
+#: frappe/public/js/frappe/widgets/base_widget.js:159
+msgid "Expand"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/code.js:185
+msgctxt "Enlarge code field."
+msgid "Expand"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
+#: frappe/public/js/frappe/views/treeview.js:133
+msgid "Expand All"
+msgstr ""
+
+#: frappe/database/query.py:354
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "Experimental"
+msgstr ""
+
+#. Option for the 'Level' (Select) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Expert"
+msgstr ""
+
+#. Label of the expiration_time (Datetime) field in DocType 'OAuth
+#. Authorization Code'
+#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer
+#. Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "Expiration time"
+msgstr ""
+
+#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Expire Notification On"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'User Invitation'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_invitation/user_invitation.json
+msgid "Expired"
+msgstr ""
+
+#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token'
+#. Label of the expires_in (Int) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Expires In"
+msgstr ""
+
+#. Label of the expires_on (Date) field in DocType 'Document Share Key'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+msgid "Expires On"
+msgstr ""
+
+#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Expiry time of QR Code Image Page"
+msgstr ""
+
+#. Label of the export (Check) field in DocType 'Custom DocPerm'
+#. Label of the export (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/public/js/frappe/data_import/data_exporter.js:92
+#: frappe/public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/views/reports/query_report.js:1828
+#: frappe/public/js/frappe/views/reports/report_view.js:1629
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
+msgid "Export"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2282
+msgctxt "Button in list view actions menu"
+msgid "Export"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:245
+msgid "Export 1 record"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:262
+msgid "Export Custom Permissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:242
+msgid "Export Customizations"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:14
+msgid "Export Data"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:86
+#: frappe/public/js/frappe/data_import/import_preview.js:199
+msgid "Export Errored Rows"
+msgstr ""
+
+#. Label of the export_from (Data) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "Export From"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:518
+msgid "Export Import Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:245
+msgctxt "Export report"
+msgid "Export Report: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
+msgid "Export Type"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1640
+msgid "Export all matching rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1650
+msgid "Export all {0} rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
+msgid "Export as zip"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:184
+msgid "Export in Background"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/tools.js:11
+msgid "Export not allowed. You need {0} role to export."
+msgstr ""
+
+#. Description of the 'Export without main header' (Check) field in DocType
+#. 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Export the data without any header notes and column descriptions"
+msgstr ""
+
+#. Label of the export_without_main_header (Check) field in DocType 'Data
+#. Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Export without main header"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:247
+msgid "Export {0} records"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr ""
+
+#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Expose Recipients"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Expression"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Expression (old style)"
+msgstr ""
+
+#. Description of the 'Condition' (Data) field in DocType 'Notification
+#. Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "Expression, Optional"
+msgstr ""
+
+#. Label of the external_link (Data) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:426
+msgid "External Link"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Connected
+#. App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+msgid "Extra Parameters"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Facebook"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Fail"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Activity Log'
+#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
+#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+msgid "Failed"
+msgstr ""
+
+#. Label of the failed_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Emails"
+msgstr ""
+
+#. Label of the failed_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Failed Job Count"
+msgstr ""
+
+#. Label of the failed_jobs (Int) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Failed Jobs"
+msgstr ""
+
+#. Label of the failed_logins (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Logins (Last 30 days)"
+msgstr ""
+
+#: frappe/model/workflow.py:362
+msgid "Failed Transactions"
+msgstr ""
+
+#: frappe/utils/synchronization.py:46
+msgid "Failed to aquire lock: {}. Lock may be held by another process."
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
+msgid "Failed to change password."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:232
+#: frappe/desk/page/setup_wizard/setup_wizard.py:42
+msgid "Failed to complete setup"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:141
+msgid "Failed to compute request body: {}"
+msgstr ""
+
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48
+msgid "Failed to connect to server"
+msgstr ""
+
+#: frappe/auth.py:701
+msgid "Failed to decode token, please provide a valid base64-encoded token."
+msgstr ""
+
+#: frappe/utils/password.py:210
+msgid "Failed to decrypt key {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:635
+msgid "Failed to delete {0} documents: {1}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
+msgid "Failed to enable scheduler: {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:105
+#: frappe/integrations/doctype/webhook/webhook.py:131
+msgid "Failed to evaluate conditions: {}"
+msgstr ""
+
+#: frappe/types/exporter.py:205
+msgid "Failed to export python type hints"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
+msgid "Failed to generate names from the series"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
+msgid "Failed to generate preview of series"
+msgstr ""
+
+#: frappe/handler.py:76
+msgid "Failed to get method for command {0} with {1}"
+msgstr ""
+
+#: frappe/api/v2.py:46
+msgid "Failed to get method {0} with {1}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
+msgid "Failed to get site info"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:63
+msgid "Failed to import virtual doctype {}, is controller file present?"
+msgstr ""
+
+#: frappe/utils/image.py:75
+msgid "Failed to optimize image: {0}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:122
+msgid "Failed to render message: {}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:140
+msgid "Failed to render subject: {}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:297
+msgid "Failed to send email with subject:"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:43
+msgid "Failed to send notification email"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.py:24
+msgid "Failed to update global settings"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
+msgid "Failed while calling API {0}"
+msgstr ""
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:459
+msgid "Failure"
+msgstr ""
+
+#. Label of the failure_rate (Percent) field in DocType 'System Health Report
+#. Failing Jobs'
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Failure Rate"
+msgstr ""
+
+#. Label of the favicon (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "FavIcon"
+msgstr ""
+
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Fax"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
+msgid "Feedback"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:29
+msgid "Female"
+msgstr ""
+
+#. Label of the fetch_from (Small Text) field in DocType 'DocField'
+#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
+#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
+msgid "Fetch From"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
+msgid "Fetch Images"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
+msgid "Fetch attached images from document"
+msgstr ""
+
+#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
+#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
+#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Fetch on Save if Empty"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
+msgid "Fetching default Global Search documents."
+msgstr ""
+
+#. Label of the field (Select) field in DocType 'Assignment Rule'
+#. Label of the field (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the field (Select) field in DocType 'Bulk Update'
+#. Label of the report_field (Select) field in DocType 'Number Card'
+#. Label of the field (Select) field in DocType 'Onboarding Step'
+#. Label of the fieldname (Select) field in DocType 'Web Form Field'
+#. Label of the fieldname (Select) field in DocType 'Web Form List Column'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/public/js/frappe/list/bulk_operations.js:327
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1887
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+msgid "Field"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:418
+msgid "Field \"route\" is mandatory for Web Views"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1527
+msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.js:17
+msgid "Field \"value\" is mandatory. Please specify value to be updated"
+msgstr ""
+
+#. Label of the description (Text) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Field Description"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1078
+msgid "Field Missing"
+msgstr ""
+
+#. Label of the field_name (Data) field in DocType 'Property Setter'
+#. Label of the field_name (Select) field in DocType 'Kanban Board'
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+msgid "Field Name"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
+msgid "Field Orientation (Left-Right)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
+msgid "Field Orientation (Top-Down)"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
+#: frappe/public/js/print_format_builder/utils.js:69
+msgid "Field Template"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/templates/form_grid/fields.html:40
+msgid "Field Type"
+msgstr ""
+
+#: frappe/desk/reportview.py:202
+msgid "Field not permitted in query"
+msgstr ""
+
+#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
+msgstr ""
+
+#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Field to Track"
+msgstr ""
+
+#: frappe/custom/doctype/property_setter/property_setter.py:51
+msgid "Field type cannot be changed for {0}"
+msgstr ""
+
+#: frappe/database/database.py:919
+msgid "Field {0} does not exist on {1}"
+msgstr ""
+
+#: frappe/desk/form/meta.py:184
+msgid "Field {0} is referring to non-existing doctype {1}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1756
+msgid "Field {0} not found."
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:547
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr ""
+
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:455
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Fieldname"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:271
+msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1077
+msgid "Fieldname called {0} must exist to enable autonaming"
+msgstr ""
+
+#: frappe/database/schema.py:131 frappe/database/schema.py:408
+msgid "Fieldname is limited to 64 characters ({0})"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:197
+msgid "Fieldname not set for Custom Field"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:107
+msgid "Fieldname which will be the DocType for this link field."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:175
+msgid "Fieldname {0} appears multiple times"
+msgstr ""
+
+#: frappe/database/schema.py:398
+msgid "Fieldname {0} cannot have special characters like {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1921
+msgid "Fieldname {0} conflicting with meta object"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:497
+#: frappe/public/js/form_builder/utils.js:302
+msgid "Fieldname {0} is restricted"
+msgstr ""
+
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:133
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Fields"
+msgstr ""
+
+#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Fields Multicheck"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:431
+msgid "Fields `file_name` or `file_url` must be set for File"
+msgstr ""
+
+#: frappe/model/db_query.py:146
+msgid "Fields must be a list or tuple when as_list is enabled"
+msgstr ""
+
+#: frappe/database/query.py:613
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
+#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Report Column'
+#. Label of the fieldtype (Select) field in DocType 'Report Filter'
+#. Label of the fieldtype (Data) field in DocType 'Form Tour Step'
+#. Label of the fieldtype (Select) field in DocType 'Web Form Field'
+#. Label of the fieldtype (Data) field in DocType 'Web Form List Column'
+#. Label of the fieldtype (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Fieldtype"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:193
+msgid "Fieldtype cannot be changed from {0} to {1}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:593
+msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
+msgstr ""
+
+#. Label of a shortcut in the Tools Workspace
+#. Name of a DocType
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "File"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:128
+msgid "File '{0}' not found"
+msgstr ""
+
+#. Label of the private_file_section (Section Break) field in DocType 'Access
+#. Log'
+#: frappe/core/doctype/access_log/access_log.json
+msgid "File Information"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:74
+msgid "File Manager"
+msgstr ""
+
+#. Label of the file_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "File Name"
+msgstr ""
+
+#. Label of the file_size (Int) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "File Size"
+msgstr ""
+
+#. Label of the section_break_ryki (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "File Storage"
+msgstr ""
+
+#. Label of the file_type (Data) field in DocType 'Access Log'
+#. Label of the file_type (Select) field in DocType 'Data Export'
+#. Label of the file_type (Data) field in DocType 'File'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/file/file.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:19
+msgid "File Type"
+msgstr ""
+
+#. Label of the file_url (Code) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "File URL"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.py:107
+msgid "File backup is ready"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:649
+msgid "File name cannot have {0}"
+msgstr ""
+
+#: frappe/utils/csvutils.py:28
+msgid "File not attached"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
+msgid "File size exceeded the maximum allowed size of {0} MB"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:198
+msgid "File too big"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:390
+msgid "File type of {0} is not allowed"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451
+msgid "File {0} does not exist"
+msgstr ""
+
+#. Label of a Link in the Tools Workspace
+#. Label of the files_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Files"
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:208
+#: frappe/desk/doctype/number_card/number_card.js:347
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:969
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
+msgid "Filter"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.html:36
+msgid "Filter By"
+msgstr ""
+
+#. Label of the filter_data (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Filter Data"
+msgstr ""
+
+#. Label of the filter_list (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Filter List"
+msgstr ""
+
+#. Label of the filter_meta (Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Filter Meta"
+msgstr ""
+
+#. Label of the filter_name (Data) field in DocType 'List Filter'
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/public/js/frappe/list/list_filter.js:33
+msgid "Filter Name"
+msgstr ""
+
+#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Filter Values"
+msgstr ""
+
+#: frappe/database/query.py:360
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:427
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
+msgid "Filter..."
+msgstr ""
+
+#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+msgid "Filtered By"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:33
+msgid "Filtered Records"
+msgstr ""
+
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
+msgid "Filtered by \"{0}\""
+msgstr ""
+
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Code) field in DocType 'Notification'
+#. Option for the 'Condition Type' (Select) field in DocType 'Notification'
+#. Label of the filters_section (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters"
+msgstr ""
+
+#. Label of the filters_config (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters Configuration"
+msgstr ""
+
+#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Filters Display"
+msgstr ""
+
+#. Label of the filters_editor (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters Editor"
+msgstr ""
+
+#. Label of the filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters JSON"
+msgstr ""
+
+#. Label of the filters_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters Section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:514
+msgid "Filters applied for {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
+msgid "Filters saved"
+msgstr ""
+
+#. Description of the 'Script' (Code) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1429
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+msgid "Find '{0}' in ..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153
+msgid "Find {0} in {1}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+msgid "Finished"
+msgstr ""
+
+#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Finished At"
+msgstr ""
+
+#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
+#. Label of the first_day_of_the_week (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "First Day of the Week"
+msgstr ""
+
+#. Label of the first_name (Data) field in DocType 'Contact'
+#. Label of the first_name (Data) field in DocType 'User'
+#. Label of a field in the edit-profile Web Form
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44
+#: frappe/core/doctype/user/user.json
+#: frappe/core/web_form/edit_profile/edit_profile.json
+#: frappe/www/complete_signup.html:15
+msgid "First Name"
+msgstr ""
+
+#. Label of the first_success_message (Data) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
+msgid "First Success Message"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:185
+msgid "First data column must be blank."
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
+msgid "First set the name and save the record."
+msgstr ""
+
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
+msgid "Fit"
+msgstr ""
+
+#. Label of the flag (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+msgid "Flag"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Float"
+msgstr ""
+
+#. Label of the float_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Float Precision"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Fold"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1451
+msgid "Fold can not be at the end of the form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1449
+msgid "Fold must come before a Section Break"
+msgstr ""
+
+#. Label of the folder (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Folder"
+msgstr ""
+
+#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/imap_folder/imap_folder.json
+msgid "Folder Name"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:100
+msgid "Folder name should not include '/' (slash)"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:497
+msgid "Folder {0} is not empty"
+msgstr ""
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Folio"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:879
+msgid "Follow"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
+msgid "Followed by"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
+msgid "Following Report Filters have missing values:"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:108
+msgid "Following fields are missing:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:139
+msgid "Following fields have invalid values:"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
+msgid "Following fields have missing values"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:126
+msgid "Following fields have missing values:"
+msgstr ""
+
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Font"
+msgstr ""
+
+#. Label of the font_properties (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Font Properties"
+msgstr ""
+
+#. Label of the font_size (Int) field in DocType 'Print Format'
+#. Label of the font_size (Float) field in DocType 'Print Settings'
+#. Label of the font_size (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Font Size"
+msgstr ""
+
+#. Label of the section_break_8 (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Fonts"
+msgstr ""
+
+#. Label of the set_footer (Section Break) field in DocType 'Email Account'
+#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
+#. Label of the footer (Text Editor) field in DocType 'About Us Settings'
+#. Option for the 'Type' (Select) field in DocType 'Web Template'
+#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer"
+msgstr ""
+
+#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer \"Powered By\""
+msgstr ""
+
+#. Label of the footer_source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Based On"
+msgstr ""
+
+#. Label of the footer (Text Editor) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Footer Content"
+msgstr ""
+
+#. Label of the footer_details_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Details"
+msgstr ""
+
+#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer HTML"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:81
+msgid "Footer HTML set from attachment {0}"
+msgstr ""
+
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Image"
+msgstr ""
+
+#. Label of the footer (Section Break) field in DocType 'Website Settings'
+#. Label of the footer_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Items"
+msgstr ""
+
+#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Logo"
+msgstr ""
+
+#. Label of the footer_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Script"
+msgstr ""
+
+#. Label of the footer_template (Link) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Template"
+msgstr ""
+
+#. Label of the footer_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Footer Template Values"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:129
+msgid "Footer might not be visible as {0} option is disabled"
+msgstr ""
+
+#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer will display correctly only in PDF"
+msgstr ""
+
+#. Label of the for_doctype (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For DocType"
+msgstr ""
+
+#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "For DocType Link / DocType Action"
+msgstr ""
+
+#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For Document"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:155
+msgid "For Document Type"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
+msgid "For Example: {} Open"
+msgstr ""
+
+#. Description of the 'Options' (Small Text) field in DocType 'DocField'
+#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "For Links, enter the DocType as range.\n"
+"For Select, enter list of Options, each on a new line."
+msgstr ""
+
+#. Label of the for_user (Link) field in DocType 'List Filter'
+#. Label of the for_user (Link) field in DocType 'Notification Log'
+#. Label of the for_user (Data) field in DocType 'Workspace'
+#: frappe/core/doctype/user_permission/user_permission_list.js:10
+#: frappe/core/doctype/user_permission/user_permission_list.js:148
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "For User"
+msgstr ""
+
+#. Label of the for_value (Dynamic Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+msgid "For Value"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:2137
+#: frappe/public/js/frappe/views/reports/report_view.js:108
+msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "For example:"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+msgid "For example: If you want to include the document ID, use {0}"
+msgstr ""
+
+#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "For example: {} Open"
+msgstr ""
+
+#. Description of the 'Client script' (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "For help see
"
+msgstr ""
+
+#: frappe/integrations/doctype/google_settings/google_settings.js:7
+msgid "For more information, {0}."
+msgstr ""
+
+#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
+msgstr ""
+
+#: frappe/core/doctype/data_export/exporter.py:197
+msgid "For updating, you can update only selective columns."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1765
+msgid "For {0} at level {1} in {2} in row {3}"
+msgstr ""
+
+#. Label of the force (Check) field in DocType 'Package Import'
+#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
+#. Provider Settings'
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+msgid "Force"
+msgstr ""
+
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'DocType'
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Force Re-route to Default View"
+msgstr ""
+
+#. Label of the force_show (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Force Show"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.js:13
+msgid "Force Stop job"
+msgstr ""
+
+#. Label of the force_user_to_reset_password (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Force User to Reset Password"
+msgstr ""
+
+#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Force Web Capture Mode for Uploads"
+msgstr ""
+
+#: frappe/www/login.html:37
+msgid "Forgot Password?"
+msgstr ""
+
+#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
+#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
+#. Label of the form_tab (Tab Break) field in DocType 'Customize Form'
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Label of the form_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/printing/page/print/print.js:96
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Form"
+msgstr ""
+
+#. Label of the form_builder (HTML) field in DocType 'DocType'
+#. Label of the form_builder (HTML) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Form Builder"
+msgstr ""
+
+#. Label of the form_dict (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Form Dict"
+msgstr ""
+
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'DocType'
+#. Label of the form_settings_section (Section Break) field in DocType 'User'
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the form_settings_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Form Settings"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Form Tour"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Form Tour Step"
+msgstr ""
+
+#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Form URL-Encoded"
+msgstr ""
+
+#. Label of the format (Data) field in DocType 'Workspace Shortcut'
+#. Label of the format (Select) field in DocType 'Auto Email Report'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
+msgid "Format"
+msgstr ""
+
+#. Label of the format_data (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Format Data"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Fortnightly"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:70
+msgid "Forward"
+msgstr ""
+
+#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Forward To Email Address"
+msgstr ""
+
+#. Label of the fraction (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Fraction"
+msgstr ""
+
+#. Label of the fraction_units (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
+msgid "Fraction Units"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53
+#: frappe/www/login.py:153
+msgid "Frappe"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Frappe Blog"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:11
+msgid "Frappe Forum"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Frappe Framework"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/theme_switcher.js:59
+msgid "Frappe Light"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:547
+msgid "Frappe Mail OAuth Error"
+msgstr ""
+
+#. Label of the frappe_mail_site (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail Site"
+msgstr ""
+
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "Frappe Support"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Frappe page builder using components"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112
+msgctxt "Image Cropper"
+msgid "Free"
+msgstr ""
+
+#. Label of the frequency (Select) field in DocType 'Auto Repeat'
+#. Label of the frequency (Select) field in DocType 'Scheduled Job Type'
+#. Label of the document_follow_frequency (Select) field in DocType 'User'
+#. Label of the frequency (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:395
+msgid "Frequency"
+msgstr ""
+
+#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
+#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
+#. Option for the 'First Day of the Week' (Select) field in DocType 'System
+#. Settings'
+#. Label of the friday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Friday"
+msgstr ""
+
+#. Label of the sender (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
+msgid "From"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:197
+msgctxt "Email Sender"
+msgid "From"
+msgstr ""
+
+#. Label of the from_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:8
+msgid "From Date"
+msgstr ""
+
+#. Label of the from_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "From Date Field"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
+msgid "From Document Type"
+msgstr ""
+
+#. Label of the sender_full_name (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "From Full Name"
+msgstr ""
+
+#. Label of the from_user (Link) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "From User"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:31
+msgid "From version"
+msgstr ""
+
+#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+msgid "Full"
+msgstr ""
+
+#. Label of the full_name (Data) field in DocType 'Contact'
+#. Label of the full_name (Data) field in DocType 'Activity Log'
+#. Label of the full_name (Data) field in DocType 'User'
+#. Label of the full_name (Data) field in DocType 'About Us Team Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:479
+#: frappe/templates/signup.html:4
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+msgid "Full Name"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:80
+#: frappe/public/js/frappe/form/templates/print_layout.html:42
+msgid "Full Page"
+msgstr ""
+
+#. Label of the full_width (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Full Width"
+msgstr ""
+
+#. Label of the function (Select) field in DocType 'Number Card'
+#. Label of the report_function (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
+msgid "Function"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
+msgid "Function Based On"
+msgstr ""
+
+#: frappe/__init__.py:466
+msgid "Function {0} is not whitelisted."
+msgstr ""
+
+#: frappe/database/query.py:1419
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:419
+msgid "Further sub-groups can only be created under records marked as 'Group'"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:291
+msgid "Fw: {0}"
+msgstr ""
+
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "GET"
+msgstr ""
+
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "GMail"
+msgstr ""
+
+#. Option for the 'License Type' (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "GNU Affero General Public License"
+msgstr ""
+
+#. Option for the 'License Type' (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
+msgid "GNU General Public License"
+msgstr ""
+
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:10
+msgid "Gantt"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:205
+msgid "Gantt View"
+msgstr ""
+
+#. Label of the gender (Link) field in DocType 'Contact'
+#. Name of a DocType
+#. Label of the gender (Data) field in DocType 'Gender'
+#. Label of the gender (Link) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/core/doctype/user/user.json
+msgid "Gender"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:32
+msgid "Genderqueer"
+msgstr ""
+
+#: frappe/www/contact.html:29
+msgid "General"
+msgstr ""
+
+#. Label of the generate_keys (Button) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Generate Keys"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:882
+msgid "Generate New Report"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
+msgid "Generate Random Password"
+msgstr ""
+
+#. Label of the generate_separate_documents_for_each_assignee (Check) field in
+#. DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Generate Separate Documents For Each Assignee"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
+#: frappe/public/js/frappe/utils/utils.js:1827
+msgid "Generate Tracking URL"
+msgstr ""
+
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geoapify"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Geolocation"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geolocation Settings"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:226
+msgid "Get Alerts for Today"
+msgstr ""
+
+#: frappe/desk/page/backups/backups.js:21
+msgid "Get Backup Encryption Key"
+msgstr ""
+
+#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "Get Contacts"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:93
+msgid "Get Fields"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Get Header and Footer wkhtmltopdf variables"
+msgstr ""
+
+#: frappe/public/js/frappe/form/multi_select_dialog.js:86
+msgid "Get Items"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.js:6
+msgid "Get OpenID Configuration"
+msgstr ""
+
+#: frappe/www/printview.html:22
+msgid "Get PDF"
+msgstr ""
+
+#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Get a preview of generated names with a series."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:305
+msgid "Get more insights with"
+msgstr ""
+
+#. Description of the 'Email Threads on Assigned Document' (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+msgid "Get notified when an email is received on any of the documents assigned to you."
+msgstr ""
+
+#. Description of the 'User Image' (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Get your globally recognized avatar from Gravatar.com"
+msgstr ""
+
+#. Label of the git_branch (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Git Branch"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "GitHub"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Github flavoured markdown syntax"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+msgid "Global Search DocType"
+msgstr ""
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24
+msgid "Global Search Document Types Reset."
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+msgid "Global Search Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:122
+msgid "Global Shortcuts"
+msgstr ""
+
+#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+msgid "Global Unsubscribe"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:843
+msgid "Go"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:241
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:321
+msgid "Go Back"
+msgstr ""
+
+#: frappe/desk/doctype/notification_settings/notification_settings.js:17
+msgid "Go to Notification Settings List"
+msgstr ""
+
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Go to Page"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
+msgid "Go to Workflow"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.js:18
+msgid "Go to Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:144
+msgid "Go to next record"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:154
+msgid "Go to previous record"
+msgstr ""
+
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53
+msgid "Go to the document"
+msgstr ""
+
+#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Go to this URL after completing the form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.js:54
+#: frappe/custom/doctype/client_script/client_script.js:12
+msgid "Go to {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:92
+#: frappe/core/doctype/doctype/doctype.js:55
+#: frappe/custom/doctype/customize_form/customize_form.js:104
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42
+#: frappe/workflow/doctype/workflow/workflow.js:44
+msgid "Go to {0} List"
+msgstr ""
+
+#: frappe/core/doctype/page/page.js:11
+msgid "Go to {0} Page"
+msgstr ""
+
+#: frappe/utils/goal.py:115 frappe/utils/goal.py:122
+msgid "Goal"
+msgstr ""
+
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Google"
+msgstr ""
+
+#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Google Analytics ID"
+msgstr ""
+
+#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Google Analytics anonymise IP"
+msgstr ""
+
+#. Label of the sb_00 (Section Break) field in DocType 'Event'
+#. Label of the google_calendar (Link) field in DocType 'Event'
+#. Name of a DocType
+#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar'
+#. Label of a Link in the Integrations Workspace
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Calendar"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
+msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:610
+msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:305
+msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
+msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
+msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:496
+msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:580
+msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}."
+msgstr ""
+
+#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Google Calendar Event ID"
+msgstr ""
+
+#. Label of the google_calendar_id (Data) field in DocType 'Event'
+#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Google Calendar ID"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
+msgid "Google Calendar has been configured."
+msgstr ""
+
+#. Label of the sb_00 (Section Break) field in DocType 'Contact'
+#. Label of the google_contacts (Link) field in DocType 'Contact'
+#. Name of a DocType
+#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts'
+#. Label of a Link in the Integrations Workspace
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Contacts"
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
+msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
+msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
+msgstr ""
+
+#. Label of the google_contacts_id (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Google Contacts Id"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
+msgid "Google Drive"
+msgstr ""
+
+#. Label of the section_break_7 (Section Break) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "Google Drive Picker"
+msgstr ""
+
+#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "Google Drive Picker Enabled"
+msgstr ""
+
+#. Label of the font (Data) field in DocType 'Print Format'
+#. Label of the google_font (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Google Font"
+msgstr ""
+
+#. Label of the google_meet_link (Small Text) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Google Meet Link"
+msgstr ""
+
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Services"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Google Settings"
+msgstr ""
+
+#: frappe/utils/csvutils.py:226
+msgid "Google Sheets URL is invalid or not publicly accessible."
+msgstr ""
+
+#: frappe/utils/csvutils.py:231
+msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again."
+msgstr ""
+
+#. Label of the grant_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Grant Type"
+msgstr ""
+
+#: frappe/public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
+msgid "Graph"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Gray"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:23
+msgid "Greater Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:25
+msgid "Greater Than Or Equal To"
+msgstr ""
+
+#. Option for the 'Color' (Select) field in DocType 'DocType State'
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Green"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:53
+msgid "Grid Empty State"
+msgstr ""
+
+#. Label of the grid_page_length (Int) field in DocType 'DocType'
+#. Label of the grid_page_length (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Grid Page Length"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:127
+msgid "Grid Shortcuts"
+msgstr ""
+
+#. Label of the group (Data) field in DocType 'DocType Action'
+#. Label of the group (Data) field in DocType 'DocType Link'
+#. Label of the group (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
+msgid "Group"
+msgstr ""
+
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:32
+msgid "Group By"
+msgstr ""
+
+#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Group By Based On"
+msgstr ""
+
+#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Group By Type"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
+msgid "Group By field is required to create a dashboard chart"
+msgstr ""
+
+#: frappe/database/query.py:752
+msgid "Group By must be a string"
+msgstr ""
+
+#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+msgid "Group Object Class"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Group your custom doctypes under modules"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
+msgid "Grouped by